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
5c527616
Commit
5c527616
authored
Sep 27, 2021
by
liushikai
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
d34b4c26
6472ef2a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
39 additions
and
10 deletions
+39
-10
IStreamTable.vue
src/components/IStreamTable.vue
+1
-1
commonDeclare.js
src/mixin/commonDeclare.js
+2
-2
commonProcess.js
src/mixin/commonProcess.js
+10
-3
Check.js
src/model/Cptopn/Check.js
+0
-0
Default.js
src/model/Cptopn/Default.js
+0
-0
index.js
src/model/Cptopn/index.js
+10
-2
index.js
src/utils/index.js
+15
-1
Setpan.vue
src/views/Business/Cptopn/Setpan.vue
+1
-1
index.vue
src/views/Business/Cptopn/index.vue
+0
-0
No files found.
src/components/IStreamTable.vue
View file @
5c527616
...
...
@@ -56,7 +56,7 @@ export default {
tableColumns
()
{
const
columnArr
=
[]
const
lines
=
this
.
columns
;
const
etyReg
=
/
\"(\w
*
\s?
\w
*
)\"
/
const
etyReg
=
/
\"(\w
*
(\s?
|
\/?)
\w
*
)\"
/
const
obj
=
{}
for
(
let
i
=
0
;
i
<
lines
.
length
;
i
++
)
{
const
line
=
lines
[
i
];
...
...
src/mixin/commonDeclare.js
View file @
5c527616
...
...
@@ -8,8 +8,8 @@ export default{
computed
:{
declareParams
(){
return
{
version
:
this
.
version
,
trnName
:
this
.
trnName
,
version
:
this
.
version
,
trnName
:
this
.
root
?
this
.
root
.
trnName
:
this
.
trnName
,
}
}
}
...
...
src/mixin/commonProcess.js
View file @
5c527616
...
...
@@ -46,10 +46,17 @@ export default {
}
const
triggerType
=
that
.
getTriggerType
(
key
)
if
(
that
.
checkRules
[
key
]){
for
(
let
j
=
0
;
j
<
that
.
checkRules
[
key
].
length
;
j
++
)
{
const
check
=
that
.
checkRules
[
key
][
j
];
if
(
Array
.
isArray
(
that
.
checkRules
[
key
]))
{
for
(
let
j
=
0
;
j
<
that
.
checkRules
[
key
].
length
;
j
++
)
{
const
check
=
that
.
checkRules
[
key
][
j
];
rule
.
push
({
validator
:
check
.
bind
(
that
),
trigger
:
triggerType
})
}
}
else
{
rule
.
push
({
validator
:
check
.
bind
(
that
),
validator
:
that
.
checkRules
[
key
]
.
bind
(
that
),
trigger
:
triggerType
})
}
...
...
src/model/Cptopn/Check.js
View file @
5c527616
This diff is collapsed.
Click to expand it.
src/model/Cptopn/Default.js
View file @
5c527616
This diff is collapsed.
Click to expand it.
src/model/Cptopn/index.js
View file @
5c527616
...
...
@@ -142,6 +142,7 @@ export default class Cptopn{
payeecountcode
:
""
,
// 收款人常驻国家/地区代码 .cptp.payeecountcode
uetr
:
""
,
// Uetr .cptp.uetr
},
setmod
:{
docamttyplab
:
""
,
// settled amount description as label .setmod.docamttyplab
retmsg
:
""
,
// Label showing Retry overflow condition .setmod.retmsg
...
...
@@ -152,12 +153,19 @@ export default class Cptopn{
xreflg
:
""
,
// Recalculate Rates .setmod.xreflg
setglg
:{
labdspflg
:
""
,
// Label for Type of Settlement .setmod.setglg.labdspflg
setgll
:[]
},
zmqacclab
:
""
,
// 主�'�号LABEL .setmod.zmqacclab
zmqacc
:
""
,
// 自�'�区主�'�号 .setmod.zmqacc
glemod
:{
gleshwstm
:
""
,
// Booking stream to Display .setmod.glemod.gleshwstm
setfog
:{
setfol
:[]
},
setfeg
:{
setfel
:[]
},
glemod
:{
}
},
mtabut
:{
coninf
:{
...
...
src/utils/index.js
View file @
5c527616
...
...
@@ -216,7 +216,20 @@ export default class Utils {
Utils
.
copyValueFromVO
(
this
.
model
,
data
)
callback
()
}
})
}
static
reflectCheck
(
key
){
return
async
function
(
rule
,
value
,
callback
){
//调用具体的check
const
res
=
await
this
.
exeuteCheck
(
key
)
if
(
res
.
respCode
==
SUCCESS
){
if
(
Object
.
hasOwnProperty
.
call
(
res
.
fieldErrors
,
key
))
{
callback
(
res
.
fieldErrors
[
key
])
}
else
{
callback
();
}
}
}
}
}
\ No newline at end of file
src/views/Business/Cptopn/Setpan.vue
View file @
5c527616
...
...
@@ -202,7 +202,7 @@
<el-col
:span=
"22"
style=
"margin-bottom: 18px"
:offset=
"1"
>
<c-table
style=
"text-align: center"
:list=
"
data
"
:list=
"
model.setmod.setfeg.setfel
"
:paginationShow=
"false"
:border=
"true"
>
...
...
src/views/Business/Cptopn/index.vue
View file @
5c527616
This diff is collapsed.
Click to expand it.
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