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
fukai
vue-gjjs
Commits
075ac582
Commit
075ac582
authored
Oct 20, 2023
by
lixinyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Litopn附加金额联动修改
parent
cb470a5d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
4 deletions
+31
-4
check.js
src/business/litopn/model/check.js
+1
-1
Detp.vue
src/business/litopn/views/Detp.vue
+1
-1
Ovwp1.vue
src/business/litopn/views/Ovwp1.vue
+29
-2
No files found.
src/business/litopn/model/check.js
View file @
075ac582
...
...
@@ -1018,7 +1018,7 @@ export default {
{
max
:
8
,
message
:
'长度不能超过8'
},
],
'lidgrp.cbs.nom1.cur'
:
[
{
type
:
'string'
,
required
:
true
},
{
type
:
'string'
,
required
:
true
,
message
:
'必输项'
},
{
max
:
8
,
message
:
'长度不能超过8'
},
],
};
...
...
src/business/litopn/views/Detp.vue
View file @
075ac582
...
...
@@ -316,7 +316,7 @@
label=
"远期汇票最大期限(天)"
prop=
"lidgrp.rec.tenmaxday"
:rules=
"[
{ required:flag8,pattern:
[0]
, message:'必输项'},
{ required:flag8,pattern:
/^((?!^-[1-9]\d*|0$).)*$/
, message:'必输项'},
{ type: 'number', message: '请输入数字' },
{ type: 'number', max: 999, message: '不能超过999' },
{ pattern: /(^-?[1-9][0-9]{0,2}$)|0/, message: '-999至999之间' },
...
...
src/business/litopn/views/Ovwp1.vue
View file @
075ac582
...
...
@@ -286,7 +286,14 @@
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"其他适用规则"
prop=
"lidgrp.rec.apprultxt"
>
<el-form-item
label=
"其他适用规则"
prop=
"lidgrp.rec.apprultxt"
:rules=
"[
{ required:!flag, message:'必输项'},
{ max: 35, message: '长度不能超过35' },
]"
>
<c-input
v-model=
"model.lidgrp.rec.apprultxt"
maxlength=
"35"
...
...
@@ -660,7 +667,27 @@ export default {
}
}
},
"model.litp.aamp.aammod.addamtflg"
:{
immediate
:
true
,
deep
:
true
,
handler
(
val
,
oldVal
)
{
if
(
val
==
"X"
)
{
this
.
model
.
lidgrp
.
cbs
.
max2
.
cur
=
this
.
model
.
lidgrp
.
cbs
.
nom1
.
cur
;
this
.
model
.
lidgrp
.
cbs
.
opn2
.
cur
=
this
.
model
.
lidgrp
.
cbs
.
nom1
.
cur
;
}
else
{
this
.
model
.
lidgrp
.
cbs
.
max2
.
cur
=
""
;
this
.
model
.
lidgrp
.
cbs
.
opn2
.
cur
=
""
;
}
},
},
"model.lidgrp.cbs.max2.amt"
:{
immediate
:
true
,
deep
:
true
,
handler
(
val
,
oldVal
)
{
this
.
model
.
lidgrp
.
cbs
.
opn2
.
amt
=
val
;
this
.
model
.
lidgrp
.
blk
.
addamtcov
=
`
${
this
.
model
.
lidgrp
.
cbs
.
opn2
.
cur
}
${
val
}
`
},
},
},
computed
:
{
...
...
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