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
b9ad97f2
Commit
b9ad97f2
authored
Jul 11, 2022
by
wangna
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gitsel
parent
2f1137e3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
164 additions
and
80 deletions
+164
-80
index.js
src/model/Gitsel/index.js
+1
-0
index.js
src/model/Infgid/index.js
+1
-0
Sel.vue
src/views/Business/Gitsel/Sel.vue
+0
-0
SelMune.vue
src/views/Business/Gitsel/SelMune.vue
+92
-0
Infsea.vue
src/views/Business/Infdid/Infsea.vue
+5
-5
BusNavbar.vue
src/views/Business/Infgid/BusNavbar.vue
+7
-15
Cbeinfp.vue
src/views/Business/Infgid/Cbeinfp.vue
+1
-13
Infsea.vue
src/views/Business/Infgid/Infsea.vue
+53
-43
Regp.vue
src/views/Business/Letsel/Regp.vue
+0
-1
SideMenu.vue
src/views/Layout/SideMenu.vue
+4
-3
No files found.
src/model/Gitsel/index.js
View file @
b9ad97f2
...
@@ -95,6 +95,7 @@ export default class Gitsel{
...
@@ -95,6 +95,7 @@ export default class Gitsel{
clsflg
:
""
,
// which contracts to show .gcdget.clsflg
clsflg
:
""
,
// which contracts to show .gcdget.clsflg
},
},
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/model/Infgid/index.js
View file @
b9ad97f2
...
@@ -75,6 +75,7 @@ export default class Infgid{
...
@@ -75,6 +75,7 @@ export default class Infgid{
},
},
gidgrp
:{
gidgrp
:{
rec
:{
rec
:{
inr
:
""
,
ownref
:
""
,
// Reference .gidgrp.rec.ownref
ownref
:
""
,
// Reference .gidgrp.rec.ownref
resflg
:
""
,
// Reserved Contract .gidgrp.rec.resflg
resflg
:
""
,
// Reserved Contract .gidgrp.rec.resflg
rejflg
:
""
,
// Direct rejection .gidgrp.rec.rejflg
rejflg
:
""
,
// Direct rejection .gidgrp.rec.rejflg
...
...
src/views/Business/Gitsel/Sel.vue
View file @
b9ad97f2
This diff is collapsed.
Click to expand it.
src/views/Business/Gitsel/SelMune.vue
0 → 100644
View file @
b9ad97f2
<
template
>
<el-table
:data=
"tableData"
border
stripe
:show-header=
"false"
:cell-style=
"cellSttyle"
>
<el-table-column
prop=
"label"
align=
"center"
>
<template
slot-scope=
"scope"
>
<c-button
@
click=
"onNarBtnClick(scope.row.url, scope.row.label)"
:label=
"scope.row.label"
:disabled=
"scope.row.disabled"
>
{{
scope
.
row
.
label
}}
</c-button
>
<!--
<el-link
:disabled=
"scope.row.disabled"
:href=
"scope.row.url"
v-if=
"scope.row.title"
>
{{
scope
.
row
.
title
}}
</el-link
>
-->
</
template
>
</el-table-column>
</el-table>
</template>
<
script
>
import
commonProcess
from
"~/mixin/commonProcess"
;
export
default
{
inject
:
[
"root"
],
props
:
[
"data"
,
"model"
],
mixins
:
[
commonProcess
],
// 里面包含了Default、Check等的公共处理
data
()
{
return
{
cellSttyle
:
{
height
:
"25px"
},
meumItem
:
[],
};
},
methods
:
{
//各入口按钮请求
async
onNarBtnClick
(
url
,
label
)
{
let
key
=
0
;
for
(
let
i
=
1
;
i
<=
11
;
i
++
){
let
temp_label
=
this
.
model
.
cfgfil
[
'subtxt'
+
i
];
if
(
temp_label
==
label
){
key
=
i
;
break
;
}
}
let
rtnmsg
=
await
this
.
executeRule
(
"cfgfil.hotsub"
+
key
);
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
updateModel
(
rtnmsg
.
data
);
url
=
url
.
toLowerCase
();
this
.
$router
.
history
.
push
(
"/business/"
+
url
);
}
else
{
this
.
$notify
.
error
({
title
:
"错误"
,
message
:
"服务请求失败!"
,
});
}
},
},
computed
:
{
tableData
()
{
const
arr
=
[];
var
data
=
this
.
data
;
for
(
let
i
=
0
;
i
<
data
.
length
;
i
++
)
{
const
items
=
data
[
i
].
split
(
"
\
t"
);
arr
.
push
({
url
:
items
[
0
],
label
:
items
[
1
],
disabled
:
items
[
2
]
==
"N"
?
true
:
false
,
other
:
items
[
3
],
});
}
return
arr
;
},
},
};
</
script
>
<
style
>
a
{
text-decoration-line
:
none
;
color
:
#606266
;
}
a
:hover
{
color
:
blue
;
}
</
style
>
\ No newline at end of file
src/views/Business/Infdid/Infsea.vue
View file @
b9ad97f2
...
@@ -639,11 +639,11 @@ export default {
...
@@ -639,11 +639,11 @@ export default {
methods
:
{
...
Event
,
methods
:
{
...
Event
,
async
getButtons
(
ownref
){
async
getButtons
(
ownref
){
this
.
initdialog
=
true
this
.
initdialog
=
true
this
.
ownref
=
ownref
//
this.ownref = ownref
console
.
log
(
"ownref:"
+
ownref
);
//
console.log("ownref:" +ownref);
setTimeout
(()
=>
{
//
setTimeout(()=>{
this
.
$refs
.
childs
.
$emit
(
"childmethods"
)
//
this.$refs.childs.$emit("childmethods")
},
10
)
//
},10)
},
},
async
onChoose
(
code
){
async
onChoose
(
code
){
//跳转交易
//跳转交易
...
...
src/views/Business/Infgid/BusNavbar.vue
View file @
b9ad97f2
<
template
>
<
template
>
<div
class=
"busnavbar"
>
<div
class=
"busnavbar"
>
<div
class=
"busnavbar-items"
>
<div
class=
"busnavbar-items"
>
<c-button
<c-button
style=
"margin-left:7px;"
size=
"medium"
type=
"primary"
class=
"medium_bcs"
v-for=
"(item,index) in codeList"
v-bind:key=
"index"
@
click
.
native=
"onNarBtnClick(item.code,index)"
:title=
"item.title"
:disabled=
"item.isDis==='N'"
>
{{
item
.
label
}}
</c-button>
style=
"margin-left:7px;"
size=
"medium"
type=
"primary"
class=
"medium_bcs"
v-for=
"(item,index) in codeList"
v-bind:key=
"index"
@
click
.
native=
"onNarBtnClick(item.code,index)"
:title=
"item.title"
:disabled=
"item.isDis==='N'"
>
{{
item
.
label
}}
</c-button>
</div>
</div>
</div>
</div>
</
template
>
</
template
>
...
@@ -83,20 +73,20 @@ export default {
...
@@ -83,20 +73,20 @@ export default {
this
.
model
.
gidgrp
.
rec
.
ownref
=
this
.
ownref
this
.
model
.
gidgrp
.
rec
.
ownref
=
this
.
ownref
console
.
log
(
"ownref:"
+
this
.
ownref
);
console
.
log
(
"ownref:"
+
this
.
ownref
);
let
rtnmsg
=
await
this
.
executeRule
(
"gidgrp.rec.ownref"
);
//
gidgrp_rec_ownref
let
rtnmsg
=
await
this
.
executeRule
(
"gidgrp.rec.ownref"
);
//gidgrp_rec_ownref
if
(
rtnmsg
.
respCode
==
SUCCESS
){
if
(
rtnmsg
.
respCode
==
SUCCESS
){
//重置数组
//重置数组
this
.
navcode
=
[]
this
.
navcode
=
[]
this
.
updateModel
(
rtnmsg
.
data
)
this
.
updateModel
(
rtnmsg
.
data
)
//this.model.cfgfil.btnstm = rtnmsg.data.cfgfil_btnstm.rows
//this.model.cfgfil.btnstm = rtnmsg.data.cfgfil_btnstm.rows
//给inr赋值,后面弹窗里面的按钮请求会用到
//给inr赋值,后面弹窗里面的按钮请求会用到
//this.model. gidgrp.rec.inr = rtnmsg.data. gidgrp_rec_inr
//this.model.gidgrp.rec.inr = rtnmsg.data.gidgrp_rec_inr
console
.
log
(
"ownref:"
+
this
.
ownref
);
const
length
=
this
.
model
.
cfgfil
.
btnstm
.
rows
.
length
const
length
=
this
.
model
.
cfgfil
.
btnstm
.
rows
.
length
let
btnStr
=
this
.
model
.
cfgfil
.
btnstm
.
rows
let
btnStr
=
this
.
model
.
cfgfil
.
btnstm
.
rows
let
j
=
0
;
let
j
=
0
;
let
m
=
0
;
let
m
=
0
;
const
buttonIndex
=
[
'国内证通知'
,
'国内证修改通知'
,
'收单'
]
// const buttonIndex = ['保证金收取','保证金注销','保证金调整','开立信用证','信用证修改','减额修改接受','修改通知行','到单']
const
buttonIndex
=
[
'信用证修改'
,
'减额修改接受'
,
'到单'
,
'修改通知行'
]
for
(
let
i
=
0
;
i
<
length
;
i
++
){
for
(
let
i
=
0
;
i
<
length
;
i
++
){
//获取数组中每行的数据
//获取数组中每行的数据
if
(
!
(
btnStr
[
i
].
indexOf
(
"保证金"
)
>=
0
)
&&
!
(
btnStr
[
i
].
indexOf
(
"开立信用证"
)
>=
0
)){
if
(
!
(
btnStr
[
i
].
indexOf
(
"保证金"
)
>=
0
)
&&
!
(
btnStr
[
i
].
indexOf
(
"开立信用证"
)
>=
0
)){
...
@@ -117,6 +107,8 @@ export default {
...
@@ -117,6 +107,8 @@ export default {
}
}
}
}
}
else
{
}
else
{
this
.
navcode
=
[]
this
.
navcode
=
[]
this
.
$notify
.
error
({
title
:
"错误"
,
message
:
"服务请求失败!"
});
this
.
$notify
.
error
({
title
:
"错误"
,
message
:
"服务请求失败!"
});
...
...
src/views/Business/Infgid/Cbeinfp.vue
View file @
b9ad97f2
<
template
>
<
template
>
<div
class=
"eibs-tab"
>
<div
class=
"eibs-tab"
>
<<<<<<<
HEAD:src
/
views
/
Business
/
Infgid
/
Cbeinfp
.
vue
<c-col
:span=
"12"
>
<el-form-item
label=
"stream of CBEs"
prop=
"infcon.cbestm"
>
<c-input
v-model=
"model.infcon.cbestm"
placeholder=
"请输入stream of CBEs"
></c-input>
</el-form-item>
</c-col>
</div>
</div>
=======
</div>
>>>>>>> 76ea812e7d5f5e9cbd030eb58098ca831ca35b43:src/views/Business/Letsel/Regp.vue
</
template
>
</
template
>
<
script
>
<
script
>
import
Api
from
"~/service/Api"
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
CodeTable
from
"~/config/CodeTable"
<<<<<<<
HEAD
:
src
/
views
/
Business
/
Infgid
/
Cbeinfp
.
vue
import
Event
from
"~/model/Infgid/Event"
=======
import
Event
from
"~/model/Letsel/Event"
import
Event
from
"~/model/Letsel/Event"
>>>>>>>
76
ea812e7d5f5e9cbd030eb58098ca831ca35b43
:
src
/
views
/
Business
/
Letsel
/
Regp
.
vue
export
default
{
export
default
{
inject
:
[
'root'
],
inject
:
[
'root'
],
...
...
src/views/Business/Infgid/Infsea.vue
View file @
b9ad97f2
...
@@ -139,7 +139,7 @@
...
@@ -139,7 +139,7 @@
>
>
<c-select
<c-select
v-model=
"model.infcon.relflg"
v-model=
"model.infcon.relflg"
style=
"width:100%"
style=
"width: 100%"
placeholder=
"请选择Release Status"
placeholder=
"请选择Release Status"
>
>
<el-option
<el-option
...
@@ -159,7 +159,7 @@
...
@@ -159,7 +159,7 @@
>
>
<c-select
<c-select
v-model=
"model.infcon.hndtyp"
v-model=
"model.infcon.hndtyp"
style=
"width:100%"
style=
"width: 100%"
placeholder=
"请选择Handling Type"
placeholder=
"请选择Handling Type"
>
>
<el-option
<el-option
...
@@ -182,7 +182,7 @@
...
@@ -182,7 +182,7 @@
>
>
<c-select
<c-select
v-model=
"model.infcon.searol"
v-model=
"model.infcon.searol"
style=
"width:100%"
style=
"width: 100%"
placeholder=
"请选择Role"
placeholder=
"请选择Role"
>
>
<el-option
<el-option
...
@@ -215,7 +215,7 @@
...
@@ -215,7 +215,7 @@
>
>
<c-select
<c-select
v-model=
"model.infcon.seasta"
v-model=
"model.infcon.seasta"
style=
"width:100%"
style=
"width: 100%"
placeholder=
"请选择Status"
placeholder=
"请选择Status"
>
>
<el-option
<el-option
...
@@ -258,7 +258,7 @@
...
@@ -258,7 +258,7 @@
>
>
<c-select
<c-select
v-model=
"model.infcon.cxmflg"
v-model=
"model.infcon.cxmflg"
style=
"width:100%"
style=
"width: 100%"
placeholder=
"请选择是否显示查询码"
placeholder=
"请选择是否显示查询码"
>
>
<el-option
<el-option
...
@@ -326,7 +326,7 @@
...
@@ -326,7 +326,7 @@
>
>
<c-select
<c-select
v-model=
"model.seahndtyp"
v-model=
"model.seahndtyp"
style=
"width:100%"
style=
"width: 100%"
placeholder=
"请选择Handling Type"
placeholder=
"请选择Handling Type"
>
>
<el-option
<el-option
...
@@ -346,7 +346,7 @@
...
@@ -346,7 +346,7 @@
>
>
<c-select
<c-select
v-model=
"model.seagtyp"
v-model=
"model.seagtyp"
style=
"width:100%"
style=
"width: 100%"
placeholder=
"请选择Undertaking Type"
placeholder=
"请选择Undertaking Type"
>
>
</c-select>
</c-select>
...
@@ -363,7 +363,7 @@
...
@@ -363,7 +363,7 @@
>
>
<c-select
<c-select
v-model=
"model.infcon.segtyp"
v-model=
"model.infcon.segtyp"
style=
"width:100%"
style=
"width: 100%"
placeholder=
"请选择特殊保函类型"
placeholder=
"请选择特殊保函类型"
>
>
</c-select>
</c-select>
...
@@ -377,7 +377,7 @@
...
@@ -377,7 +377,7 @@
>
>
<c-select
<c-select
v-model=
"model.fromflg"
v-model=
"model.fromflg"
style=
"width:100%"
style=
"width: 100%"
placeholder=
"请选择电子渠道类型"
placeholder=
"请选择电子渠道类型"
>
>
<el-option
<el-option
...
@@ -397,7 +397,7 @@
...
@@ -397,7 +397,7 @@
>
>
<c-select
<c-select
v-model=
"model.fenlishi"
v-model=
"model.fenlishi"
style=
"width:100%"
style=
"width: 100%"
placeholder=
"请选择是否分离式保函"
placeholder=
"请选择是否分离式保函"
>
>
<el-option
<el-option
...
@@ -415,23 +415,19 @@
...
@@ -415,23 +415,19 @@
<c-col
:span=
"8"
>
<c-col
:span=
"8"
>
<el-form-item
<el-form-item
label=
""
label=
""
style=
"margin-left:110px;"
style=
"margin-left: 110px"
prop=
"model.cmtflg"
prop=
"model.cmtflg"
>
>
<c-checkbox
<c-checkbox
v-model=
"model.cmtflg"
>
跨境人民币保函
</c-checkbox>
v-model=
"model.cmtflg"
>
跨境人民币保函
</c-checkbox>
</el-form-item>
</el-form-item>
</c-col>
</c-col>
<c-col
:span=
"8"
>
<c-col
:span=
"8"
>
<el-form-item
<el-form-item
label=
""
label=
""
style=
"margin-left:110px;"
style=
"margin-left: 110px"
prop=
"model.fingua"
prop=
"model.fingua"
>
>
<c-checkbox
<c-checkbox
v-model=
"model.fingua"
>
融资性对外担保
</c-checkbox>
v-model=
"model.fingua"
>
融资性对外担保
</c-checkbox>
</el-form-item>
</el-form-item>
</c-col>
</c-col>
</c-col>
</c-col>
...
@@ -446,7 +442,8 @@
...
@@ -446,7 +442,8 @@
size=
"medium"
size=
"medium"
type=
"primary"
type=
"primary"
@
click=
"toGitopn"
@
click=
"toGitopn"
>
开立进口保函
</c-button>
>
开立进口保函
</c-button
>
</c-col>
</c-col>
<c-col
:span=
"24"
style=
"text-align: right; height: 100px"
>
<c-col
:span=
"24"
style=
"text-align: right; height: 100px"
>
...
@@ -468,7 +465,14 @@
...
@@ -468,7 +465,14 @@
trigger=
"click"
trigger=
"click"
:ref=
"'popover_' + scope.row.IDX"
:ref=
"'popover_' + scope.row.IDX"
>
>
<div
style=
"text-align: right; margin-top: -30px; margin-right: 5px; font-size: 16px;"
>
<div
style=
"
text-align: right;
margin-top: -30px;
margin-right: 5px;
font-size: 16px;
"
>
<span
<span
class=
"el-icon-close"
class=
"el-icon-close"
@
click=
"closeTrn('popover_' + scope.row.IDX)"
@
click=
"closeTrn('popover_' + scope.row.IDX)"
...
@@ -481,7 +485,8 @@
...
@@ -481,7 +485,8 @@
style=
"margin-left: 0"
style=
"margin-left: 0"
size=
"small"
size=
"small"
@
click=
"display(scope.row['INR'])"
@
click=
"display(scope.row['INR'])"
>
详情
</c-button>
>
详情
</c-button
>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
</c-istream-table>
</c-istream-table>
...
@@ -490,14 +495,16 @@
...
@@ -490,14 +495,16 @@
size=
"small"
size=
"small"
@
click=
"getTrnInfo(scope.$index, scope.row)"
@
click=
"getTrnInfo(scope.$index, scope.row)"
slot=
"reference"
slot=
"reference"
>
详情
</c-button>
>
详情
</c-button
>
</el-popover>
</el-popover>
<c-button
<c-button
style=
"margin-left: 0"
style=
"margin-left: 0"
size=
"small"
size=
"small"
type=
"primary"
type=
"primary"
@
click=
"getButtons(scope.row['Reference'])"
@
click=
"getButtons(scope.row['Reference'])"
>
处理
</c-button>
>
处理
</c-button
>
</template>
</template>
</el-table-column>
</el-table-column>
</c-istream-table>
</c-istream-table>
...
@@ -505,15 +512,12 @@
...
@@ -505,15 +512,12 @@
<el-dialog
:visible
.
sync=
"initdialog"
:title=
"'交易列表'"
append-to-body
>
<el-dialog
:visible
.
sync=
"initdialog"
:title=
"'交易列表'"
append-to-body
>
<div
class=
"m-list-btns"
>
<div
class=
"m-list-btns"
>
<m-busbtn
<m-busbtn
ref=
"childs"
:ownref=
"ownref"
@
onChoose=
"onChoose"
ref=
"childs"
>
11
</m-busbtn
:ownref=
"ownref"
>
@
onChoose=
"onChoose"
>
11
</m-busbtn>
</div>
</div>
</el-dialog>
</el-dialog>
<!-- <c-col :span="12">
<!-- <c-col :span="12">
<el-form-item label="Own Reference" prop="infcon.seaownref">
<el-form-item label="Own Reference" prop="infcon.seaownref">
<c-input v-model="model.infcon.seaownref" maxlength="16" placeholder="请输入Own Reference"></c-input>
<c-input v-model="model.infcon.seaownref" maxlength="16" placeholder="请输入Own Reference"></c-input>
...
@@ -689,6 +693,7 @@
...
@@ -689,6 +693,7 @@
</div>
</div>
</template>
</template>
<
script
>
<
script
>
import
Utils
from
"~/utils/index"
;
import
Api
from
"~/service/Api"
;
import
Api
from
"~/service/Api"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
CodeTable
from
"~/config/CodeTable"
;
...
@@ -697,13 +702,13 @@ import Event from "~/model/Infgid/Event";
...
@@ -697,13 +702,13 @@ import Event from "~/model/Infgid/Event";
import
BusNavbar
from
"~/views/Business/Infgid/BusNavbar"
;
import
BusNavbar
from
"~/views/Business/Infgid/BusNavbar"
;
export
default
{
export
default
{
inject
:
[
'root'
],
inject
:
[
"root"
],
props
:[
"model"
,
"codes"
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
mixins
:
[
commonProcess
],
components
:
{
"m-busbtn"
:
BusNavbar
},
components
:
{
"m-busbtn"
:
BusNavbar
},
data
()
{
data
()
{
return
{
return
{
ownref
:
""
,
ownref
:
""
,
initdialog
:
false
,
initdialog
:
false
,
dialogTableVisible
:
false
,
dialogTableVisible
:
false
,
trnData
:
{
trnData
:
{
...
@@ -740,29 +745,28 @@ export default {
...
@@ -740,29 +745,28 @@ export default {
'19 16 "Cur" 150'
,
'19 16 "Cur" 150'
,
'20 19 "Open Amount" 150'
,
'20 19 "Open Amount" 150'
,
'21 17 "Cur" 150'
,
'21 17 "Cur" 150'
,
'22 15 "Open Amount(RMB)" 150'
'22 15 "Open Amount(RMB)" 150'
,
],
],
data
:
[],
data
:
[],
},
},
};
};
},
},
methods
:
{
methods
:
{
...
Event
,
...
Event
,
async
getButtons
(
ownref
)
{
async
getButtons
(
ownref
)
{
this
.
initdialog
=
true
;
this
.
initdialog
=
true
;
this
.
ownref
=
ownref
;
this
.
ownref
=
ownref
;
console
.
log
(
"ownref:"
+
ownref
);
console
.
log
(
"ownref:"
+
ownref
);
setTimeout
(()
=>
{
setTimeout
(()
=>
{
this
.
$refs
.
childs
.
$emit
(
"childmethods"
)
this
.
$refs
.
childs
.
$emit
(
"childmethods"
)
},
10
);
},
10
)
},
},
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
getTrnInfo
(
idx
,
row
)
{
async
getTrnInfo
(
idx
,
row
)
{
this
.
model
.
infcon
.
objinr
=
row
[
"INR"
];
this
.
model
.
infcon
.
objinr
=
row
[
"INR"
];
this
.
model
.
gidgrp
.
rec
.
inr
=
row
[
"INR"
];
this
.
model
.
gidgrp
.
rec
.
inr
=
row
[
"INR"
];
...
@@ -781,9 +785,15 @@ export default {
...
@@ -781,9 +785,15 @@ export default {
toGitopn
()
{
toGitopn
()
{
this
.
$router
.
history
.
push
(
"/business/gitopn"
);
this
.
$router
.
history
.
push
(
"/business/gitopn"
);
},
},
handleReset
:
function
()
{
this
.
model
=
{
instNo
:
""
,
instName
:
""
,
};
},
},
created
:
function
()
{},
},
}
created
:
function
()
{},
};
</
script
>
</
script
>
<
style
>
<
style
>
.el-dialog__body
{
.el-dialog__body
{
...
...
src/views/Business/Letsel/Regp.vue
View file @
b9ad97f2
...
@@ -7,7 +7,6 @@ import Api from "~/service/Api"
...
@@ -7,7 +7,6 @@ import Api from "~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Letsel/Event"
import
Event
from
"~/model/Letsel/Event"
import
Event
from
"~/model/Letsel/Event"
export
default
{
export
default
{
inject
:
[
'root'
],
inject
:
[
'root'
],
...
...
src/views/Layout/SideMenu.vue
View file @
b9ad97f2
...
@@ -135,9 +135,10 @@ export default {
...
@@ -135,9 +135,10 @@ export default {
{
inifrm
:
"examRule"
,
ininam
:
"智能审单规则配置"
,
pntmiu
:
"12"
},
{
inifrm
:
"examRule"
,
ininam
:
"智能审单规则配置"
,
pntmiu
:
"12"
},
//进口保函
//进口保函
{
inifrm
:
"13"
,
ininam
:
"进口保函"
,
pntmiu
:
""
},
{
inifrm
:
"13"
,
ininam
:
"进口保函"
,
pntmiu
:
""
},
{
inifrm
:
"gitsel"
,
ininam
:
"进口保函查询"
,
pntmiu
:
"13"
},
{
inifrm
:
"infgid"
,
ininam
:
"进口保函入口交易"
,
pntmiu
:
"13"
},
{
inifrm
:
"gitset"
,
ininam
:
"进口保函赔付"
,
pntmiu
:
"13"
},
// { inifrm: "gitsel", ininam: "进口保函查询", pntmiu: "13" },
{
inifrm
:
"gitcrq"
,
ininam
:
"进口保函索赔登记"
,
pntmiu
:
"13"
},
// { inifrm: "gitset", ininam: "进口保函赔付", pntmiu: "13" },
// { inifrm: "gitcrq", ininam: "进口保函索赔登记", pntmiu: "13" },
{
inifrm
:
"14"
,
ininam
:
"服务管理"
,
pntmiu
:
""
},
{
inifrm
:
"14"
,
ininam
:
"服务管理"
,
pntmiu
:
""
},
{
inifrm
:
"switsk"
,
ininam
:
"Switsk"
,
pntmiu
:
"14"
},
{
inifrm
:
"switsk"
,
ininam
:
"Switsk"
,
pntmiu
:
"14"
},
{
inifrm
:
"mgrtsk"
,
ininam
:
"Mgrtsk"
,
pntmiu
:
"14"
},
{
inifrm
:
"mgrtsk"
,
ininam
:
"Mgrtsk"
,
pntmiu
:
"14"
},
...
...
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