Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-gjjs
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
zhouqian
vue-gjjs
Commits
38f72f65
Commit
38f72f65
authored
Sep 28, 2022
by
taojinrui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug[#474]修改
parent
d1db3a24
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
8 deletions
+21
-8
Dbb.vue
src/views/Business/Cptati/Dbb.vue
+3
-1
Dbe.vue
src/views/Business/Cptati/Dbe.vue
+13
-5
index.vue
src/views/Business/Cptati/index.vue
+1
-0
Dbb.vue
src/views/Business/Cptato/Dbb.vue
+2
-1
Dbe.vue
src/views/Business/Cptato/Dbe.vue
+2
-1
No files found.
src/views/Business/Cptati/Dbb.vue
View file @
38f72f65
...
...
@@ -162,6 +162,7 @@
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
Utils
from
"~/utils/index"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Brtset/Event"
...
...
@@ -179,7 +180,8 @@ export default {
created
:
function
(){
this
.
executeRule
(
"bopmod.dbap.basp"
).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
this
.
copyValueFromVO
(
res
.
data
);
//this.copyValueFromVO(res.data);
Utils
.
copyValueFromVO
(
this
.
model
,
res
.
data
);
}
});
}
...
...
src/views/Business/Cptati/Dbe.vue
View file @
38f72f65
...
...
@@ -17,12 +17,18 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"操作类型"
prop=
"bopmod.dbdgrp.bas.actiontype"
>
<c-
inpu
t
<c-
selec
t
placeholder=
"请选择操作类型"
v-model=
"model.bopmod.dbdgrp.bas.actiontype"
disabled
>
</c-input>
<el-option
v-for=
"item in codes.actiontype"
:key=
"item.value"
:value=
"item.value"
:label=
"item.label"
></el-option>
</c-select>
</el-form-item>
</c-col>
...
...
@@ -81,7 +87,7 @@
</c-col>
<c-col
:span=
"3"
:offset=
"1"
style=
"text-align: right"
>
确认
<c-checkbox
v-model=
"
tem
p"
disabled
></c-checkbox>
<c-checkbox
v-model=
"
model.bopmod.dbdp.basp
p"
disabled
></c-checkbox>
</c-col>
</el-form-item>
</c-col>
...
...
@@ -132,7 +138,7 @@
<c-col
:span=
"5"
class=
"m-cur-select"
>
<c-select
style=
"width: 100%"
placeholder=
"请选择金额币种"
disabled
>
<el-option
v-for=
"item in
data
"
v-for=
"item in
codes.curtxt1
"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
...
...
@@ -648,6 +654,7 @@
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
Utils
from
"~/utils/index"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Brtset/Event"
...
...
@@ -665,7 +672,8 @@ export default {
created
:
function
(){
this
.
executeRule
(
"bopmod.dbdp.basp"
).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
this
.
copyValueFromVO
(
res
.
data
);
//this.copyValueFromVO(res.data);
Utils
.
copyValueFromVO
(
this
.
model
,
res
.
data
);
}
});
}
...
...
src/views/Business/Cptati/index.vue
View file @
38f72f65
...
...
@@ -122,6 +122,7 @@
</
template
>
<
script
>
import
Api
from
"~/service/Api"
;
import
Utils
from
"~/utils/index"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
Cptati
from
"~/model/Cptati"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
...
...
src/views/Business/Cptato/Dbb.vue
View file @
38f72f65
...
...
@@ -135,6 +135,7 @@
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
Utils
from
"~/utils/index"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Brtset/Event"
...
...
@@ -152,7 +153,7 @@ export default {
created
:
function
(){
this
.
executeRule
(
"bopmod.dbbp.basp"
).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
thi
s
.
copyValueFromVO
(
res
.
data
);
Util
s
.
copyValueFromVO
(
res
.
data
);
}
});
}
...
...
src/views/Business/Cptato/Dbe.vue
View file @
38f72f65
...
...
@@ -140,6 +140,7 @@
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
Utils
from
"~/utils/index"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Brtset/Event"
...
...
@@ -157,7 +158,7 @@ export default {
created
:
function
(){
this
.
executeRule
(
"bopmod.dbbp.basp"
).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
thi
s
.
copyValueFromVO
(
res
.
data
);
Util
s
.
copyValueFromVO
(
res
.
data
);
}
});
}
...
...
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