Commit be2c3c61 by WH

INFSEA添加处理弹框

parent a3777003
...@@ -383,6 +383,31 @@ ...@@ -383,6 +383,31 @@
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
<!-- 点击处理ba弹框 -->
<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>
</div> </div>
<m-busbtn <m-busbtn
...@@ -541,22 +566,38 @@ export default { ...@@ -541,22 +566,38 @@ export default {
initdialog: false, initdialog: false,
handlerDataList: [], handlerDataList: [],
btnRouteMap: [ btnRouteMap: [
// { {
// label: '出口信用证预开立', label: '收单',
// route: '/business-new/betnot' route: '/business-new/letdrv'
// }, },
// { {
// label: '出口信用证开立', label: '修改通知',
// route: '/business-new/letopn' route: '/business-new/letame'
// }, },
// { {
// label: '非我行通知及收单行登记', label: '注销',
// route: '/business-new/letdrw' route: '/business-new/letcan'
// }, },
// { {
// label:'出口信用证补通知', label:'收单加补录',
// route:'/business-new/letrsv' route:'/business-new/letdrw'
// }, },
{
label:'转让证开立',
route:'/business-new/lttopn'
},
{
label:'开证',
route:'/business-new/letopn'
},
{
label:'保兑',
route:'/business-new/letamc'
},
{
label:'通知到单',
route:'/business-new/letdav'
},
], ],
currentHandleRow: {}, currentHandleRow: {},
}; };
......
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