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
dbf7b35f
Commit
dbf7b35f
authored
Oct 21, 2022
by
“yanyuxin”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug修改
parent
4854c7f8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
50 additions
and
11 deletions
+50
-11
index.js
src/config/CodeTable/index.js
+7
-7
Rzkx.vue
src/views/Business/Bptopn/Rzkx.vue
+33
-2
Gidtxtp.vue
src/views/Business/Getopn/Gidtxtp.vue
+9
-1
Detpc.vue
src/views/Business/Gitopn/Detpc.vue
+1
-1
No files found.
src/config/CodeTable/index.js
View file @
dbf7b35f
...
...
@@ -5066,17 +5066,17 @@ const CodeTable = {
],
ratchgprd
:
[
{
label
:
"一周"
,
value
:
"0"
},
{
label
:
"五个月"
,
value
:
"5"
},
{
label
:
"三个月"
,
value
:
"3"
},
{
label
:
"九个月"
,
value
:
"9"
},
{
label
:
"两个月"
,
value
:
"2"
},
{
label
:
"七个月"
,
value
:
"7"
},
{
label
:
"一个月"
,
value
:
"1"
},
{
label
:
"两个月"
,
value
:
"2"
},
{
label
:
"三个月"
,
value
:
"3"
},
{
label
:
"四个月"
,
value
:
"4"
},
{
label
:
"五个月"
,
value
:
"5"
},
{
label
:
"六个月"
,
value
:
"6"
},
{
label
:
"七个月"
,
value
:
"7"
},
{
label
:
"八个月"
,
value
:
"8"
},
{
label
:
"四个月"
,
value
:
"4"
},
{
label
:
"十一个月"
,
value
:
"B"
},
{
label
:
"九个月"
,
value
:
"9"
},
{
label
:
"十个月"
,
value
:
"A"
},
{
label
:
"十一个月"
,
value
:
"B"
},
{
label
:
"一年"
,
value
:
"C"
},
],
ratchgtyp
:
[
...
...
src/views/Business/Bptopn/Rzkx.vue
View file @
dbf7b35f
...
...
@@ -17,7 +17,11 @@
<c-row>
<c-col
:span=
"12"
>
<c-checkbox
v-model=
"model.financ.rzkx1"
>
贷记贵司指定账户
</c-checkbox>
<c-checkbox
v-model=
"model.financ.rzkx1"
@
change=
"
mutualExclusion();
model.financ.rzkx1 = 'X';
"
>
贷记贵司指定账户
</c-checkbox>
</c-col>
<c-col
:span=
"12"
>
...
...
@@ -35,6 +39,10 @@
<c-row>
<c-col
:span=
"12"
>
<c-checkbox
v-model=
"model.financ.rzkx5"
@
change=
"
mutualExclusion();
model.financ.rzkx5 = 'X';
"
>
支付国内信用证项下款项
</c-checkbox
>
</c-col>
...
...
@@ -67,7 +75,11 @@
<c-row>
<c-col
:span=
"12"
>
<c-checkbox
v-model=
"model.financ.rzkx1"
>
贷记贵司指定账户
</c-checkbox>
<c-checkbox
v-model=
"model.financ.rzkx1"
@
change=
"
mutualExclusion();
model.financ.rzkx1 = 'X';
"
>
贷记贵司指定账户
</c-checkbox>
</c-col>
<c-col
:span=
"12"
>
...
...
@@ -85,6 +97,10 @@
<c-row>
<c-col
:span=
"12"
>
<c-checkbox
v-model=
"model.financ.rzkx2"
@
change=
"
mutualExclusion();
model.financ.rzkx2 = 'X';
"
>
支付进口信用证项下款项
</c-checkbox
>
</c-col>
...
...
@@ -104,6 +120,10 @@
<c-row>
<c-col
:span=
"12"
>
<c-checkbox
v-model=
"model.financ.rzkx3"
@
change=
"
mutualExclusion();
model.financ.rzkx3 = 'X';
"
>
支付进口代收项下款项
</c-checkbox
>
</c-col>
...
...
@@ -123,6 +143,10 @@
<c-row>
<c-col
:span=
"12"
>
<c-checkbox
v-model=
"model.financ.rzkx4"
@
change=
"
mutualExclusion();
model.financ.rzkx4 = 'X';
"
>
支付汇出汇款项下款项
</c-checkbox
>
</c-col>
...
...
@@ -158,6 +182,13 @@ export default {
},
methods
:
{
...
Event
,
mutualExclusion
()
{
this
.
model
.
financ
.
rzkx1
=
""
;
this
.
model
.
financ
.
rzkx2
=
""
;
this
.
model
.
financ
.
rzkx3
=
""
;
this
.
model
.
financ
.
rzkx4
=
""
;
this
.
model
.
financ
.
rzkx5
=
""
;
},
},
created
:
function
()
{},
};
...
...
src/views/Business/Getopn/Gidtxtp.vue
View file @
dbf7b35f
...
...
@@ -40,6 +40,7 @@
<c-checkbox
v-model=
"model.gitp.gidtxtmodflg"
style=
"margin: 0 0 0 10px"
@
change =
"modflgChange"
>
修改保函文本
</c-checkbox
>
</c-col>
...
...
@@ -137,7 +138,14 @@ export default {
data
()
{
return
{};
},
methods
:
{
...
Event
},
methods
:
{
...
Event
,
async
modflgChange
()
{
const
rtnmsg
=
await
this
.
executeRule
(
"gitp.gidtxtmodflg"
);
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
Utils
.
copyValueFromVO
(
this
.
model
,
rtnmsg
.
data
);
}
},
},
created
:
function
()
{},
};
</
script
>
...
...
src/views/Business/Gitopn/Detpc.vue
View file @
dbf7b35f
...
...
@@ -118,7 +118,7 @@
</c-col>
<c-col
:span=
"24"
>
<c-col
:span=
"12"
>
<el-form-item
label=
"
"
合同币种和金额"
"
prop=
"gidgrp.rec.orccurc"
>
<el-form-item
label=
"
合同币种和金额
"
prop=
"gidgrp.rec.orccurc"
>
<c-select
disabled
v-model=
"model.gidgrp.rec.orccurc"
...
...
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