|
@@ -37,9 +37,10 @@
|
|
|
<el-table-column align="center" prop="mch_amounts" label="总扣款金额"></el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
-
|
|
|
- <el-table :data="exportOrderList" border style="width: 100%;font-size:13px;margin-top:20px;" v-loading="isLoading">
|
|
|
- <el-table-column align="center" prop="title" label="标题" width="600" />
|
|
|
+ <el-divider />
|
|
|
+ <el-button type="primary" style="margin-bottom:10px;" @click="getExportOrderList">刷新</el-button>
|
|
|
+ <el-table :data="exportOrderList" border style="width: 100%;font-size:13px;" v-loading="isLoading">
|
|
|
+ <el-table-column align="center" prop="title" label="标题" width="550" />
|
|
|
<el-table-column align="center" prop="state" label="状态">
|
|
|
<template slot-scope="scope">
|
|
|
<el-tag type="info" v-if="scope.row.state == 1">待处理</el-tag>
|
|
@@ -48,6 +49,7 @@
|
|
|
<el-tag type="danger" v-if="scope.row.state == 4">处理错误</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column align="center" prop="stage" label="进度" />
|
|
|
<el-table-column align="center" prop="errorCount" label="操作">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button size="mini" disabled v-if="scope.row.state != 3">下载</el-button>
|