Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
rbc-demo
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王衍超
rbc-demo
Commits
b002be7c
Commit
b002be7c
authored
Feb 22, 2022
by
qiaoyanqi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
查看点进去 删除后,上张下张仍为只读
parent
72a6ad19
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
pageType.js
develop/@gms/gms-plugin-billexpand/src/actions/pageType.js
+3
-2
typesBill.vue
...ms-plugin-billexpand/src/components-control/typesBill.vue
+2
-1
bill-form-runner.vue
develop/@rbc/runner-bill-form/src/views/bill-form-runner.vue
+2
-1
No files found.
develop/@gms/gms-plugin-billexpand/src/actions/pageType.js
View file @
b002be7c
...
...
@@ -56,13 +56,14 @@ export default {
}
else
if
(
action
==
"last"
)
{
GMS
.
queryObject
.
index
=
data
.
data
.
count
-
1
;
}
let
state
=
GMS
.
queryObject
.
isReadOnly
?
'readOnly'
:
''
;
if
(
window
.
osConfig
.
appOpenMode
&&
window
.
osConfig
.
appOpenMode
==
"apploader"
)
{
GMS
.
$hideContainer
.
$portalAPI
.
emit
(
"resetBillData"
,
data
.
data
.
id
);
GMS
.
$hideContainer
.
$portalAPI
.
emit
(
"resetBillData"
,
data
.
data
.
id
,
state
);
}
else
{
GMS
.
vbus
.
$emit
(
"resetBillData"
,
data
.
data
.
id
);
GMS
.
vbus
.
$emit
(
"resetBillData"
,
data
.
data
.
id
,
state
);
}
}
if
(
data
.
data
&&
data
.
data
.
message
)
{
...
...
develop/@gms/gms-plugin-billexpand/src/components-control/typesBill.vue
View file @
b002be7c
...
...
@@ -59,10 +59,11 @@ export default {
}
},
methods
:
{
changeData
(
billId
)
{
changeData
(
billId
,
state
)
{
this
.
init
=
false
;
this
.
$nextTick
(()
=>
{
this
.
billId
=
billId
;
this
.
state
=
state
;
this
.
init
=
true
;
});
},
...
...
develop/@rbc/runner-bill-form/src/views/bill-form-runner.vue
View file @
b002be7c
...
...
@@ -98,10 +98,11 @@ export default {
GMS
.
oldBillDataMap
[
this
.
curTagId
]
=
bill
.
getBuillData
()
},
100
);
},
changeData
(
billId
)
{
changeData
(
billId
,
state
)
{
this
.
init
=
false
;
this
.
$nextTick
(()
=>
{
this
.
type
=
'load'
;
this
.
state
=
state
;
this
.
init
=
true
;
this
.
billId
=
billId
;
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment