|
|
@@ -50,11 +50,10 @@
|
|
|
|
|
|
<!-- 状态 -->
|
|
|
<template #table-column-status="{scope}">
|
|
|
- <el-tag v-if="scope.row.status == 1">待配送</el-tag>
|
|
|
- <el-tag v-else-if="scope.row.status == 2">配送中</el-tag>
|
|
|
- <el-tag v-else-if="scope.row.status == 3">待通知</el-tag>
|
|
|
- <el-tag v-else-if="scope.row.status == 4">已取消</el-tag>
|
|
|
- <el-tag v-else-if="scope.row.status == 5">已完成</el-tag>
|
|
|
+ <el-tag v-if="scope.row.status == 2">待配送</el-tag>
|
|
|
+ <el-tag v-else-if="scope.row.status == 3">配送中</el-tag>
|
|
|
+ <el-tag v-else-if="scope.row.status == 4">已完成</el-tag>
|
|
|
+ <el-tag v-else-if="scope.row.status == 5">已取消</el-tag>
|
|
|
<el-tag v-else>待付款</el-tag>
|
|
|
</template>
|
|
|
|