|
@@ -174,11 +174,12 @@ status: 5 -->
|
174
|
174
|
<el-table-column prop="status" label="状态" show-overflow-tooltip>
|
175
|
175
|
<template slot-scope="scope">
|
176
|
176
|
<div :class="'classShow' + scope.$index">
|
177
|
|
- {{
|
|
177
|
+ <!-- {{
|
178
|
178
|
scope.row.status == 1 || scope.row.status == 2
|
179
|
179
|
? goodStatus[scope.row.status]
|
180
|
180
|
: goodStatus[goodStatus.length - 1]
|
181
|
|
- }}
|
|
181
|
+ }} -->
|
|
182
|
+ {{scope.row.status==2||scope.row.status==3?'已取货':scope.row.status==0?'未支付':scope.row.status==1?'待取货':'已取消'}}
|
182
|
183
|
</div>
|
183
|
184
|
</template>
|
184
|
185
|
</el-table-column>
|