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
13747b61
Commit
13747b61
authored
Apr 07, 2022
by
liuxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
getsel数据处理
parent
26fdd263
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
506 additions
and
6 deletions
+506
-6
Default.js
src/model/Getsel/Default.js
+39
-0
Pattern.js
src/model/Getsel/Pattern.js
+295
-0
index.js
src/model/Getsel/index.js
+155
-0
Sel.vue
src/views/Business/Getsel/Sel.vue
+0
-0
index.vue
src/views/Business/Getsel/index.vue
+9
-2
Gitsetp1.vue
src/views/Business/Getset/Gitsetp1.vue
+4
-4
index.vue
src/views/Business/Getset/index.vue
+4
-0
No files found.
src/model/Getsel/Default.js
View file @
13747b61
...
...
@@ -6,5 +6,44 @@ import Api from "~/service/Api";
import
Utils
from
"~/utils/index"
export
default
{
"gidgrp.rec.ownref"
:
Utils
.
defaultFunction
,
"gidgrp.rec.gartyp"
:
Utils
.
defaultFunction
,
"gidgrp.rec.hndtyp"
:
Utils
.
defaultFunction
,
"gidgrp.rec.liadat"
:
Utils
.
defaultFunction
,
"gcdgrp.rec.ownref"
:
Utils
.
defaultFunction
,
"cfgfil.subtrn1"
:
Utils
.
defaultFunction
,
"selbut.sptpenlab_descr"
:
Utils
.
defaultFunction
,
"selbut.sptpenlab"
:
Utils
.
defaultFunction
,
"gidgrp.cbs.max.cur"
:
Utils
.
defaultFunction
,
"gidgrp.cbs.max.amt"
:
Utils
.
defaultFunction
,
"gidgrp.iss.pts.nam"
:
Utils
.
defaultFunction
,
"selbut.trnpenlab"
:
Utils
.
defaultFunction
,
"selbut.trnpenlab_descr"
:
Utils
.
defaultFunction
,
"gidgrp.ben.pts.nam"
:
Utils
.
defaultFunction
,
"gidgrp.rec.expdat"
:
Utils
.
defaultFunction
,
"gidgrp.adv.pts.nam"
:
Utils
.
defaultFunction
,
"gidgrp.apl.pts.nam"
:
Utils
.
defaultFunction
,
"clsflg"
:
Utils
.
defaultFunction
,
"cfgfil.subtxt10"
:
Utils
.
defaultFunction
,
"cfgfil.subtrn10"
:
Utils
.
defaultFunction
,
"cfgfil.subtrn11"
:
Utils
.
defaultFunction
,
"cfgfil.subtxt11"
:
Utils
.
defaultFunction
,
"cfgfil.subtxt1"
:
Utils
.
defaultFunction
,
"cfgfil.subtrn9"
:
Utils
.
defaultFunction
,
"cfgfil.subtxt9"
:
Utils
.
defaultFunction
,
"cfgfil.subtrn8"
:
Utils
.
defaultFunction
,
"cfgfil.subtxt8"
:
Utils
.
defaultFunction
,
"cfgfil.subtrn7"
:
Utils
.
defaultFunction
,
"cfgfil.subtxt7"
:
Utils
.
defaultFunction
,
"cfgfil.subtrn6"
:
Utils
.
defaultFunction
,
"cfgfil.subtxt6"
:
Utils
.
defaultFunction
,
"cfgfil.subtrn5"
:
Utils
.
defaultFunction
,
"cfgfil.subtxt5"
:
Utils
.
defaultFunction
,
"cfgfil.subtrn4"
:
Utils
.
defaultFunction
,
"cfgfil.subtxt4"
:
Utils
.
defaultFunction
,
"cfgfil.subtrn3"
:
Utils
.
defaultFunction
,
"cfgfil.subtxt3"
:
Utils
.
defaultFunction
,
"cfgfil.subtrn2"
:
Utils
.
defaultFunction
,
"cfgfil.subtxt2"
:
Utils
.
defaultFunction
,
}
//你可以添加自动default处理
src/model/Getsel/Pattern.js
View file @
13747b61
export
default
{
"recget.sdamod.dadsnd"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"gidgrp.rec.ownref"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"recget.sdamod.seainf"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"gidgrp.rec.nam"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
40
,
message
:
"长度不能超过40"
}
],
"gidgrp.cbs.max.cur"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"gidgrp.cbs.max.amt"
:[
{
type
:
"number"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
18
,
message
:
"整数位不能超过14位"
},
{
pattern
:
/
(
^
\d
+$
)
|
(
^
\.\d{1,3}
$
)
|
(
^
\d
+
\.\d{1,3}
$
)
/
,
message
:
"小数位不能超过3位"
}
],
"gidgrp.apl.pts.nam"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
40
,
message
:
"长度不能超过40"
}
],
"gidgrp.cbs.opn1.cur"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"gidgrp.cbs.opn1.amt"
:[
{
type
:
"number"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
18
,
message
:
"整数位不能超过14位"
},
{
pattern
:
/
(
^
\d
+$
)
|
(
^
\.\d{1,3}
$
)
|
(
^
\d
+
\.\d{1,3}
$
)
/
,
message
:
"小数位不能超过3位"
}
],
"gidgrp.ben.pts.nam"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
40
,
message
:
"长度不能超过40"
}
],
"gidgrp.rec.expdat"
:[
{
type
:
"date"
,
required
:
false
,
message
:
"输入正确的日期"
}
],
"gidgrp.rec.liadat"
:[
{
type
:
"date"
,
required
:
false
,
message
:
"输入正确的日期"
}
],
"gcdget.sdamod.dadsnd"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"gcdgrp.rec.nam"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
40
,
message
:
"长度不能超过40"
}
],
"gcdgrp.rec.ownref"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"gcdget.sdamod.seainf"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"gidgrp.adv.pts.nam"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
40
,
message
:
"长度不能超过40"
}
],
"gcdgrp.cbs.max.cur"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"gcdgrp.cbs.max.amt"
:[
{
type
:
"number"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
18
,
message
:
"整数位不能超过14位"
},
{
pattern
:
/
(
^
\d
+$
)
|
(
^
\.\d{1,3}
$
)
|
(
^
\d
+
\.\d{1,3}
$
)
/
,
message
:
"小数位不能超过3位"
}
],
"gcdgrp.rec.docprbrol"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"gcdgrp.cbs.opn1.cur"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"gcdgrp.cbs.opn1.amt"
:[
{
type
:
"number"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
18
,
message
:
"整数位不能超过14位"
},
{
pattern
:
/
(
^
\d
+$
)
|
(
^
\.\d{1,3}
$
)
|
(
^
\d
+
\.\d{1,3}
$
)
/
,
message
:
"小数位不能超过3位"
}
],
"gcdgrp.rec.clmdat"
:[
{
type
:
"date"
,
required
:
false
,
message
:
"输入正确的日期"
}
],
"gidgrp.iss.pts.nam"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
40
,
message
:
"长度不能超过40"
}
],
"cfgfil.bitmap"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.regside1"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotreg1"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.regside5"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotreg5"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.regside9"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotreg9"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotsub1"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotsub2"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotsub3"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.regside2"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotreg2"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.regside6"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotreg6"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.regside10"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotreg10"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotsub4"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotsub5"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotsub6"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.regside3"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotreg3"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.regside7"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotreg7"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.regside11"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotreg11"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotsub7"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotsub8"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotsub9"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotreg4"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.regside4"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.regside8"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotreg8"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.regside12"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotreg12"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotsub10"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"cfgfil.hotsub11"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
}
\ No newline at end of file
src/model/Getsel/index.js
View file @
13747b61
...
...
@@ -4,6 +4,161 @@ import Pts from "../Common/Pts"
export
default
class
Getsel
{
constructor
()
{
this
.
data
=
{
selbut
:{
dsppndclm
:
""
,
// Display Pending Claims .selbut.dsppndclm
dspclsdat
:
""
,
// Label Closed .selbut.dspclsdat
dspamenbr
:
""
,
// Display No of amendments .selbut.dspamenbr
dsppndram
:
""
,
// Display Number of Req. of Amendment .selbut.dsppndram
sptpenlab
:
""
,
// Label showing pending items stored for contract .selbut.sptpenlab
trnpenlab
:
""
,
// Label showing stored uncommited transactions for contract .selbut.trnpenlab
sptpenlab_descr
:
""
,
// Description for SPTPENLAB .selbut.sptpenlab_descr
trnpenlab_descr
:
""
,
// Description for TRNPENLAB .selbut.trnpenlab_descr
},
dspgcdclsdat
:
""
,
// Display Closing Date of Claims .dspgcdclsdat
gidgrp
:{
rec
:{
ownref
:
""
,
// Reference .gidgrp.rec.ownref
nam
:
""
,
// Externally Displayed Name to Identify the Contract .gidgrp.rec.nam
gartyp
:
""
,
// Type of Undertaking .gidgrp.rec.gartyp
expdat
:
""
,
// Validity .gidgrp.rec.expdat
liadat
:
""
,
// Our Liability .gidgrp.rec.liadat
hndtyp
:
""
,
// Handling Type .gidgrp.rec.hndtyp
},
cbs
:{
max
:{
cur
:
""
,
// Guarantee Amount .gidgrp.cbs.max.cur
amt
:
""
,
// Balance .gidgrp.cbs.max.amt
},
opn1
:{
cur
:
""
,
// Open Amount .gidgrp.cbs.opn1.cur
amt
:
""
,
// Balance .gidgrp.cbs.opn1.amt
},
},
apl
:{
pts
:
new
Pts
().
data
,
},
ben
:{
pts
:
new
Pts
().
data
,
},
iss
:{
pts
:
new
Pts
().
data
,
},
adv
:{
pts
:
new
Pts
().
data
,
},
},
recget
:{
sdamod
:{
seainf
:
""
,
// .recget.sdamod.seainf
dadsnd
:
""
,
// Drag Drop Sender .recget.sdamod.dadsnd
},
},
clsflg
:
""
,
// Show closed Contract .clsflg
explab
:
""
,
// Label unlimited Validity .explab
aplmullab
:
""
,
// Label, that is set, if there are multiple applicants .aplmullab
lialab
:
""
,
// Label unlimited lLability .lialab
expfldlab
:
""
,
// Label for Field Validity .expfldlab
liafldlab
:
""
,
// Label for Field Lability .liafldlab
aamgid
:{
addamtflg
:
""
,
// Add. Amount .aamgid.addamtflg
},
gcdgrp
:{
rec
:{
ownref
:
""
,
// Claim Reference .gcdgrp.rec.ownref
nam
:
""
,
// Externally Displayed Name to Identify the Contract .gcdgrp.rec.nam
docprbrol
:
""
,
// Presented by .gcdgrp.rec.docprbrol
clmdat
:
""
,
// Date of Claim .gcdgrp.rec.clmdat
},
cbs
:{
max
:{
cur
:
""
,
// Claim Amount .gcdgrp.cbs.max.cur
amt
:
""
,
// Balance .gcdgrp.cbs.max.amt
},
opn1
:{
cur
:
""
,
// Open Amount .gcdgrp.cbs.opn1.cur
amt
:
""
,
// Balance .gcdgrp.cbs.opn1.amt
},
},
},
gcdget
:{
sdamod
:{
seainf
:
""
,
// .gcdget.sdamod.seainf
dadsnd
:
""
,
// Drag Drop Sender .gcdget.sdamod.dadsnd
},
clsflg
:
""
,
// which contracts to show .gcdget.clsflg
},
cfgfil
:{
bitmap
:
""
,
// Bitmap for folder .cfgfil.bitmap
regside1
:
""
,
// Regside .cfgfil.regside1
regside2
:
""
,
// Regside .cfgfil.regside2
regside3
:
""
,
// Regside .cfgfil.regside3
regside4
:
""
,
// Regside .cfgfil.regside4
regside5
:
""
,
// Regside .cfgfil.regside5
regside6
:
""
,
// Regside .cfgfil.regside6
regside7
:
""
,
// Regside .cfgfil.regside7
regside8
:
""
,
// Regside .cfgfil.regside8
regside9
:
""
,
// Regside .cfgfil.regside9
regside10
:
""
,
// Regside .cfgfil.regside10
regside11
:
""
,
// Regside .cfgfil.regside11
regside12
:
""
,
// Regside .cfgfil.regside12
subtxt1
:
""
,
// submenu text 1 .cfgfil.subtxt1
subtxt2
:
""
,
// submenu text 2 .cfgfil.subtxt2
subtxt3
:
""
,
// submenu text 3 .cfgfil.subtxt3
subtxt4
:
""
,
// submenu text 4 .cfgfil.subtxt4
subtxt5
:
""
,
// submenu text 5 .cfgfil.subtxt5
subtxt6
:
""
,
// submenu text 6 .cfgfil.subtxt6
subtxt7
:
""
,
// submenu text 7 .cfgfil.subtxt7
subtxt8
:
""
,
// submenu text 8 .cfgfil.subtxt8
subtxt9
:
""
,
// submenu text 9 .cfgfil.subtxt9
subtxt10
:
""
,
// submenu text 10 .cfgfil.subtxt10
subtxt11
:
""
,
// submenu text 11 .cfgfil.subtxt11
regtxt1
:
""
,
// Register text 1 .cfgfil.regtxt1
regtxt2
:
""
,
// Register text 2 .cfgfil.regtxt2
regtxt3
:
""
,
// Register text 3 .cfgfil.regtxt3
regtxt4
:
""
,
// Register text 4 .cfgfil.regtxt4
regtxt5
:
""
,
// Register text 5 .cfgfil.regtxt5
regtxt6
:
""
,
// Register text 6 .cfgfil.regtxt6
regtxt7
:
""
,
// Register text 7 .cfgfil.regtxt7
regtxt8
:
""
,
// Register text 8 .cfgfil.regtxt8
regtxt9
:
""
,
// Register text 9 .cfgfil.regtxt9
regtxt10
:
""
,
// Register text 10 .cfgfil.regtxt10
regtxt11
:
""
,
// Register text 11 .cfgfil.regtxt11
regtxt12
:
""
,
// Register text 12 .cfgfil.regtxt12
hotsub1
:
""
,
// hotspot submenu 1 .cfgfil.hotsub1
hotsub2
:
""
,
// hotspot submenu 1 .cfgfil.hotsub2
hotsub3
:
""
,
// hotspot submenu 1 .cfgfil.hotsub3
hotsub4
:
""
,
// hotspot submenu 1 .cfgfil.hotsub4
hotsub5
:
""
,
// hotspot submenu 1 .cfgfil.hotsub5
hotsub6
:
""
,
// hotspot submenu 1 .cfgfil.hotsub6
hotsub7
:
""
,
// hotspot submenu 1 .cfgfil.hotsub7
hotsub8
:
""
,
// hotspot submenu 1 .cfgfil.hotsub8
hotsub9
:
""
,
// hotspot submenu 1 .cfgfil.hotsub9
hotsub10
:
""
,
// hotspot submenu 1 .cfgfil.hotsub10
hotsub11
:
""
,
// hotspot submenu 1 .cfgfil.hotsub11
hotreg1
:
""
,
// hotspot reg1 .cfgfil.hotreg1
hotreg2
:
""
,
// hotspot reg2 .cfgfil.hotreg2
hotreg3
:
""
,
// hotspot reg3 .cfgfil.hotreg3
hotreg4
:
""
,
// hotspot reg4 .cfgfil.hotreg4
hotreg5
:
""
,
// hotspot reg5 .cfgfil.hotreg5
hotreg6
:
""
,
// hotspot reg6 .cfgfil.hotreg6
hotreg7
:
""
,
// hotspot reg7 .cfgfil.hotreg7
hotreg8
:
""
,
// hotspot reg8 .cfgfil.hotreg8
hotreg9
:
""
,
// hotspot reg9 .cfgfil.hotreg9
hotreg10
:
""
,
// hotspot reg10 .cfgfil.hotreg10
hotreg11
:
""
,
// hotspot reg11 .cfgfil.hotreg11
hotreg12
:
""
,
// hotspot reg12 .cfgfil.hotreg12
subtrn1
:
""
,
// Submenu trn 1 .cfgfil.subtrn1
subtrn2
:
""
,
// Submenu trn 2 .cfgfil.subtrn2
subtrn3
:
""
,
// Submenu trn 3 .cfgfil.subtrn3
subtrn4
:
""
,
// Submenu trn 4 .cfgfil.subtrn4
subtrn5
:
""
,
// Submenu trn 5 .cfgfil.subtrn5
subtrn6
:
""
,
// Submenu trn 6 .cfgfil.subtrn6
subtrn7
:
""
,
// Submenu trn 7 .cfgfil.subtrn7
subtrn8
:
""
,
// Submenu trn 8 .cfgfil.subtrn8
subtrn9
:
""
,
// Submenu trn 9 .cfgfil.subtrn9
subtrn10
:
""
,
// Submenu trn 10 .cfgfil.subtrn10
subtrn11
:
""
,
// Submenu trn 11 .cfgfil.subtrn11
},
pageId
:
""
// ctx的key
}
}
...
...
src/views/Business/Getsel/Sel.vue
0 → 100644
View file @
13747b61
This diff is collapsed.
Click to expand it.
src/views/Business/Getsel/index.vue
View file @
13747b61
...
...
@@ -2,7 +2,12 @@
<div
class=
"eContainer"
>
<el-form
:model=
"model"
:rules=
"rules"
ref=
"modelForm"
label-width=
"150px"
label-position=
"right"
size=
"small"
:validate-on-rule-change=
"false"
>
<c-tabs
v-model=
"tabVal"
ref=
"elment"
type=
"card"
@
tab-click=
"myTabClick"
>
</c-tabs>
<!--PD000125 -->
<el-tab-pane
label=
"PD000125"
name=
"sel"
>
<m-sel
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
</c-tabs>
</el-form>
</div>
</
template
>
...
...
@@ -14,11 +19,13 @@ import commonProcess from "~/mixin/commonProcess"
import
Check
from
"~/model/Getsel/Check"
import
Default
from
"~/model/Getsel/Default"
import
Pattern
from
"~/model/Getsel/Pattern"
import
Sel
from
"./Sel"
export
default
{
name
:
"Getsel"
,
components
:{
"m-sel"
:
Sel
,
},
provide
()
{
return
{
...
...
@@ -28,7 +35,7 @@ export default {
mixins
:
[
commonProcess
],
// 里面包含了Default、Check等的公共处理
data
(){
return
{
tabVal
:
""
,
tabVal
:
"
sel
"
,
trnName
:
"getsel"
,
model
:
new
Getsel
().
data
,
checkRules
:
Check
,
...
...
src/views/Business/Getset/Gitsetp1.vue
View file @
13747b61
...
...
@@ -17,11 +17,11 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"Guarantee"
prop=
"g
ctp.gidget.sdamod.dadsnd
"
prop=
"g
idgrp.rec.ownref
"
>
<c-fullbox>
<c-input
v-model=
"model.g
ctp.gidget.sdamod.dadsnd
"
v-model=
"model.g
idgrp.rec.ownref
"
maxlength=
"16"
placeholder=
"请输入Guarantee"
></c-input>
...
...
@@ -60,11 +60,11 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"Claim Number"
prop=
"gc
tp.recget.sdamod.dadsnd
"
prop=
"gc
dgrp.rec.ownref
"
>
<c-fullbox>
<c-input
v-model=
"model.gc
tp.recget.sdamod.dadsnd
"
v-model=
"model.gc
dgrp.rec.ownref
"
maxlength=
"16"
placeholder=
"请输入Claim Number"
></c-input>
...
...
src/views/Business/Getset/index.vue
View file @
13747b61
...
...
@@ -116,6 +116,10 @@ export default {
}
},
created
:
async
function
(){
//伪数据
this
.
model
.
gidgrp
.
rec
.
ownref
=
'AG3500220005AA'
this
.
model
.
gcdgrp
.
rec
.
ownref
=
'AG3500220005AA01'
console
.
log
(
"进入getset交易"
);
let
rtnmsg
=
await
this
.
init
({})
if
(
rtnmsg
.
respCode
==
SUCCESS
)
...
...
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