|
@@ -18,6 +18,7 @@
|
|
<el-option key="8" label="待送衣" value="8" />
|
|
<el-option key="8" label="待送衣" value="8" />
|
|
<el-option key="9" label="送衣中" value="9" />
|
|
<el-option key="9" label="送衣中" value="9" />
|
|
<el-option key="11" label="已完成" value="11" />
|
|
<el-option key="11" label="已完成" value="11" />
|
|
|
|
+ <el-option key="-1" label="已取消" value="-1" />
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item label="订单条码" prop="orderNo">
|
|
<el-form-item label="订单条码" prop="orderNo">
|
|
@@ -113,6 +114,13 @@
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
+ <el-table-column label="退款状态" align="center" width="200">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <div class="status-group">
|
|
|
|
+ <dict-tag :options="dict.type.goods_order_refund_status" :value="scope.row.refundStatus" />
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column label="下单时间" align="center" width="180">
|
|
<el-table-column label="下单时间" align="center" width="180">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<div class="time-info">
|
|
<div class="time-info">
|
|
@@ -125,7 +133,7 @@
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-button type="text" icon="el-icon-s-order" size="mini" @click="handleDetail(scope.row)"> 订单详情 </el-button>
|
|
<el-button type="text" icon="el-icon-s-order" size="mini" @click="handleDetail(scope.row)"> 订单详情 </el-button>
|
|
<el-button type="text" icon="el-icon-printer" size="mini" @click="btn_lodop(scope.row)" v-if="userInfoVO.userType != '00'"> 打印订单 </el-button>
|
|
<el-button type="text" icon="el-icon-printer" size="mini" @click="btn_lodop(scope.row)" v-if="userInfoVO.userType != '00'"> 打印订单 </el-button>
|
|
- <el-button type="text" icon="el-icon-close" size="mini" @click="handleClose(scope.row)" v-if="scope.row.orderStatus != '10' && scope.row.orderStatus != '11' && scope.row.orderStatus != '4'"> 撤销 </el-button>
|
|
|
|
|
|
+ <el-button type="text" icon="el-icon-close" size="mini" @click="handleClose(scope.row)" v-if="scope.row.refundStatus == '0' && scope.row.orderStatus != '10' && scope.row.orderStatus != '11' && scope.row.orderStatus != '4'"> 撤销 </el-button>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</Page>
|
|
</Page>
|
|
@@ -184,8 +192,8 @@
|
|
<el-table-column label="衣物照片" align="center" width="120">
|
|
<el-table-column label="衣物照片" align="center" width="120">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<div class="cloth-photos" v-if="scope.row.pics">
|
|
<div class="cloth-photos" v-if="scope.row.pics">
|
|
- <el-image
|
|
|
|
- v-for="(pic, index) in scope.row.pics.split(',')"
|
|
|
|
|
|
+ <el-image
|
|
|
|
+ v-for="(pic, index) in scope.row.pics.split(',')"
|
|
:key="index"
|
|
:key="index"
|
|
:src="pic"
|
|
:src="pic"
|
|
:preview-src-list="scope.row.pics.split(',')"
|
|
:preview-src-list="scope.row.pics.split(',')"
|
|
@@ -238,12 +246,12 @@
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="洗衣速度" align="center" prop="clothSpeedName" width="120" />
|
|
<el-table-column label="洗衣速度" align="center" prop="clothSpeedName" width="120" />
|
|
-
|
|
|
|
|
|
+
|
|
<el-table-column label="备注" align="center" min-width="150">
|
|
<el-table-column label="备注" align="center" min-width="150">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <el-tooltip
|
|
|
|
- :content="scope.row.remark"
|
|
|
|
- placement="top"
|
|
|
|
|
|
+ <el-tooltip
|
|
|
|
+ :content="scope.row.remark"
|
|
|
|
+ placement="top"
|
|
:disabled="!scope.row.remark || scope.row.remark.length <= 20"
|
|
:disabled="!scope.row.remark || scope.row.remark.length <= 20"
|
|
>
|
|
>
|
|
<span class="remark-text">{{ scope.row.remark || '暂无备注' }}</span>
|
|
<span class="remark-text">{{ scope.row.remark || '暂无备注' }}</span>
|