2021-05-13 11:03:32 +08:00
|
|
|
<template>
|
|
|
|
<view>
|
|
|
|
<!-- 商品模块 -->
|
|
|
|
<view class="seller-view">
|
|
|
|
<view class="seller-info u-flex u-row-between">
|
|
|
|
<view class="seller-name">
|
|
|
|
<view class="name">{{ order.storeName || "" }}</view>
|
|
|
|
<view class="status">{{ orderStatusList[order.orderStatus] }}</view>
|
|
|
|
</view>
|
|
|
|
<view class="order-sn"></view>
|
|
|
|
</view>
|
|
|
|
<u-line color="#DCDFE6"></u-line>
|
|
|
|
<view class="goods-item-view" v-for="(sku, index) in orderGoodsList" :key="index" v-if="sku.skuId == skuId">
|
|
|
|
<view class="goods-img">
|
|
|
|
<u-image border-radius="6" width="131rpx" height="131rpx" :src="sku.image"></u-image>
|
|
|
|
</view>
|
|
|
|
<view class="goods-info">
|
|
|
|
<view class="goods-title u-line-2">{{ sku.goodsName }}</view>
|
|
|
|
<view class="goods-price">
|
|
|
|
¥{{ sku.flowPrice | unitPrice }}
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="goods-num">
|
|
|
|
<view>x{{ sku.num }}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<!-- 投诉主题 -->
|
|
|
|
<u-select @confirm="confirmComplain" v-model="complainShow" :list="complainList"></u-select>
|
|
|
|
<!-- 投诉模块 -->
|
|
|
|
<view class="cell">
|
|
|
|
<view class="cell-item between" @click="complainShow = true">
|
|
|
|
<view class="cell-title"> 投诉主题 </view>
|
|
|
|
<view class="cell-view"> {{ complainTopic }} </view>
|
|
|
|
<u-icon style="margin-left: 20rpx" name="arrow-down"></u-icon>
|
|
|
|
</view>
|
2021-05-14 17:31:40 +08:00
|
|
|
|
2021-05-13 11:03:32 +08:00
|
|
|
<view class="cell-item complain-content">
|
|
|
|
<view class="cell-title title"> 投诉内容 </view>
|
|
|
|
<view class="cell-view content">
|
|
|
|
<u-input type="textarea" height="70rpx" auto-height v-model="complainValue" />
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="cell-item">
|
|
|
|
<view class="cell-title"> 投诉凭证 </view>
|
|
|
|
<view class="cell-view">
|
2021-05-14 17:31:40 +08:00
|
|
|
<u-upload ref="uUpload" :header=" { accessToken: storage.getAccessToken() }" upload-text="" :show-progress="false" :action="action" width="100" @on-uploaded="onUploaded" :max-count="5">
|
|
|
|
</u-upload>
|
2021-05-13 11:03:32 +08:00
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view class="submit-btn" @click="handleSumit">提交</view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import storage from "@/utils/storage.js";
|
|
|
|
import { getOrderDetail } from "@/api/order.js";
|
|
|
|
import { getComplainReason, addComplain } from "@/api/after-sale.js";
|
|
|
|
import { upload } from "@/api/common.js";
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
storage,
|
2021-05-14 17:31:40 +08:00
|
|
|
action: upload, //上传图片地址
|
2021-05-13 11:03:32 +08:00
|
|
|
orderStatusList: {
|
2021-05-14 17:31:40 +08:00
|
|
|
//订单状态列表
|
2021-05-13 11:03:32 +08:00
|
|
|
UNDELIVERED: "待发货",
|
|
|
|
UNPAID: "未付款",
|
|
|
|
PAID: "已付款",
|
|
|
|
DELIVERED: "已发货",
|
|
|
|
CANCELLED: "已取消",
|
|
|
|
COMPLETE: "已完成",
|
|
|
|
TAKE: "已完成",
|
|
|
|
},
|
|
|
|
complainValue: "", //投诉内容
|
|
|
|
complainShow: false, //投诉主题开关
|
2021-05-14 17:31:40 +08:00
|
|
|
complainTopic: "", //投诉抱怨话题
|
|
|
|
complainList: [], // 投诉列表
|
|
|
|
images: [], //投诉内容图片
|
|
|
|
order: "", //订单
|
|
|
|
orderGoodsList: "", //订单商品
|
|
|
|
orderDetail: "", //订单详情
|
2021-05-13 11:03:32 +08:00
|
|
|
sn: "",
|
2021-05-14 17:31:40 +08:00
|
|
|
skuId: "", //商品skuid
|
2021-05-13 11:03:32 +08:00
|
|
|
};
|
|
|
|
},
|
2021-05-17 18:19:26 +08:00
|
|
|
|
2021-05-13 11:03:32 +08:00
|
|
|
onLoad(option) {
|
|
|
|
this.loadData(option.sn);
|
|
|
|
this.sn = option.sn;
|
|
|
|
this.skuId = option.skuId;
|
|
|
|
this.getReasion();
|
|
|
|
},
|
2021-05-14 17:31:40 +08:00
|
|
|
|
2021-05-13 11:03:32 +08:00
|
|
|
methods: {
|
2021-05-14 17:31:40 +08:00
|
|
|
/**
|
|
|
|
* 上传完成
|
|
|
|
*/
|
2021-05-13 11:03:32 +08:00
|
|
|
onUploaded(lists) {
|
|
|
|
let images = [];
|
|
|
|
lists.forEach((item) => {
|
|
|
|
images.push(item.response.result);
|
|
|
|
});
|
|
|
|
this.images = images;
|
|
|
|
},
|
2021-05-14 17:31:40 +08:00
|
|
|
/**
|
|
|
|
* 提交
|
|
|
|
*/
|
2021-05-13 11:03:32 +08:00
|
|
|
handleSumit() {
|
2021-05-14 17:31:40 +08:00
|
|
|
// 循环出商品
|
2021-05-13 11:03:32 +08:00
|
|
|
let goods = this.orderGoodsList.filter((item) => {
|
|
|
|
return item.skuId == this.skuId;
|
|
|
|
});
|
2021-05-14 17:31:40 +08:00
|
|
|
//数据赋值
|
2021-05-13 11:03:32 +08:00
|
|
|
let data = {
|
|
|
|
complainTopic: this.complainTopic, //投诉主题,
|
|
|
|
content: this.complainValue, //投诉内容
|
|
|
|
goodsId: goods[0].goodsId, //商品id
|
|
|
|
images: this.images, //图片
|
|
|
|
orderSn: this.sn, //订单号
|
|
|
|
skuId: this.skuId, //skuid
|
|
|
|
};
|
|
|
|
addComplain(data).then((res) => {
|
|
|
|
if (res.data.success) {
|
|
|
|
uni.showToast({
|
|
|
|
title: "提交成功!",
|
|
|
|
duration: 2000,
|
|
|
|
icon: "none",
|
|
|
|
});
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
uni.redirectTo({
|
|
|
|
url: "/pages/order/complain/complainList",
|
|
|
|
});
|
|
|
|
}, 1000);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2021-05-14 17:31:40 +08:00
|
|
|
/**
|
|
|
|
* 获取投诉原因
|
|
|
|
*/
|
2021-05-13 11:03:32 +08:00
|
|
|
getReasion() {
|
|
|
|
getComplainReason().then((res) => {
|
|
|
|
if (res.data.result.length >= 1) {
|
|
|
|
res.data.result.forEach((item) => {
|
|
|
|
let way = {
|
|
|
|
value: item.reason,
|
|
|
|
label: item.reason,
|
|
|
|
};
|
|
|
|
this.complainList.push(way);
|
|
|
|
});
|
|
|
|
this.complainTopic = res.data.result[0].reason;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2021-05-14 17:31:40 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 加载订单详情
|
|
|
|
*/
|
2021-05-13 11:03:32 +08:00
|
|
|
loadData(sn) {
|
|
|
|
uni.showLoading({
|
|
|
|
title: "加载中",
|
|
|
|
});
|
|
|
|
getOrderDetail(sn).then((res) => {
|
|
|
|
const order = res.data.result;
|
|
|
|
this.order = order.order;
|
|
|
|
this.orderGoodsList = order.orderItems;
|
|
|
|
this.orderDetail = res.data.result;
|
|
|
|
uni.hideLoading();
|
|
|
|
});
|
|
|
|
},
|
2021-05-14 17:31:40 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 确认投诉
|
|
|
|
*/
|
2021-05-13 11:03:32 +08:00
|
|
|
confirmComplain(e) {
|
|
|
|
this.complainTopic = e[0].label;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
@import "../goods.scss";
|
|
|
|
.cell {
|
|
|
|
width: 100%;
|
|
|
|
background: #fff;
|
|
|
|
padding: 26rpx;
|
|
|
|
}
|
|
|
|
.cell-item {
|
|
|
|
padding: 30rpx 0;
|
|
|
|
border-bottom: 2rpx solid #f5f7fa;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.complain-content {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
.content {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.title {
|
|
|
|
width: 140rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/deep/ .u-input__textarea {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.cell-title {
|
|
|
|
font-weight: bold;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
}
|
|
|
|
.submit-btn {
|
|
|
|
width: 70%;
|
|
|
|
margin: 0 auto;
|
|
|
|
height: 80rpx;
|
|
|
|
line-height: 80rpx;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
background: $light-color;
|
|
|
|
margin-top: 20px;
|
|
|
|
border-radius: 200px;
|
|
|
|
}
|
|
|
|
</style>
|