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
6c47583d
Commit
6c47583d
authored
Oct 20, 2023
by
lixinyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
litopn校验及兑付行修改
parent
b5df8b16
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
3 deletions
+19
-3
index.js
src/business/litopn/event/index.js
+4
-0
check.js
src/business/litopn/model/check.js
+1
-1
Detp.vue
src/business/litopn/views/Detp.vue
+14
-2
No files found.
src/business/litopn/event/index.js
View file @
6c47583d
...
...
@@ -197,6 +197,10 @@ export default {
if
(
res
.
respCode
==
SUCCESS
)
{
this
.
model
.
lidgrp
.
avb
.
pts
.
extkey
=
res
.
data
.
avbwth
.
pts
.
extkey
;
this
.
model
.
lidgrp
.
avb
.
pts
.
adrblk
=
res
.
data
.
avbwth
.
pts
.
adrblk
;
this
.
model
.
lidgrp
.
avb
.
pts
.
nam
=
res
.
data
.
avbwth
.
pts
.
nam
;
this
.
model
.
lidgrp
.
avb
.
pts
.
ptainr
=
res
.
data
.
avbwth
.
pts
.
ptainr
;
this
.
model
.
lidgrp
.
avb
.
pts
.
ptyinr
=
res
.
data
.
avbwth
.
pts
.
ptyinr
;
this
.
model
.
lidgrp
.
avb
.
pts
.
rol
=
"AVB"
;
}
},
},
...
...
src/business/litopn/model/check.js
View file @
6c47583d
...
...
@@ -442,7 +442,7 @@ export default {
{
max
:
35
,
message
:
'长度不能超过35'
},
],
'lidgrp.blk.mixdet'
:
[
{
type
:
'string'
,
required
:
false
,
message
:
'必输项'
},
{
type
:
'string'
,
message
:
'必输项'
},
{
max
:
130
,
message
:
'长度不能超过130'
},
],
'lidgrp.drw.adrelc'
:
[
...
...
src/business/litopn/views/Detp.vue
View file @
6c47583d
...
...
@@ -292,7 +292,13 @@
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"混合付款指示"
prop=
"lidgrp.blk.mixdet"
>
<el-form-item
label=
"混合付款指示"
prop=
"lidgrp.blk.mixdet"
:rules=
"[
{ max: 130, message: '长度不能超过130' },
{ required:!flag3, message:'必输项'}
]"
>
<c-input
type=
"textarea"
v-model=
"model.lidgrp.blk.mixdet"
...
...
@@ -309,12 +315,18 @@
<el-form-item
label=
"远期汇票最大期限(天)"
prop=
"lidgrp.rec.tenmaxday"
:required=
"flag8"
:rules=
"[
{ required:flag8,pattern:[0], message:'必输项'},
{ type: 'number', message: '请输入数字' },
{ type: 'number', max: 999, message: '不能超过999' },
{ pattern: /(^-?[1-9][0-9]{0,2}$)|0/, message: '-999至999之间' },
]"
>
<c-input
:disabled=
"!!(this.model.lidgrp.rec.avbby == 'P')"
v-model
.
number=
"model.lidgrp.rec.tenmaxday"
placeholder=
"请输入天数"
maxlength=
"3"
></c-input>
</el-form-item>
</c-col>
...
...
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