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
d9690ed7
Commit
d9690ed7
authored
Jun 03, 2021
by
liuxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Default&Post调整
parent
6245f58a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
59 additions
and
74 deletions
+59
-74
Check.js
src/model/Ditopn/Check.js
+0
-0
Default.js
src/model/Ditopn/Default.js
+0
-0
Default.js
src/model/Sptsel/Default.js
+11
-22
Default.js
src/model/Trnrel/Default.js
+14
-10
Event.js
src/model/Trnrel/Event.js
+16
-14
index.vue
src/views/Business/Sptsel/index.vue
+12
-16
index.vue
src/views/Business/Trnrel/index.vue
+6
-12
No files found.
src/model/Ditopn/Check.js
View file @
d9690ed7
This diff is collapsed.
Click to expand it.
src/model/Ditopn/Default.js
View file @
d9690ed7
This diff is collapsed.
Click to expand it.
src/model/Sptsel/Default.js
View file @
d9690ed7
...
...
@@ -40,34 +40,23 @@ function defaultDlmft() {
function
defaultButimg
()
{
}
async
function
defaultDflg
()
{
let
rtnmsg
=
await
Api
.
post
(
"sptsel/default/dflg"
,
Utils
.
flatObject
(
this
.
model
))
if
(
rtnmsg
.
respCode
==
"AAAAAA"
)
{
//TODO 处理数据逻辑
//this.model = Utils.copyValueFromVO(this.model, rtnmsg.data);
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
const
that
=
this
;
that
.
executeDefault
(
"dflg"
).
then
(
res
=>
{
that
.
model
.
dflg
=
res
.
data
.
dflg
;
})
}
async
function
defaultYptinf
()
{
let
rtnmsg
=
await
Api
.
post
(
"sptsel/default/yptinf"
,
Utils
.
flatObject
(
this
.
model
))
if
(
rtnmsg
.
respCode
==
"AAAAAA"
)
{
const
that
=
this
;
that
.
executeDefault
(
"yptinf"
).
then
(
res
=>
{
//TODO 处理数据逻辑
//this.model = Utils.copyValueFromVO(this.model, rtnmsg.data);
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
})
}
function
defaultUsfmodUsrExtkey
()
{
}
async
function
defaultCheckbox
()
{
let
rtnmsg
=
await
Api
.
post
(
"sptsel/default/sptstm"
,
Utils
.
flatObject
(
this
.
model
))
if
(
rtnmsg
.
respCode
==
"AAAAAA"
)
{
const
that
=
this
;
that
.
executeDefault
(
"sptstm"
).
then
(
res
=>
{
//TODO 处理数据逻辑
this
.
model
.
stmData
.
data
=
rtnmsg
.
data
.
sptstm
.
rows
;
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
that
.
$refs
.
Menu
.
stmData
.
data
=
res
.
data
.
sptstm
.
rows
;
})
}
src/model/Trnrel/Default.js
View file @
d9690ed7
...
...
@@ -56,7 +56,11 @@ function defaultTrnInfdsp() {
}
function
defaultRecpanIncben
()
{
}
function
defaultUsrcon
()
{
async
function
defaultUsrcon
()
{
const
that
=
this
;
that
.
executeDefault
(
"usrcon"
).
then
(
res
=>
{
this
.
model
.
usrcon
=
res
.
data
.
usrcon
;
})
}
function
defaultImgmodHisimg
()
{
}
...
...
@@ -73,20 +77,20 @@ function defaultImgmodNewhisimg() {
function
defaultRecpanCpltxt
()
{
}
async
function
defaultTrncorcoDflg
()
{
let
rtnmsg
=
await
Api
.
post
(
"trnrel/default/trncorco.dflg"
,
Utils
.
flatObject
(
this
.
model
))
if
(
rtnmsg
.
respCode
==
"AAAAAA"
)
{
//TODO 处理数据逻辑
this
.
model
=
Utils
.
copyValueFromVO
(
this
.
model
,
rtnmsg
.
data
);
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
const
that
=
this
;
that
.
executeDefault
(
"trncorco.dflg"
).
then
(
res
=>
{
that
.
model
.
trncorco
.
dflg
=
res
.
data
.
trncorco_dflg
;
})
}
function
defaultOrddsp
()
{
}
function
defaultRecpanUsrExtkey
()
{
}
function
defaultAtptxt
()
{
async
function
defaultAtptxt
()
{
const
that
=
this
;
that
.
executeDefault
(
"atptxt"
).
then
(
res
=>
{
that
.
model
.
atptxt
=
res
.
data
.
atptxt
;
})
}
function
defaultRecpanAckgrpRecSndref
()
{
}
...
...
src/model/Trnrel/Event.js
View file @
d9690ed7
...
...
@@ -5,28 +5,30 @@ export default {
this
.
$parent
.
$parent
.
$parent
.
$parent
.
$refs
.
modelForm
.
validate
(
async
valid
=>
{
if
(
!
valid
)
return
;
let
rtnmsg
=
await
Api
.
post
(
"trnrel/executeRule/searow"
,
Utils
.
flatObject
(
this
.
model
))
if
(
rtnmsg
.
respCode
==
"AAAAAA"
)
{
const
that
=
this
.
$parent
.
$parent
.
$parent
.
$parent
;
that
.
executeRule
(
"searow"
).
then
(
res
=>
{
//TODO 处理数据逻辑
this
.
stmData
.
data
=
rtnmsg
.
data
.
trncorco_trnstm
.
rows
;
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
that
.
$refs
.
inftrnps
.
stmData
.
data
=
res
.
data
.
trncorco_trnstm
.
rows
;
})
// let rtnmsg = await Api.post("trnrel/executeRule/searow", Utils.flatObject(this.model))
// if (rtnmsg.respCode == "AAAAAA") {
// //TODO 处理数据逻辑
// this.stmData.data = rtnmsg.data.trncorco_trnstm.rows;
// }
// else {
// this.$notify.error({ title: '错误', message: '服务请求失败!' });
// }
})
},
onSeajbh
()
{
this
.
$parent
.
$parent
.
$parent
.
$parent
.
$refs
.
modelForm
.
validate
(
async
valid
=>
{
if
(
!
valid
)
return
;
let
rtnmsg
=
await
Api
.
post
(
"trnrel/seajbh"
,
Utils
.
flatObject
(
this
.
model
))
if
(
rtnmsg
.
respCode
==
"AAAAAA"
)
{
const
that
=
this
.
$parent
.
$parent
.
$parent
.
$parent
;
that
.
executeRule
(
"seajbh"
).
then
(
res
=>
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
that
.
$refs
.
inftrnps
.
stmData
.
data
=
res
.
data
.
trncorco_trnstm
.
rows
;
})
})
},
onSeactr
()
{
...
...
src/views/Business/Sptsel/index.vue
View file @
d9690ed7
...
...
@@ -31,31 +31,27 @@ export default {
},
data
(){
return
{
model
:
new
Sptsel
().
data
,
checkRules
:
Check
,
trnName
:
"sptsel"
,
model
:
new
Sptsel
().
data
,
checkRules
:
Check
,
defaultRules
:
Default
,
pattern
:
Pattern
,
rules
:
null
,
codes
:{
rules
:
null
,
codes
:{
flt
:
CodeTable
.
flt
,
dflg
:
CodeTable
.
dflg
},
},
}
},
methods
:{...
Event
},
mounted
:
async
function
(){
console
.
log
(
"进入sptsel交易"
);
let
rtnmsg
=
await
Api
.
post
(
"sptsel/init"
,
Utils
.
flatObject
(
this
.
model
))
if
(
rtnmsg
.
respCode
==
"AAAAAA"
)
{
//TODO 处理数据逻辑
this
.
model
=
Utils
.
copyValueFromVO
(
this
.
model
,
rtnmsg
.
data
)
this
.
$refs
.
Menu
.
stmData
.
columns
=
rtnmsg
.
data
.
sptstm
.
rows
;
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
const
that
=
this
;
that
.
init
(
that
.
model
).
then
(
res
=>
{
//TODO 处理数据逻辑
that
.
model
=
Utils
.
copyValueFromVO
(
that
.
model
,
res
.
data
)
that
.
$refs
.
Menu
.
stmData
.
columns
=
res
.
data
.
sptstm
.
rows
;
})
}
}
</
script
>
...
...
src/views/Business/Trnrel/index.vue
View file @
d9690ed7
...
...
@@ -47,6 +47,7 @@ export default {
},
data
(){
return
{
trnName
:
"trnrel"
,
model
:
new
Trnrel
().
data
,
checkRules
:
Check
,
defaultRules
:
Default
,
...
...
@@ -65,19 +66,12 @@ export default {
},
mounted
:
async
function
(){
console
.
log
(
"进入trnrel交易"
);
let
rtnmsg
=
await
Api
.
post
(
"trnrel/init"
,
Utils
.
flatObject
(
this
.
model
))
if
(
rtnmsg
.
respCode
==
"AAAAAA"
)
{
const
that
=
this
;
that
.
init
(
that
.
model
).
then
(
res
=>
{
//TODO 处理数据逻辑
Utils
.
copyValueFromVO
(
this
.
model
,
rtnmsg
.
data
);
this
.
$refs
.
inftrnps
.
stmData
.
columns
=
rtnmsg
.
data
.
trncorco_trnstm
.
rows
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
that
.
model
=
Utils
.
copyValueFromVO
(
that
.
model
,
res
.
data
)
that
.
$refs
.
inftrnps
.
stmData
.
columns
=
res
.
data
.
trncorco_trnstm
.
rows
})
}
}
</
script
>
...
...
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