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
7b48bd9e
Commit
7b48bd9e
authored
Dec 24, 2021
by
吴佳
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2021.12.24 wujia 信用证查询 跳转修改
parent
f4bf7a3a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
23 deletions
+37
-23
index.js
src/model/Ditsel/index.js
+1
-0
BusNavbar.vue
src/views/Business/Infdid/BusNavbar.vue
+19
-20
Infsea.vue
src/views/Business/Infdid/Infsea.vue
+17
-3
No files found.
src/model/Ditsel/index.js
View file @
7b48bd9e
...
...
@@ -164,6 +164,7 @@ export default class Ditsel{
mattxtlab
:
""
,
// Label for MATTXT .matp.mattxtlab
},
cfgfil
:{
btnstm
:
""
,
//按钮数据
bitmap
:
""
,
// Bitmap for folder .cfgfil.bitmap
regside1
:
""
,
// Regside .cfgfil.regside1
regside2
:
""
,
// Regside .cfgfil.regside2
...
...
src/views/Business/Infdid/BusNavbar.vue
View file @
7b48bd9e
...
...
@@ -69,28 +69,27 @@ export default {
//请求按钮数据
this
.
model
.
didgrp
.
rec
.
ownref
=
this
.
ownref
console
.
log
(
"ownref:"
+
this
.
ownref
);
let
rtnmsg
=
await
this
.
executeRule
(
"didgrp.rec.ownref"
)
//didgrp_rec_ownref
let
rtnmsg
=
await
this
.
executeRule
(
"didgrp.rec.ownref"
)
;
//didgrp_rec_ownref
if
(
rtnmsg
.
respCode
=
SUCCESS
){
//重置数组
this
.
navcode
.
length
=
0
this
.
model
.
cfgfil
.
btnstm
=
rtnmsg
.
data
.
cfgfil_btnstm
.
rows
//给inr赋值,后面弹窗里面的按钮请求会用到
this
.
model
.
didgrp
.
rec
.
inr
=
rtnmsg
.
data
.
didgrp_rec_inr
const
idx
=
this
.
model
.
cfgfil
.
btnstm
.
length
let
btnStr
=
this
.
model
.
cfgfil
.
btnstm
// console.log("btnstmStr:"+btnStr);
for
(
let
i
=
0
;
i
<
idx
;
i
++
){
//重置数组
this
.
navcode
=
[]
this
.
updateModel
(
rtnmsg
.
data
)
//this.model.cfgfil.btnstm = rtnmsg.data.cfgfil_btnstm.rows
//给inr赋值,后面弹窗里面的按钮请求会用到
//this.model.didgrp.rec.inr = rtnmsg.data.didgrp_rec_inr
const
length
=
this
.
model
.
cfgfil
.
btnstm
.
rows
.
length
let
btnStr
=
this
.
model
.
cfgfil
.
btnstm
.
rows
for
(
let
i
=
0
;
i
<
length
;
i
++
){
//获取数组中每行的数据
let
arr
=
btnStr
[
i
].
split
(
"
\
t"
);
let
newList
=
{
code
:
arr
[
0
],
label
:
arr
[
1
],
isDis
:
arr
[
2
],
title
:
arr
[
3
]
}
//添加到navcode数组中
this
.
navcode
.
splice
(
i
,
0
,
newList
)
let
arr
=
btnStr
[
i
].
split
(
"
\
t"
);
let
newList
=
{
code
:
arr
[
0
],
label
:
arr
[
1
],
isDis
:
arr
[
2
],
title
:
arr
[
3
]
}
//添加到navcode数组中
this
.
navcode
.
splice
(
i
,
0
,
newList
)
}
}
...
...
src/views/Business/Infdid/Infsea.vue
View file @
7b48bd9e
...
...
@@ -316,6 +316,14 @@
>
处理
</c-button>
<c-button
style=
"margin-left: 0"
size=
"small"
type=
"primary"
@
click=
"getDitSelInfo(scope.row['Reference'])"
>
info
</c-button>
...
...
@@ -566,9 +574,15 @@ export default {
},
async
onChoose
(
code
){
//跳转交易
this
.
$router
.
history
.
push
(
"/business/"
+
code
)
this
.
initdialog
=
false
}
},
this
.
$router
.
history
.
push
(
"/business/"
+
code
)
this
.
initdialog
=
false
}
,
async
getDitSelInfo
(
code
){
//跳转交易
this
.
$router
.
history
.
push
(
"/business/"
+
code
)
this
.
initdialog
=
false
}
},
created
:
function
()
{},
};
</
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