|
@@ -106,12 +106,14 @@ export default {
|
|
|
{
|
|
|
label: '账号',
|
|
|
prop: 'accountNumber',
|
|
|
- showTooltip: true
|
|
|
+ showTooltip: true,
|
|
|
+ width: 140,
|
|
|
},
|
|
|
{
|
|
|
label: '账户名称',
|
|
|
showTooltip: true,
|
|
|
- prop: 'accountName'
|
|
|
+ prop: 'accountName',
|
|
|
+ width: 180
|
|
|
},
|
|
|
{
|
|
|
label: '账户状态',
|
|
@@ -133,6 +135,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
label: '付款方数量',
|
|
|
+ width: 100,
|
|
|
render: (h, row) => {
|
|
|
return (
|
|
|
<span
|
|
@@ -148,6 +151,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
label: '实体账号',
|
|
|
+ width: 160,
|
|
|
render: (h, row, $index) => {
|
|
|
return (row && row.bindAccountInfoList && row.bindAccountInfoList.length &&
|
|
|
row.bindAccountInfoList[0].bindAcctNo
|
|
@@ -175,6 +179,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
label: '绑定账户',
|
|
|
+ width: 170,
|
|
|
render: (h, row) => {
|
|
|
return (
|
|
|
<div>{ (row.bindAccountInfoList && row.bindAccountInfoList[0]) ? row.bindAccountInfoList[0].bindAcctNoAcctNme : '' }</div>
|
|
@@ -183,6 +188,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
label: '账户核验状态',
|
|
|
+ width: 140,
|
|
|
render: (h, row) => {
|
|
|
return (
|
|
|
<div>{ (row.bindAccountInfoList && row.bindAccountInfoList[0]) ? this.getVerifyStatus(row.bindAccountInfoList[0].bindSts) : '' }</div>
|
|
@@ -216,7 +222,8 @@ export default {
|
|
|
{
|
|
|
label: '开通日期',
|
|
|
prop: 'openTime',
|
|
|
- showTooltip: true
|
|
|
+ showTooltip: true,
|
|
|
+ width: 140
|
|
|
},
|
|
|
{
|
|
|
label: '操作',
|
|
@@ -292,7 +299,7 @@ export default {
|
|
|
})
|
|
|
return <div>{options}</div>
|
|
|
},
|
|
|
- width: 200
|
|
|
+ width: 240
|
|
|
}
|
|
|
],
|
|
|
authActiveInfo: {}, // 待授权弹窗组件入参
|