|
@@ -17,9 +17,7 @@
|
|
|
<el-col :span="20"> {{ customers.name }},{{ customers.phone }} </el-col>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="add">
|
|
|
- <el-col :span="2">
|
|
|
- <i class="el-icon-location"></i>
|
|
|
- </el-col>
|
|
|
+ <el-col :span="2"><i class="el-icon-location"></i></el-col>
|
|
|
<el-col :span="22">
|
|
|
<el-col :span="24"> {{ address.name }},{{ address.phone }} </el-col>
|
|
|
<el-col :span="24"> {{ address.province }} , {{ address.city }} , {{ address.area }} , {{ address.address }} </el-col>
|
|
@@ -306,6 +304,7 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+ // 换货、退货
|
|
|
async exam_one(status) {
|
|
|
this.$confirm('是否确认不填写单号修改售后状态', '提示', {
|
|
|
confirmButtonText: '确定',
|
|
@@ -366,9 +365,10 @@ export default {
|
|
|
// 查询其他信息
|
|
|
async searchOther() {
|
|
|
let res;
|
|
|
- // 类型
|
|
|
+ // 售后类型
|
|
|
res = await this.dictQuery({ code: 'afterSale_type' });
|
|
|
if (this.$checkRes(res)) this.$set(this, `typeList`, res.data);
|
|
|
+ // 售后状态
|
|
|
res = await this.dictQuery({ code: 'afterSale_status' });
|
|
|
if (this.$checkRes(res)) this.$set(this, `statusList`, res.data);
|
|
|
},
|