|
|
@@ -63,8 +63,7 @@
|
|
|
:dataSource="dataSource"
|
|
|
:pagination="ipagination"
|
|
|
:loading="loading"
|
|
|
- :scroll="{ x: 1600 }"
|
|
|
- :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange,type:'radio',getCheckboxProps:getCheckboxProps}"
|
|
|
+ class="j-table-force-nowrap"
|
|
|
@change="handleTableChange">
|
|
|
|
|
|
<span slot="status" slot-scope="text, record">
|
|
|
@@ -83,6 +82,7 @@
|
|
|
|
|
|
<script>
|
|
|
|
|
|
+ import '@/assets/less/TableExpand.less'
|
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
|
|
import HlgPaymentReissueModal from './modules/HlgPaymentReissueModal'
|
|
|
import { httpAction, getAction, putAction } from '@/api/manage'
|
|
|
@@ -107,25 +107,21 @@
|
|
|
{
|
|
|
title:'姓名',
|
|
|
align:"left",
|
|
|
- width: 100,
|
|
|
dataIndex: 'userName'
|
|
|
},
|
|
|
{
|
|
|
title:'身份证号',
|
|
|
align:"left",
|
|
|
- width: 200,
|
|
|
dataIndex: 'idcardNumber'
|
|
|
},
|
|
|
{
|
|
|
title:'银行卡号',
|
|
|
align:"left",
|
|
|
- width: 200,
|
|
|
dataIndex: 'cardNumber'
|
|
|
},
|
|
|
{
|
|
|
title:'银行名称',
|
|
|
align:"left",
|
|
|
- width: 200,
|
|
|
dataIndex: 'eacbnk',
|
|
|
customRender: function(text, record) {
|
|
|
return record.bnkflg === 'Y' ? '招商银行' : text
|
|
|
@@ -134,7 +130,6 @@
|
|
|
{
|
|
|
title:'开户地',
|
|
|
align:"left",
|
|
|
- width: 200,
|
|
|
dataIndex: 'rcveaa',
|
|
|
customRender: function(text, record) {
|
|
|
return text ? text : '--'
|
|
|
@@ -143,26 +138,22 @@
|
|
|
{
|
|
|
title:'支付状态',
|
|
|
align:"left",
|
|
|
- width: 200,
|
|
|
dataIndex: 'status_dictText',
|
|
|
scopedSlots: { customRender: 'status' }
|
|
|
},
|
|
|
{
|
|
|
title:'付款金额',
|
|
|
align:"left",
|
|
|
- width: 150,
|
|
|
dataIndex: 'payment'
|
|
|
},
|
|
|
{
|
|
|
title:'到账金额',
|
|
|
align:"left",
|
|
|
- width: 150,
|
|
|
dataIndex: 'netPayment'
|
|
|
},
|
|
|
{
|
|
|
title: '返回结果时间',
|
|
|
align: "left",
|
|
|
- width: 200,
|
|
|
dataIndex: 'paymentResultTime',
|
|
|
customRender: function(text, record) {
|
|
|
return text ? text : '--'
|