<template> <div class="eibs-tab"> <c-col :span="24"> <!-- ======================= 左边 ========================= --> <c-col :span="17" class="col-left" style="padding-right: 20px"> <c-table :list="model.bchpList" :columnsConfig="columns"></c-table> </c-col> <!-- ======================= 右边 ========================= --> <c-col :span="7" class="col-right" style="padding-left: 20px"> <p style="font-size:15px">交易属性说明</p> <p style="font-size:15px">1.无论金额大小均须总行看,经办行为经办、复核、总经理三人操作,总行为经办、复核两人操作</p> <p style="font-size:15px">⒉超过一定金额一定须总行看,不超过一定金额不须总行看,但是分行总经理需要授权。</p> <p style="font-size:15px">3.无须总行看,未超过一定金额只需经办、复核两人操作,超过一定金额需经办、复核、总经理三人操作</p> <p style="font-size:15px">4.需要OB两人即可授权业务。</p> <p style="font-size:15px">5.无论金额大小均须总行看,经办行为经办、复核两人操作,总行为经办、复核两人操作。</p> <p style="font-size:15px">空.无需总行看,经办行为经办、总经理两人操作OA。</p> </c-col> </c-col> </div> </template> <script> export default { props: ['model'], data() { return { columns: [ { label: "机构编码", prop: "bchkey", width: "auto" }, { label: "交易代码", prop: "trn", width: "auto" }, { label: "授权货币", prop: "relcur", width: "auto" }, { label: "授权金额", prop: "relamt", width: "auto" }, { label: "交易属性", prop: "relflg", width: "auto" }, ], }; } }; </script> <style> </style>