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{
...
@@ -164,6 +164,7 @@ export default class Ditsel{
mattxtlab
:
""
,
// Label for MATTXT .matp.mattxtlab
mattxtlab
:
""
,
// Label for MATTXT .matp.mattxtlab
},
},
cfgfil
:{
cfgfil
:{
btnstm
:
""
,
//按钮数据
bitmap
:
""
,
// Bitmap for folder .cfgfil.bitmap
bitmap
:
""
,
// Bitmap for folder .cfgfil.bitmap
regside1
:
""
,
// Regside .cfgfil.regside1
regside1
:
""
,
// Regside .cfgfil.regside1
regside2
:
""
,
// Regside .cfgfil.regside2
regside2
:
""
,
// Regside .cfgfil.regside2
...
...
src/views/Business/Infdid/BusNavbar.vue
View file @
7b48bd9e
...
@@ -69,28 +69,27 @@ export default {
...
@@ -69,28 +69,27 @@ export default {
//请求按钮数据
//请求按钮数据
this
.
model
.
didgrp
.
rec
.
ownref
=
this
.
ownref
this
.
model
.
didgrp
.
rec
.
ownref
=
this
.
ownref
console
.
log
(
"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
){
if
(
rtnmsg
.
respCode
=
SUCCESS
){
//重置数组
//重置数组
this
.
navcode
.
length
=
0
this
.
navcode
=
[]
this
.
model
.
cfgfil
.
btnstm
=
rtnmsg
.
data
.
cfgfil_btnstm
.
rows
this
.
updateModel
(
rtnmsg
.
data
)
//给inr赋值,后面弹窗里面的按钮请求会用到
//this.model.cfgfil.btnstm = rtnmsg.data.cfgfil_btnstm.rows
this
.
model
.
didgrp
.
rec
.
inr
=
rtnmsg
.
data
.
didgrp_rec_inr
//给inr赋值,后面弹窗里面的按钮请求会用到
const
idx
=
this
.
model
.
cfgfil
.
btnstm
.
length
//this.model.didgrp.rec.inr = rtnmsg.data.didgrp_rec_inr
let
btnStr
=
this
.
model
.
cfgfil
.
btnstm
const
length
=
this
.
model
.
cfgfil
.
btnstm
.
rows
.
length
// console.log("btnstmStr:"+btnStr);
let
btnStr
=
this
.
model
.
cfgfil
.
btnstm
.
rows
for
(
let
i
=
0
;
i
<
length
;
i
++
){
for
(
let
i
=
0
;
i
<
idx
;
i
++
){
//获取数组中每行的数据
//获取数组中每行的数据
let
arr
=
btnStr
[
i
].
split
(
"
\
t"
);
let
arr
=
btnStr
[
i
].
split
(
"
\
t"
);
let
newList
=
{
let
newList
=
{
code
:
arr
[
0
],
code
:
arr
[
0
],
label
:
arr
[
1
],
label
:
arr
[
1
],
isDis
:
arr
[
2
],
isDis
:
arr
[
2
],
title
:
arr
[
3
]
title
:
arr
[
3
]
}
}
//添加到navcode数组中
//添加到navcode数组中
this
.
navcode
.
splice
(
i
,
0
,
newList
)
this
.
navcode
.
splice
(
i
,
0
,
newList
)
}
}
}
}
...
...
src/views/Business/Infdid/Infsea.vue
View file @
7b48bd9e
...
@@ -316,6 +316,14 @@
...
@@ -316,6 +316,14 @@
>
>
处理
处理
</c-button>
</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 {
...
@@ -566,9 +574,15 @@ export default {
},
},
async
onChoose
(
code
){
async
onChoose
(
code
){
//跳转交易
//跳转交易
this
.
$router
.
history
.
push
(
"/business/"
+
code
)
this
.
$router
.
history
.
push
(
"/business/"
+
code
)
this
.
initdialog
=
false
this
.
initdialog
=
false
}
},
}
,
async
getDitSelInfo
(
code
){
//跳转交易
this
.
$router
.
history
.
push
(
"/business/"
+
code
)
this
.
initdialog
=
false
}
},
created
:
function
()
{},
created
:
function
()
{},
};
};
</
script
>
</
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