Authored by jiran.zhao

提交

... ... @@ -23,9 +23,9 @@
</template>
<script>
import moment from "moment";
import {ServiceList} from './store';
import FinanceService from 'services/finance/finance-service';
import moment from "moment";
import {ServiceList} from './store';
import FinanceService from 'services/finance/finance-service';
export default {
data(){
... ...
... ... @@ -4,7 +4,7 @@ let curDay = moment().format('YYYY-MM-DD');
const withdrawStatus = {
0: '提现中',
1: '提现成功',
2: '提现失败'
2: '提现失败',
};
export default function() {
... ... @@ -24,58 +24,58 @@ export default function() {
title: '提现时间',
key: 'withdrawTime',
width: 60,
align: 'center'
align: 'center',
},
{
title: '账务ID',
key: 'id',
width: 90,
align: 'center'
align: 'center',
}, {
title: '商家名称',
key: 'productName',
width: 90,
align: 'center'
align: 'center',
}, {
title: '商家收款账户',
key: 'targetAccount',
width: 90,
align: 'center'
align: 'center',
}, {
title: '订单号',
key: 'orderCode',
width: 90,
align: 'center'
align: 'center',
}, {
title: 'sku',
key: 'productSku',
width: 90,
align: 'center'
align: 'center',
}, {
title: '商品名称',
key: 'productName',
width: 90,
align: 'center'
align: 'center',
}, {
title: '业务单据号',
key: 'targetAccount',
width: 90,
align: 'center'
align: 'center',
}, {
title: '账务类型',
key: 'clearingType',
width: 90,
align: 'center'
align: 'center',
}, {
title: '子账务类型',
key: 'applyAmount',
width: 90,
align: 'center'
align: 'center',
}, {
title: '服务费金额(元)',
key: 'serviceAmount',
width: 90,
align: 'center'
align: 'center',
}, {
title: '提现状态',
key: 'status',
... ... @@ -92,20 +92,20 @@ export default function() {
title: '入账时间',
key: 'createTime',
width: 90,
align: 'center'
}
align: 'center',
},
],
tableData: [],
pageData: {
total: 0,
current: 1,
pageSize: 20
pageSize: 20,
},
filters: {
dateRange: {
label: '起止日期',
model: '',
labelSpan: 8
labelSpan: 8,
},
beginTime: '',
endTime: '',
... ... @@ -125,8 +125,8 @@ export default function() {
},{
value: 4,
label: '近30天',
}
]
},
],
},
withdrawStatus: {
label: '提现状态',
... ...
... ... @@ -11,7 +11,7 @@ const apiUrl = {
shopWithdrawList: '/erp/shopWithdrawList',
shopWithdrawApply: '/erp/shopWithdrawApply',
shopWithdrawAccountList: '/erp/shopWithdrawAccountList',
shopWithdrawServiceList: '/erp/shopWithdrawServiceList'
shopWithdrawServiceList: '/erp/shopWithdrawServiceList',
};
class FinanceService extends Service {
... ...