Commit b1379fdf by WH

feat:inftrd处理接口

parent 4d917732
...@@ -412,6 +412,27 @@ ...@@ -412,6 +412,27 @@
</c-col> </c-col>
</div> </div>
<!-- 点击处理弹框 -->
<el-dialog
:visible.sync="initdialog"
title="交易列表"
append-to-body
width="60%"
>
<div class="dialog-wrap">
<div class="btn-group-wrap">
<div class="btn-item" v-for="(item, index) in handlerDataList" :key="index">
<el-button
type="primary"
:disabled="item.value === 'N'"
@click="handleClick(item)"
>{{ item.label }}
</el-button>
</div>
</div>
</div>
</el-dialog>
<m-busbtn <m-busbtn
ref="childs" ref="childs"
:ownref="ownref" :ownref="ownref"
...@@ -515,24 +536,50 @@ export default { ...@@ -515,24 +536,50 @@ export default {
}, },
trnData: { trnData: {
columns: [ columns: [
'1 1 "编号" 200',
'2 2 "交易名称" 130',
// '3 3 "日期" 200',
{index: 3, position: 3, width: 110, pattern: "date", label: "日期"},
// '4 4 "状态" 50',
{ {
index: 4, label: '交易id',
position: 4, prop: 'inr'
width: 100, },
pattern: "code", {
label: "状态", label: '信用证编号',
code: this.codes.relstaEN, prop: 'seaownref'
},
{
label: '交易名称',
prop: 'ininam'
},
{
label: '条目',
prop: 'inidattim'
},
{
label: '状态',
prop: 'relflg'
},
{
label: '币种',
prop: 'reloricur'
},
{
label: '相关金额',
prop: 'reloriamt'
},
{
label: '标识',
prop: 'relres'
}, },
'5 5 "币种" 80',
'6 6 "金额" 100',
], ],
data: [], data: [],
}, },
// 处理
handlerDataList: [],
btnRouteMap: [
{
label: '进口融资还款',
route: '/business-new/trtset'
}
],
currentHandleRow: {}
}; };
}, },
......
...@@ -276,11 +276,11 @@ export default { ...@@ -276,11 +276,11 @@ export default {
if (menuItem.pntmiu === undefined || menuItem.pntmiu === "") { if (menuItem.pntmiu === undefined || menuItem.pntmiu === "") {
const children = []; const children = [];
// 此处为了兼容新的保函模块 // 此处为了兼容新的保函模块
if (['4', '13','3','6','5'].includes(menuItem.inifrm)) { // if (['4', '13','3','6','5','17'].includes(menuItem.inifrm)) {
menuItem.path = "/business-new"; menuItem.path = "/business-new";
} else { // } else {
menuItem.path = "/business"; // menuItem.path = "/business";
} // }
this.generateMenuTree(children, menuItem); this.generateMenuTree(children, menuItem);
const child = { const child = {
name: menuItem.ininam, name: menuItem.ininam,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment