Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
isc-web-vue
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
isc-v3.1-tmp
isc-web-vue
Commits
29f44418
Commit
29f44418
authored
Oct 23, 2024
by
李少勇
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of
http://114.115.138.98:8900/isc-v3.1/isc-web-vue
into develop
parents
32d7a0f7
d5bb675c
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
421 additions
and
243 deletions
+421
-243
buildCommons.js
src/page/Funds/Fttfcm/event/buildCommons.js
+1
-1
index.js
src/page/Funds/Fttfcm/event/index.js
+21
-1
Check.js
src/page/Funds/Fttfcm/model/Check.js
+356
-229
Mt199.vue
src/page/Funds/Fttfcm/views/Mt199.vue
+1
-1
Mt299.vue
src/page/Funds/Fttfcm/views/Mt299.vue
+1
-1
Ovwp1.vue
src/page/Funds/Fttfcm/views/Ovwp1.vue
+39
-8
index.vue
src/page/Funds/Fttfcm/views/index.vue
+2
-2
No files found.
src/page/Funds/Fttfcm/event/buildCommons.js
View file @
29f44418
...
...
@@ -25,7 +25,7 @@ export default {
return
{
rec
:
{
objtyp
:
"FTD"
,
obj
typ
:
""
,
obj
inr
:
""
,
ownref
:
model
.
ftdgrp
.
rec
.
ownref
,
msgtyp
:
model
.
fttp
.
msgtyp
,
fttyp
:
model
.
ftdgrp
.
rec
.
fttyp
,
...
...
src/page/Funds/Fttfcm/event/index.js
View file @
29f44418
import
commonFunctions
from
"~/mixin/commonFunctions.js"
;
import
Api
from
"~/service/Api"
;
import
Pts
from
"~/page/Model/Common/Pts"
export
default
{
mixins
:
[
commonFunctions
],
methods
:
{
...
...
@@ -8,7 +10,7 @@ export default {
if
(
this
.
model
.
ftdgrp
.
rec
.
fttyp
==
""
)
{
this
.
$notify
.
warning
({
title
:
'提示'
,
message
:
'请先选择
平盘
类型!'
message
:
'请先选择
定存拆借
类型!'
});
return
;
}
...
...
@@ -22,6 +24,24 @@ export default {
this
.
model
.
ftdgrp
.
rec
.
ownref
=
res
.
data
;
},
async
onFttypChange
()
{
if
(
this
.
model
.
ftdgrp
.
rec
.
fttyp
==
'LI'
||
this
.
model
.
ftdgrp
.
rec
.
fttyp
==
'DI'
){
this
.
model
.
ftdgrp
.
tri
.
pts
=
new
Pts
().
data
;
}
else
if
(
this
.
model
.
ftdgrp
.
rec
.
fttyp
==
'LO'
||
this
.
model
.
ftdgrp
.
rec
.
fttyp
==
'DO'
){
this
.
model
.
fttp
.
troact
=
''
;
this
.
model
.
ftdgrp
.
tro
.
pts
=
new
Pts
().
data
;
}
else
{
this
.
model
.
fttp
.
troact
=
''
;
this
.
model
.
fttp
.
triact
=
''
;
this
.
model
.
ftdgrp
.
tro
.
pts
=
new
Pts
().
data
;
this
.
model
.
ftdgrp
.
tri
.
pts
=
new
Pts
().
data
;
this
.
model
.
ftdgrp
.
act
.
pts
=
new
Pts
().
data
;
}
},
async
onMaxcurChange
()
{
...
...
src/page/Funds/Fttfcm/model/Check.js
View file @
29f44418
export
default
{
"ftt320l1blk"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
200
,
message
:
"长度不能超过200"
}
],
"fttp.mt32m.a53act"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
34
,
message
:
"长度不能超过34"
}
],
"fttp.mt32m.b53act"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
34
,
message
:
"长度不能超过34"
}
],
"fttp.mt32m.a53p.ptsget.sdamod.dadsnd"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.a53.pts.extkey"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.a53p.ptsget.sdamod.seainf"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"fttp.mt32m.b53p.ptsget.sdamod.dadsnd"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.b53.pts.extkey"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.b53p.ptsget.sdamod.seainf"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"fttp.mt32m.a53.pts.nam"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
40
,
message
:
"长度不能超过40"
}
],
"fttp.mt32m.b53.pts.nam"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
40
,
message
:
"长度不能超过40"
}
],
"fttp.mt32m.iniact"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
34
,
message
:
"长度不能超过34"
}
],
"fttp.mt32m.b56act"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
34
,
message
:
"长度不能超过34"
}
],
"fttp.mt32m.inip.ptsget.sdamod.dadsnd"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.b56p.ptsget.sdamod.dadsnd"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.ini.pts.extkey"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.inip.ptsget.sdamod.seainf"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"fttp.mt32m.b56.pts.extkey"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.b56p.ptsget.sdamod.seainf"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"fttp.mt32m.conref"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.ini.pts.nam"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
40
,
message
:
"长度不能超过40"
}
],
"fttp.mt32m.b56.pts.nam"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
40
,
message
:
"长度不能超过40"
}
],
"fttp.mt32m.rbcact"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
34
,
message
:
"长度不能超过34"
}
],
"fttp.mt32m.owcact"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
34
,
message
:
"长度不能超过34"
}
],
"fttp.mt32m.conno"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.rbcp.ptsget.sdamod.dadsnd"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.rbc.pts.extkey"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.rbcp.ptsget.sdamod.seainf"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"fttp.mt32m.owcp.ptsget.sdamod.dadsnd"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.owc.pts.extkey"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.owcp.ptsget.sdamod.seainf"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"fttp.mt32m.rbc.pts.adrblk"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
35
,
message
:
"长度不能超过35"
}
],
"fttp.mt32m.rbc.dbfadrblkcn"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
35
,
message
:
"长度不能超过35"
}
],
"fttp.mt32m.owc.pts.adrblk"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
35
,
message
:
"长度不能超过35"
}
],
"fttp.mt32m.owc.dbfadrblkcn"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
35
,
message
:
"长度不能超过35"
}
],
"fttp.mt32m.s30x"
:[
{
type
:
"date"
,
required
:
false
,
message
:
"输入正确的日期"
}
],
"fttp.mt32m.a58act"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
34
,
message
:
"长度不能超过34"
}
],
"fttp.mt32m.b58act"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
34
,
message
:
"长度不能超过34"
}
],
"fttp.mt32m.a58p.ptsget.sdamod.dadsnd"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.a58.pts.extkey"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.a58p.ptsget.sdamod.seainf"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"fttp.mt32m.b58p.ptsget.sdamod.dadsnd"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.str300"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
35
,
message
:
"长度不能超过35"
}
],
"fttp.mt32m.b58.pts.extkey"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"fttp.mt32m.b58p.ptsget.sdamod.seainf"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"fttp.mt32m.a58.pts.adrblk"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
35
,
message
:
"长度不能超过35"
}
],
"fttp.mt32m.a58.dbfadrblkcn"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
35
,
message
:
"长度不能超过35"
}
],
"fttp.mt32m.b58.pts.adrblk"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
35
,
message
:
"长度不能超过35"
}
],
"fttp.mt32m.b58.dbfadrblkcn"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
35
,
message
:
"长度不能超过35"
}
],
"ftdgrp.rec.ownref"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"relref"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"narblk"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
35
,
message
:
"长度不能超过35"
}
],
"ftt199l1blk"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
200
,
message
:
"长度不能超过200"
}
],
"ftt299l1blk"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
200
,
message
:
"长度不能超过200"
}
],
}
\ No newline at end of file
data
()
{
return
{
rules
:
{
"ftdgrp.rec.ownref"
:
[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
,
},
{
max
:
16
,
message
:
"长度不能超过16"
,
},
],
"ftdgrp.rec.nam"
:
[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
,
},
{
max
:
40
,
message
:
"长度不能超过40"
,
},
],
"ftdgrp.rec.usr"
:
[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
,
},
{
max
:
8
,
message
:
"长度不能超过8"
,
},
],
"ftdgrp.rec.ownusr"
:
[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
,
},
{
max
:
8
,
message
:
"长度不能超过8"
,
},
],
"ftdgrp.rec.fttyp"
:
[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
,
},
],
"ftdgrp.cbs.max.cur"
:
[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
,
},
],
"ftdgrp.cbs.max.amt"
:
[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
,
},
],
"ftdgrp.rec.opndat"
:
[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
,
},
],
"ftdgrp.rec.valdat"
:
[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
,
},
],
"ftdgrp.rec.matdat"
:
[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
,
},
// {
// validator (rule, value, callback) {
// if (moment(value).diff(moment(this.model.ftdgrp.rec.valdat), 'days') > 0) {
// return callback(new Error('起息日不能大于到期日'));
// }
// callback();
// },
// }
],
"ftdgrp.rec.rat"
:
[
{
required
:
true
,
message
:
"必输项"
,
},
],
"ftdgrp.rec.cntfra"
:
[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
,
},
],
"ftdgrp.cbs.ins.amt"
:
[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
,
},
],
"ftdgrp.rec.bnktyp"
:
[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
,
},
],
// ftt320l1blk: [
// { type: "string", required: true, message: "必输项" },
// { max: 200, message: "长度不能超过200" },
// ],
// "fttp.mt32m.a53act": [
// { type: "string", required: false, message: "必输项" },
// { max: 34, message: "长度不能超过34" },
// ],
// "fttp.mt32m.b53act": [
// { type: "string", required: false, message: "必输项" },
// { max: 34, message: "长度不能超过34" },
// ],
// "fttp.mt32m.a53p.ptsget.sdamod.dadsnd": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.a53.pts.extkey": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.a53p.ptsget.sdamod.seainf": [
// { type: "string", required: false, message: "必输项" },
// { max: 3, message: "长度不能超过3" },
// ],
// "fttp.mt32m.b53p.ptsget.sdamod.dadsnd": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.b53.pts.extkey": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.b53p.ptsget.sdamod.seainf": [
// { type: "string", required: false, message: "必输项" },
// { max: 3, message: "长度不能超过3" },
// ],
// "fttp.mt32m.a53.pts.nam": [
// { type: "string", required: false, message: "必输项" },
// { max: 40, message: "长度不能超过40" },
// ],
// "fttp.mt32m.b53.pts.nam": [
// { type: "string", required: false, message: "必输项" },
// { max: 40, message: "长度不能超过40" },
// ],
// "fttp.mt32m.iniact": [
// { type: "string", required: false, message: "必输项" },
// { max: 34, message: "长度不能超过34" },
// ],
// "fttp.mt32m.b56act": [
// { type: "string", required: false, message: "必输项" },
// { max: 34, message: "长度不能超过34" },
// ],
// "fttp.mt32m.inip.ptsget.sdamod.dadsnd": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.b56p.ptsget.sdamod.dadsnd": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.ini.pts.extkey": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.inip.ptsget.sdamod.seainf": [
// { type: "string", required: false, message: "必输项" },
// { max: 3, message: "长度不能超过3" },
// ],
// "fttp.mt32m.b56.pts.extkey": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.b56p.ptsget.sdamod.seainf": [
// { type: "string", required: false, message: "必输项" },
// { max: 3, message: "长度不能超过3" },
// ],
// "fttp.mt32m.conref": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.ini.pts.nam": [
// { type: "string", required: false, message: "必输项" },
// { max: 40, message: "长度不能超过40" },
// ],
// "fttp.mt32m.b56.pts.nam": [
// { type: "string", required: false, message: "必输项" },
// { max: 40, message: "长度不能超过40" },
// ],
// "fttp.mt32m.rbcact": [
// { type: "string", required: false, message: "必输项" },
// { max: 34, message: "长度不能超过34" },
// ],
// "fttp.mt32m.owcact": [
// { type: "string", required: false, message: "必输项" },
// { max: 34, message: "长度不能超过34" },
// ],
// "fttp.mt32m.conno": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.rbcp.ptsget.sdamod.dadsnd": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.rbc.pts.extkey": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.rbcp.ptsget.sdamod.seainf": [
// { type: "string", required: false, message: "必输项" },
// { max: 3, message: "长度不能超过3" },
// ],
// "fttp.mt32m.owcp.ptsget.sdamod.dadsnd": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.owc.pts.extkey": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.owcp.ptsget.sdamod.seainf": [
// { type: "string", required: false, message: "必输项" },
// { max: 3, message: "长度不能超过3" },
// ],
// "fttp.mt32m.rbc.pts.adrblk": [
// { type: "string", required: true, message: "必输项" },
// { max: 35, message: "长度不能超过35" },
// ],
// "fttp.mt32m.rbc.dbfadrblkcn": [
// { type: "string", required: true, message: "必输项" },
// { max: 35, message: "长度不能超过35" },
// ],
// "fttp.mt32m.owc.pts.adrblk": [
// { type: "string", required: true, message: "必输项" },
// { max: 35, message: "长度不能超过35" },
// ],
// "fttp.mt32m.owc.dbfadrblkcn": [
// { type: "string", required: true, message: "必输项" },
// { max: 35, message: "长度不能超过35" },
// ],
// "fttp.mt32m.s30x": [
// { type: "date", required: false, message: "输入正确的日期" },
// ],
// "fttp.mt32m.a58act": [
// { type: "string", required: false, message: "必输项" },
// { max: 34, message: "长度不能超过34" },
// ],
// "fttp.mt32m.b58act": [
// { type: "string", required: false, message: "必输项" },
// { max: 34, message: "长度不能超过34" },
// ],
// "fttp.mt32m.a58p.ptsget.sdamod.dadsnd": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.a58.pts.extkey": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.a58p.ptsget.sdamod.seainf": [
// { type: "string", required: false, message: "必输项" },
// { max: 3, message: "长度不能超过3" },
// ],
// "fttp.mt32m.b58p.ptsget.sdamod.dadsnd": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.str300": [
// { type: "string", required: true, message: "必输项" },
// { max: 35, message: "长度不能超过35" },
// ],
// "fttp.mt32m.b58.pts.extkey": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// "fttp.mt32m.b58p.ptsget.sdamod.seainf": [
// { type: "string", required: false, message: "必输项" },
// { max: 3, message: "长度不能超过3" },
// ],
// "fttp.mt32m.a58.pts.adrblk": [
// { type: "string", required: true, message: "必输项" },
// { max: 35, message: "长度不能超过35" },
// ],
// "fttp.mt32m.a58.dbfadrblkcn": [
// { type: "string", required: true, message: "必输项" },
// { max: 35, message: "长度不能超过35" },
// ],
// "fttp.mt32m.b58.pts.adrblk": [
// { type: "string", required: true, message: "必输项" },
// { max: 35, message: "长度不能超过35" },
// ],
// "fttp.mt32m.b58.dbfadrblkcn": [
// { type: "string", required: true, message: "必输项" },
// { max: 35, message: "长度不能超过35" },
// ],
// "ftdgrp.rec.ownref": [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// relref: [
// { type: "string", required: false, message: "必输项" },
// { max: 16, message: "长度不能超过16" },
// ],
// narblk: [
// { type: "string", required: true, message: "必输项" },
// { max: 35, message: "长度不能超过35" },
// ],
// ftt199l1blk: [
// { type: "string", required: true, message: "必输项" },
// { max: 200, message: "长度不能超过200" },
// ],
// ftt299l1blk: [
// { type: "string", required: true, message: "必输项" },
// { max: 200, message: "长度不能超过200" },
// ],
},
};
},
};
src/page/Funds/Fttfcm/views/Mt199.vue
View file @
29f44418
...
...
@@ -9,7 +9,7 @@
<c-col
:span=
"24"
>
<c-form-item
label=
"Related Reference"
prop=
"relref"
>
<c-input
disabled
v-model=
"model.relref"
maxlength=
"16"
placeholder=
""
></c-input>
<c-input
v-model=
"model.relref"
maxlength=
"16"
placeholder=
""
></c-input>
</c-form-item>
</c-col>
...
...
src/page/Funds/Fttfcm/views/Mt299.vue
View file @
29f44418
...
...
@@ -9,7 +9,7 @@
<c-col
:span=
"24"
>
<c-form-item
label=
"Related Reference"
prop=
"relref"
>
<c-input
disabled
v-model=
"model.relref"
maxlength=
"16"
placeholder=
""
></c-input>
<c-input
v-model=
"model.relref"
maxlength=
"16"
placeholder=
""
></c-input>
</c-form-item>
</c-col>
...
...
src/page/Funds/Fttfcm/views/Ovwp1.vue
View file @
29f44418
...
...
@@ -48,7 +48,7 @@
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"定存拆借类型"
prop=
"ftdgrp.rec.fttyp"
>
<c-select
v-model=
"model.ftdgrp.rec.fttyp"
:code=
"codes.fttyp"
:filterKey=
"['LO','LI','DO','DI']"
style=
"width:100%"
<c-select
@
change=
"onFttypChange"
v-model=
"model.ftdgrp.rec.fttyp"
:code=
"codes.fttyp"
:filterKey=
"['LO','LI','DO','DI']"
style=
"width:100%"
placeholder=
"请输入定存拆借类型"
>
</c-select>
</el-form-item>
...
...
@@ -94,8 +94,21 @@
</c-col>
<c-col
:span=
"24"
>
<c-form-item
label=
"年利率"
prop=
"ftdgrp.rec.rat"
>
<c-input
v-model=
"model.ftdgrp.rec.rat"
placeholder=
"请输入年利率"
></c-input>
<!-- <c-input v-model="model.ftdgrp.rec.rat" placeholder="请输入年利率"></c-input> -->
<c-fullbox>
<c-input
v-model=
"model.ftdgrp.rec.rat"
placeholder=
"请输入年利率"
></c-input>
<
template
slot=
"footer"
>
<span
style=
"margin: 0 5px"
size=
"small"
type=
"primary"
>
%
</span>
</
template
>
</c-fullbox>
</c-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"计息方式"
prop=
"ftdgrp.rec.cntfra"
>
...
...
@@ -146,13 +159,17 @@
<c-col
:span=
"12"
style=
"padding-left: 20px"
>
<c-col
:span=
"24"
>
<c-form-item
label=
"业务摘要"
prop=
"ftdgrp.rec.nam"
>
<c-input
v-model=
"defaultNam950"
maxlength=
"40"
<c-input
disabled
v-model=
"defaultNam950"
maxlength=
"40"
placeholder=
"请输入名称"
></c-input>
</c-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-card
class=
"box-card"
>
<c-ptap
:model=
"model"
:requiredExtkey=
"true"
@
change=
"onTroChange"
:disabled=
"true"
:isAdrblk=
"true"
:haveAdrLabel=
"true"
<c-ptap
:model=
"model"
@
change=
"onTroChange"
:disabled=
"true"
:requiredExtkey=
"model.ftdgrp.rec.fttyp =='LI'||model.ftdgrp.rec.fttyp =='DI'"
:disabledExtkey=
"model.ftdgrp.rec.fttyp =='LO'||model.ftdgrp.rec.fttyp =='DO'|| model.ftdgrp.rec.fttyp ==''||model.ftdgrp.rec.fttyp ==undefined"
:isAdrblk=
"true"
:haveAdrLabel=
"true"
:isShowCard=
"false"
:argadr=
"{ title: '资金拆出行', grp: 'ftdgrp', rol: 'tro' }"
ptytyp=
"B"
>
</c-ptap>
</el-card
>
...
...
@@ -164,9 +181,12 @@
</el-form-item> -->
<el-form-item
label=
""
prop=
"fttp.troact"
>
<el-form-item
label=
"
Account
"
prop=
"fttp.troact"
>
<el-select
v-model=
"model.fttp.troact"
clearablex
:disabled=
"model.ftdgrp.rec.fttyp =='LO'||model.ftdgrp.rec.fttyp =='DO'|| model.ftdgrp.rec.fttyp ==''||model.ftdgrp.rec.fttyp ==undefined"
placeholder=
"请选择账号"
>
<el-option
v-for=
"item in troActlist"
:key=
"item"
:label=
"item"
...
...
@@ -180,14 +200,19 @@
<c-col
:span=
"24"
>
<el-card
class=
"box-card"
>
<c-ptap
:model=
"model"
:requiredExtkey=
"true"
@
change=
"onTriChange"
:disabled=
"true"
:isAdrblk=
"true"
:haveAdrLabel=
"true"
<c-ptap
:model=
"model"
@
change=
"onTriChange"
:disabled=
"true"
:requiredExtkey=
"model.ftdgrp.rec.fttyp =='LO'||model.ftdgrp.rec.fttyp =='DO'"
:disabledExtkey=
"model.ftdgrp.rec.fttyp =='LI'||model.ftdgrp.rec.fttyp =='DI'|| model.ftdgrp.rec.fttyp ==''||model.ftdgrp.rec.fttyp ==undefined"
:isAdrblk=
"true"
:haveAdrLabel=
"true"
:isShowCard=
"false"
:argadr=
"{ title: '资金拆入行', grp: 'ftdgrp', rol: 'tri' }"
ptytyp=
"B"
>
</c-ptap>
</el-card>
</c-col>
<c-col
:span=
"24"
>
<el-card
class=
"box-card"
>
<c-ptap
:model=
"model"
:requiredExtkey=
"true"
@
change=
"onActChange"
:disabled=
"true"
:isAdrblk=
"true"
:haveAdrLabel=
"true"
<c-ptap
:model=
"model"
@
change=
"onActChange"
:disabled=
"true"
:disabledExtkey=
"model.ftdgrp.rec.fttyp ==''||model.ftdgrp.rec.fttyp ==undefined"
:isAdrblk=
"true"
:haveAdrLabel=
"true"
:isShowCard=
"false"
:argadr=
"{ title: '资金拆出我方账户行', grp: 'ftdgrp', rol: 'act' }"
ptytyp=
"B"
>
</c-ptap>
</el-card>
...
...
@@ -199,9 +224,10 @@
</el-form-item> -->
<el-form-item
label=
""
prop=
"fttp.triact"
>
<el-form-item
label=
"
Account
"
prop=
"fttp.triact"
>
<el-select
v-model=
"model.fttp.triact"
clearablex
:disabled=
"model.ftdgrp.rec.fttyp ==''||model.ftdgrp.rec.fttyp ==undefined"
placeholder=
"请选择账号"
>
<el-option
v-for=
"item in triActlist"
:key=
"item"
:label=
"item"
...
...
@@ -228,6 +254,8 @@ export default {
mixins
:
[
Event
,
commonProcess
],
data
()
{
return
{
triActlist
:[
'1111120209999'
,
'1111120209998'
],
troActlist
:[
'2222220209999'
,
'2222220209998'
],
}
},
...
...
@@ -249,6 +277,9 @@ export default {
this
.
model
.
ftdgrp
.
rec
.
nam
=
nam
;
return
nam
},
},
methods
:
{
...
...
src/page/Funds/Fttfcm/views/index.vue
View file @
29f44418
...
...
@@ -44,7 +44,7 @@ import operationFunc from "~/mixin/operationFunc";
import
commonDepend
from
"~/mixin/commonDepend"
;
import
event
from
"../event"
;
import
Check
from
"../model/Check"
import
Check
from
"../model/Check
.js
"
// import Default from "../model/Default"
// import Pattern from "../model/Pattern"
import
Ovwp
from
"./Ovwp"
...
...
@@ -62,7 +62,7 @@ export default {
root
:
this
}
},
mixins
:
[
commonProcess
,
operationFunc
,
commonDepend
,
event
,
buildFn
],
mixins
:
[
commonProcess
,
operationFunc
,
commonDepend
,
event
,
Check
,
buildFn
],
data
()
{
return
{
tabVal
:
"ovwp"
,
...
...
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