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
52b58953
Commit
52b58953
authored
Jul 11, 2022
by
jianglong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改INFBPD及BPD业务处理交易入口
parent
369395f2
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
325 additions
and
123 deletions
+325
-123
index.js
src/model/Bptsel/index.js
+1
-0
Event.js
src/model/Infbpd/Event.js
+53
-59
BusRouter.js
src/views/Business/BusRouter.js
+11
-1
BusNavbar.vue
src/views/Business/Infbpd/BusNavbar.vue
+124
-0
Infsea.vue
src/views/Business/Infbpd/Infsea.vue
+131
-63
SideMenu.vue
src/views/Layout/SideMenu.vue
+5
-0
No files found.
src/model/Bptsel/index.js
View file @
52b58953
...
...
@@ -38,6 +38,7 @@ export default class Bptsel{
},
},
cfgfil
:{
btnstm
:
""
,
//按钮数据
bitmap
:
""
,
// Bitmap for folder .cfgfil.bitmap
regside1
:
""
,
// Regside .cfgfil.regside1
regside2
:
""
,
// Regside .cfgfil.regside2
...
...
src/model/Infbpd/Event.js
View file @
52b58953
...
...
@@ -2,123 +2,117 @@ import Api from "~/service/Api"
import
Utils
from
"~/utils"
export
default
{
async
onInfbutSearow
()
{
async
onInfbutSearow
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.searow"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
this
.
stmData
.
data
=
rtnmsg
.
data
.
infbut_dspstm
.
rows
;
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutDsp
()
{
async
onInfbutDsp
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.dsp"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutUserow
()
{
async
onInfbutUserow
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.userow"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutClr
()
{
async
onInfbutClr
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.clr"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutButprt
()
{
async
onInfbutButprt
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.butprt"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutExi
()
{
async
onInfbutExi
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.exi"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfconButshword
()
{
async
onInfconButshword
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infcon.butshword"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onFiapDet
()
{
async
onFiapDet
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"fiap.det"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfconButshw
()
{
async
onInfconButshw
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infcon.butshw"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfconButshword
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infcon.butshword"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
handleReset
()
{
},
async
handleSearch
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.searow"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
stmData
.
data
=
rtnmsg
.
data
.
infbut_dspstm
.
rows
;
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
...
...
src/views/Business/BusRouter.js
View file @
52b58953
...
...
@@ -31,6 +31,11 @@ import Letopn from "./Letopn"
import
Letame
from
"./Letame"
import
Letrsv
from
'./Letrsv'
import
Infled
from
'./Infled'
import
Bptsel
from
'./Bptsel'
import
Bptopn
from
'./Bptopn'
//import Bptset from './Bptset'
//import Bptame from './Bptame'
//import Bptcrf from './Bptcrf'
import
Bptcan
from
'./Bptcan'
import
Sptrel
from
"./Sptrel"
...
...
@@ -236,7 +241,12 @@ const BusRouter = [
{
path
:
'letrsv'
,
component
:
Letrsv
,
name
:
'Letrsv'
,
meta
:
{
title
:
'出口信用证补通知'
}
},
{
path
:
'letdrv'
,
component
:
Letdrv
,
name
:
'Letdrv'
,
meta
:
{
title
:
'出口信用证出口收单'
}
},
{
path
:
'infled'
,
component
:
Infled
,
name
:
'Infled'
,
meta
:
{
title
:
'出口信用证交易查询'
}
},
{
path
:
'Bptcan'
,
component
:
Bptcan
,
name
:
'Bptcan'
,
meta
:
{
title
:
'出口融资注销'
}
},
{
path
:
'bptsel'
,
component
:
Bptsel
,
name
:
'Bptsel'
,
meta
:
{
title
:
'出口融资入口交易'
}
},
{
path
:
'bptopn'
,
component
:
Bptopn
,
name
:
'Bptopn'
,
meta
:
{
title
:
'出口融资放款'
}
},
{
path
:
'bptcan'
,
component
:
Bptcan
,
name
:
'Bptcan'
,
meta
:
{
title
:
'出口融资注销'
}
},
{
path
:
'betacc'
,
component
:
Betacc
,
name
:
'Betacc'
,
meta
:
{
title
:
'出口信用证单据承兑'
}
},
{
path
:
'betrcl'
,
component
:
Betrcl
,
name
:
'Betrcl'
,
meta
:
{
title
:
'出口信用证单据索汇'
}
},
{
path
:
'betrcl'
,
component
:
Betrcl
,
name
:
'Betrcl'
,
meta
:
{
title
:
'出口信用证单据出口单据索汇'
}
},
...
...
src/views/Business/Infbpd/BusNavbar.vue
0 → 100644
View file @
52b58953
<
template
>
<div
class=
"busnavbar"
>
<div
class=
"busnavbar-items"
>
<c-button
style=
"margin-left:7px;"
class=
"medium_bcs"
size=
"medium"
type=
"primary"
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>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
CodeTable
from
"~/config/CodeTable"
import
Bptsel
from
"~/model/Bptsel"
import
commonProcess
from
"~/mixin/commonProcess"
export
default
{
props
:[
"ownref"
],
components
:{
},
mixins
:
[
commonProcess
],
// 里面包含了Default、Check等的公共处理
data
(){
return
{
trnName
:
'bptsel'
,
model
:
new
Bptsel
().
data
,
navcode
:[
// {code:"",label:"",isDis:"",title:""},
],
}
},
methods
:{
//各入口按钮请求
async
onNarBtnClick
(
code
,
i
){
this
.
model
.
cfgfil
.
subtrn1
=
code
let
rtnmsg
=
await
this
.
executeRule
(
"cfgfil.hotsub1"
)
console
.
log
(
"cfgfil.code:"
+
this
.
model
.
cfgfil
.
subtrn1
);
if
(
rtnmsg
.
respCode
==
SUCCESS
){
this
.
navcode
=
[]
this
.
$emit
(
"onChoose"
,
code
.
toLowerCase
());
}
else
{
this
.
$notify
.
error
({
title
:
"错误"
,
message
:
"服务请求失败!"
});
}
},
},
computed
:{
codeList
(){
//将model中的数据映射成数组
return
this
.
navcode
.
map
(
item
=>
{
let
entireItem
=
{...
item
}
this
.
navcode
=
[];
//TODO 根据数据判断当前的code,是否可以继续
// entireItem.enable = item.isDis
return
entireItem
})
}
},
watch
:{
"ownref"
:
async
function
(
n
,
o
){
if
(
!
this
.
ownref
){
console
.
log
(
"11111"
)
// onTigger()
return
;
}
}
},
mounted
(){
this
.
$nextTick
(
function
(){
this
.
$on
(
'childmethods'
,
async
function
(){
this
.
navcode
=
[]
//请求按钮数据
//this.model.bpdgrp.rec.ownref = 'KZ3500210540AA'
this
.
model
.
bpdgrp
.
rec
.
ownref
=
this
.
ownref
console
.
log
(
"ownref:"
+
this
.
ownref
);
// let rtnmsg = await this.executeRule("bpdgrp.rec.ownref");//bpdgrp_rec_ownref
let
rtnmsg0
=
await
this
.
executeRule
(
"bpdgrp.rec.ownref"
);
//cfgfil.hotreg3
if
(
rtnmsg0
.
respCode
==
SUCCESS
){
this
.
updateModel
(
rtnmsg0
.
data
)
let
rtnmsg
=
await
this
.
executeRule
(
"cfgfil.hotreg1"
);
//cfgfil.hotreg3
if
(
rtnmsg
.
respCode
==
SUCCESS
){
//重置数组
this
.
navcode
=
[]
this
.
updateModel
(
rtnmsg
.
data
)
//this.model.cfgfil.btnstm = rtnmsg.data.cfgfil_btnstm.rows
//给inr赋值,后面弹窗里面的按钮请求会用到
//this.model.bpdgrp.rec.inr = rtnmsg.data.bpdgrp_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
],
//isDis:'Y',
title
:
arr
[
3
]
}
//添加到navcode数组中
this
.
navcode
.
splice
(
i
,
0
,
newList
)
}
}
else
{
this
.
navcode
=
[]
this
.
$notify
.
error
({
title
:
"错误"
,
message
:
"服务请求失败!"
});
}
}
else
{
this
.
navcode
=
[]
this
.
$notify
.
error
({
title
:
"错误"
,
message
:
"服务请求失败!"
});
}
})
})
}
}
</
script
>
<
style
>
</
style
>
src/views/Business/Infbpd/Infsea.vue
View file @
52b58953
<
template
>
<div
class=
"eibs-tab"
>
<c-list-search
@
form-reset=
"handleReset"
@
form-search=
"handleSearch"
>
<template
v-slot=
"searchSlot"
>
<el-form
class=
"m-table-search-form"
ref=
"paramsForm"
:inline=
"true"
label-position=
"right"
label-width=
"10
0px"
label-width=
"11
0px"
size=
"small"
>
<c
-row>
<el
-row>
<c-col
:span=
"24"
>
<c-col
:span=
"8"
>
<el-form-item
...
...
@@ -55,7 +57,11 @@
</c-col>
<c-col
:span=
"8"
>
<el-form-item
label=
"Name"
prop=
"infcon.nam"
style=
"width: 100%"
>
<el-form-item
label=
"Name"
prop=
"infcon.nam"
style=
"width: 100%"
>
<c-input
v-model=
"model.infcon.nam"
maxlength=
"40"
...
...
@@ -64,30 +70,9 @@
</el-form-item>
</c-col>
</c-col>
</c
-row>
</el
-row>
<!--
</
template
>
-->
<c-col
:span=
"24"
style=
"text-align: right; height: 36.8px"
v-if=
"searchToggle"
>
<el-button
size=
"small"
@
click=
"handleReset"
>
重置
</el-button>
<el-button
type=
"primary"
icon=
"el-icon-search"
size=
"small"
@
click=
"handleSearch"
>
查询
</el-button
>
<el-button
type=
"text"
@
click=
"searchToggle = false"
>
展开
<i
class=
"el-icon-arrow-down"
></i>
</el-button>
</c-col>
<!-- 可控展示区 -->
<!-- <template slot="changeShow"> -->
<c-row
v-show=
"!searchToggle"
>
<el-row
v-show=
"searchSlot.searchToggle"
>
<c-col
:span=
"24"
>
<c-col
:span=
"8"
>
<el-form-item
...
...
@@ -149,7 +134,11 @@
</c-col>
<c-col
:span=
"8"
>
<el-form-item
label=
"Role"
prop=
"infcon.searol"
style=
"width: 100%"
>
<el-form-item
label=
"Role"
prop=
"infcon.searol"
style=
"width: 100%"
>
<c-select
v-model=
"model.infcon.searol"
style=
"width: 100%"
...
...
@@ -340,32 +329,31 @@
</el-form-item>
</c-col>
</c-col>
</c-row>
<c-col
:span=
"24"
style=
"text-align: right; height: 36.8px"
v-if=
"!searchToggle"
>
<el-button
size=
"small"
@
click=
"handleReset"
>
重置
</el-button>
<el-button
</el-row>
</el-form>
</
template
></c-list-search>
<c-col
:span=
"24"
style=
"margin-top: 10px"
>
<c-button
class=
"medium_bcs"
size=
"medium"
style=
"margin-left: 0px"
type=
"primary"
icon=
"el-icon-search"
size=
"small"
@
click=
"handleSearch"
>
查询
</el-button
@
click=
"toBptopn"
>
出口融资放款
</c-button
>
<el-button
type=
"text"
@
click=
"searchToggle = true"
>
收起
<i
class=
"el-icon-arrow-up"
></i>
</el-button>
</c-col>
<!-- <el-row> -->
<c-col
:span=
"24"
>
<c-istream-table
:list=
"stmData.data"
:columns=
"stmData.columns"
:showButtonFlg=
"true"
>
<c-istream-table
:list=
"stmData.data"
:columns=
"stmData.columns"
>
<el-table-column
fixed=
"right"
prop=
"op"
label=
"操作"
width=
"140px"
>
<
template
slot=
"header"
>
<c-col
:span=
"11"
style=
"text-align: left"
><span>
操作
</span></c-col>
<c-col
:span=
"12"
style=
"text-align: right"
><c-button
icon=
"el-icon-s-tools"
></c-button
></c-col>
</
template
>
<
template
slot-scope=
"scope"
>
<el-popover
placement=
"top-start"
...
...
@@ -387,10 +375,7 @@
@
click=
"closeTrn('popover_' + scope.row.IDX)"
/>
</div>
<c-istream-table
:list=
"trnData.data"
:columns=
"trnData.columns"
>
<c-istream-table
:list=
"trnData.data"
:columns=
"trnData.columns"
>
<el-table-column
prop=
"op"
label=
"操作"
width=
"0"
>
<template
slot-scope=
"scope"
>
<c-button
...
...
@@ -411,8 +396,22 @@
>
详情
</c-button>
<!-- <c-button
style="margin-left: 0"
size="small"
>
关闭
</c-button> -->
</el-popover>
<!-- <c-button
style="margin-left: 0"
size="small"
@click="getTrnInfo(scope.$index,scope.row)"
>
详情
</c-button> -->
<c-button
style=
"margin-left: 0"
size=
"small"
...
...
@@ -421,25 +420,47 @@
>
处理
</c-button>
<!-- <c-button
style="margin-left: 0"
size="small"
type="primary"
@click="getDitSelInfo(scope.$index, scope.row)"
>
info
</c-button> -->
</template>
</el-table-column>
</c-istream-table>
</c-col>
</el-form>
<el-dialog
:visible
.
sync=
"initdialog"
:title=
"'交易列表'"
append-to-body
>
<div
class=
"m-list-btns"
>
<m-busbtn
ref=
"childs"
:ownref=
"ownref"
@
onChoose=
"onChoose"
>
11
</m-busbtn
>
</div>
</el-dialog>
</div>
</template>
<
script
>
import
Utils
from
"~/utils/index"
;
import
Api
from
"~/service/Api"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
Event
from
"~/model/Infbpd/Event"
;
import
BusNavbar
from
"~/views/Business/Infbpd/BusNavbar"
;
export
default
{
inject
:
[
"root"
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
components
:
{
"m-busbtn"
:
BusNavbar
},
data
()
{
return
{
ownref
:
""
,
initdialog
:
false
,
dialogTableVisible
:
false
,
searchToggle
:
true
,
stmData
:
{
columns
:
[
...
...
@@ -567,18 +588,65 @@ export default {
},
methods
:
{
...
Event
,
/* handleSearch(callback) {
async
getButtons
(
ownref
)
{
this
.
initdialog
=
true
;
this
.
ownref
=
ownref
;
console
.
log
(
"ownref:"
+
ownref
);
setTimeout
(()
=>
{
this.$notify.info({
title: "提示",
message: "模拟post请求控制按钮状态",
});
// 执行子组件回调函数控制按钮状态
callback();
}, 1000);
}, */
this
.
$refs
.
childs
.
$emit
(
"childmethods"
);
},
10
);
},
async
onChoose
(
code
)
{
//跳转交易
this
.
$router
.
history
.
push
(
"/business/"
+
code
);
this
.
initdialog
=
false
;
},
async
getBpdSelInfo
(
idx
,
row
)
{
//TD中选中行触发
var
params
=
{
selDst
:
"infbut.dspstm"
,
selIds
:
[
idx
+
1
]
};
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.dspstm"
,
params
);
if
((
rtnmsg
.
respCode
=
SUCCESS
))
{
this
.
updateModel
(
rtnmsg
.
data
);
// Utils.copyValueFromVO(this.model, rtnmsg.data);
//TD中点击display时触发
params
=
{
selDst
:
"infbut.dsp"
,
selIds
:
[
idx
+
1
]
};
let
rtnmsgNew
=
await
this
.
executeRule
(
"infbut.dsp"
,
params
);
if
((
rtnmsgNew
.
respCode
=
SUCCESS
))
{
console
.
log
(
rtnmsgNew
);
this
.
updateModel
(
rtnmsgNew
.
data
);
let
rtnmsgOitset
=
await
this
.
executeDefault
(
"mtabut.coninf.oitset.oit"
);
if
((
rtnmsgOitset
.
respCode
=
SUCCESS
))
{
Utils
.
copyValueFromVO
(
this
.
model
,
rtnmsgOitset
.
data
);
}
}
}
//触发父组件中updateShowPanel 事件,修改index中showPanel ,控制 index中组件的显示和隐藏
this
.
$emit
(
"updateShowPanel"
,
true
);
},
async
getTrnInfo
(
idx
,
row
)
{
this
.
model
.
infcon
.
objinr
=
row
[
"INR"
];
this
.
model
.
bpdgrp
.
rec
.
inr
=
row
[
"INR"
];
this
.
model
.
infcon
.
chksubcon
=
"X"
;
this
.
dialogTableVisible
=
true
;
let
rtnmsg
=
await
this
.
executeDefault
(
"infcon.chksubcon"
);
if
((
rtnmsg
.
respCode
=
SUCCESS
))
{
this
.
trnData
.
data
=
rtnmsg
.
data
.
infcon_trnstm
.
rows
;
}
},
closeTrn
(
refId
)
{
this
.
$refs
[
refId
].
doClose
();
},
toBptopn
()
{
this
.
$router
.
history
.
push
(
"/business/bptopn"
);
},
},
handleReset
()
{},
created
:
function
()
{},
};
</
script
>
...
...
src/views/Layout/SideMenu.vue
View file @
52b58953
...
...
@@ -147,6 +147,11 @@ export default {
{
inifrm
:
"assetInfo"
,
ininam
:
"资产信息管理"
,
pntmiu
:
"15"
},
{
inifrm
:
"assetPub"
,
ininam
:
"资产发布信息管理"
,
pntmiu
:
"15"
},
{
inifrm
:
"fund"
,
ininam
:
"资金信息管理"
,
pntmiu
:
"15"
},
{
inifrm
:
"16"
,
ininam
:
"出口融资"
,
pntmiu
:
""
},
{
inifrm
:
"infbpd"
,
ininam
:
"出口融资查询"
,
pntmiu
:
"16"
},
],
menus
:
[],
menusHeight
:
0
,
...
...
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