|
@@ -61,11 +61,16 @@
|
|
|
<el-table-column label="订单状态" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.state == 1">待付款</span>
|
|
|
- <span v-if="scope.row.state == 2">待发货</span>
|
|
|
- <span v-if="scope.row.state == 3">已发货</span>
|
|
|
- <span v-if="scope.row.state == 4">已完成</span>
|
|
|
- <span v-if="scope.row.state == 5">已关闭</span>
|
|
|
- <span v-if="scope.row.state == 6">待成团</span>
|
|
|
+ <span v-else-if="scope.row.state == 2">待发货</span>
|
|
|
+ <span v-else-if="scope.row.state == 3">待收货</span>
|
|
|
+ <span v-else-if="scope.row.state == 4">已完成</span>
|
|
|
+ <span v-else-if="scope.row.state == 5">交易关闭(已取消)</span>
|
|
|
+ <span v-else-if="scope.row.state == 6">待成团</span>
|
|
|
+ <span v-else-if="scope.row.state == 7">待售后</span>
|
|
|
+ <span v-else-if="scope.row.state == 8">待核销(未付款)</span>
|
|
|
+ <span v-else-if="scope.row.state == 9">待核销(已付款)</span>
|
|
|
+ <span v-else-if="scope.row.state == 10">已核销</span>
|
|
|
+ <span v-else>--</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="customerName" label="下单账户" show-overflow-tooltip />
|