123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286 |
- <template>
- <view class="returnList">
- <view class="data bgRed">
- <view v-if="orderDetail.salesState === 0">
- <view class="state" v-if="orderDetail.state === 0">
- 已提交申请,请耐心等待卖家处理
- </view>
- <view class="state" v-if="orderDetail.state === 1">
- <view class="state" v-if="orderDetail.serviceType === 0">
- 已通过平台审核,正在退款
- </view>
- <view class="state" v-if="orderDetail.serviceType === 1">
- 已通过平台审核 ,请填写退货物流
- </view>
- </view>
- <view class="state" v-if="orderDetail.state === 2">
- 已发货,等待商家审核
- </view>
- <view class="state" v-if="orderDetail.state === 3">
- 售后订单已完成
- </view>
- </view>
- <view v-if="orderDetail.salesState === 1">
- 已撤销售后订单
- </view>
- <view v-if="orderDetail.salesState === 2">
- 商家已拒绝售后申请
- </view>
- </view>
- <!-- 退款总金额 -->
- <view class="money">
- <view class="top">
- <text>退款总金额</text>
- <text class="colorRed">¥{{ orderDetail.refundAmount || 0 }}</text>
- </view>
- <view class="express" v-if="orderDetail.state === 1 && orderDetail.serviceType === 1 && orderDetail.deliverySn===null">
- <view class="title">商家已同意退货申请,请尽快发货。</view>
- <view class="info people"> 收货人: {{ orderDetail.consignee || '' }} </view>
- <view class="info address"> 收货地址: {{ orderDetail.address || '' }} </view>
- <view class="info phone"> 收货电话: {{ orderDetail.phoneNumber || '' }} </view>
- </view>
- <!-- 退款信息 -->
- <view class="tips" v-if="orderDetail.state === 0 && orderDetail.salesState !== 1 && orderDetail.salesState !== 2 ">
- <text class="title">您已成功发起退款申请,请耐心等待商家处理</text>
- <view class="content">
- <view>· 卖家同意或超时未处理,系统将退款给您</view>
- <view>· 如果卖家拒绝,您可以修改退款申请后再次发起,卖家会重新处理</view>
- </view>
- </view>
- <view class="bottom">
- <view class="btns def" v-if="orderDetail.salesState === 0 && orderDetail.state !== 2 && orderDetail.state !== 3" @click="cancelReq">撤销申请</view>
- </view>
- </view>
- <!-- 退款信息 -->
- <view class="rebackInfo">
- <view class="top">
- 退款信息
- </view>
- <view class="rebackItem" v-for="item in orderDetail.cartInfo" :key="item.id">
- <image class="img" :src="JSON.parse(item.img)[0].url" mode=""></image>
- <view class="info">
- <view class="productName">
- {{ item.productTitle }}
- </view>
- <view class="sku">
- {{ item.productAttrTitle }}
- </view>
- </view>
- </view>
- <view class="bottom">
- <view class="reason">
- <view class="left">
- 退款原因:
- </view>
- <view class="right">
- {{ orderDetail.reasons || '' }}
- </view>
- </view>
- <view class="reason">
- <view class="left">
- 退款金额:
- </view>
- <view class="right"> ¥{{ orderDetail.refundAmount || 0 }} </view>
- </view>
- <view class="reason">
- <view class="left">
- 退款编号:
- </view>
- <view class="right">
- {{ orderDetail.id || '' }}
- </view>
- </view>
- <view class="reason">
- <view class="left">
- 申请时间:
- </view>
- <view class="right">
- {{ orderDetail.createTime || '' }}
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- orderId: '',
- id: '',
- orderInfo: {},
- orderDetail: {},
- }
- },
- onLoad(options) {
- this.orderId = options.orderId
- this.id = options.id
- this.getReturnDetail()
- },
- methods: {
- /** state售后状态 0已提交等待平台审核 1平台已审核 等待用户发货/退款 2 用户已发货 3已完成 */
- async getReturnDetail() {
- this.$api.request('get', 'order/app/storeAfterSales/get', {"orderId":this.orderId,"id":this.id}).then(res => {
- this.orderDetail = res.data
- }).catch(err => {
- uni.showToast({
- title: '订单异常',
- icon: 'none',
- duration: 2000,
- })
- })
- },
- // 撤销申请
- async cancelReq() {
- this.$api.request('get', 'order/app/storeAfterSales/revoke', {"orderId":this.orderId,"id":this.id}).then(res => {
- uni.showToast({
- title: '已撤销',
- icon: 'none',
- duration: 2000,
- })
- setTimeout(() => {
- uni.navigateBack({
- delta: 1 // delta 默认为 1,表示返回上一页
- });
- }, 1500)
- })
- .catch(err => {
- uni.showToast({
- title: err.msg || '撤销失败',
- icon: 'none',
- duration: 2000,
- })
- })
- },
- // 修改申请
- editReq() {},
- },
- }
- </script>
- <style scoped lang="scss">
- $green: #39b54a;
- .returnList {
- .colorRed {
- color: $green;
- }
- .bgRed {
- background-color: $green;
- }
- .data {
- width: 100%;
- height: 150rpx;
- line-height: 150rpx;
- padding-left: 30rpx;
- color: #fff;
- }
- .money {
- background-color: #fff;
- .top {
- padding: 20rpx 30rpx;
- font-size: 30rpx;
- display: flex;
- justify-content: space-between;
- border-bottom: 2rpx solid #f3f4f5;
- }
- .express {
- padding: 20rpx 30rpx;
- font-size: 26rpx;
- .title {
- color: #333333;
- }
- .info {
- color: #999999;
- }
- }
- .tips {
- height: 160rpx;
- padding: 20rpx 30rpx;
- color: #999999;
- border-bottom: 2rpx solid #f3f4f5;
- font-size: 26rpx;
- .title {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .content {
- font-size: 20rpx;
- }
- }
- .bottom {
- padding: 20rpx 30rpx;
- display: flex;
- justify-content: flex-end;
- .btns {
- width: 160rpx;
- height: 58rpx;
- margin: 0 10rpx;
- font-size: 24rpx;
- text-align: center;
- line-height: 58rpx;
- border-radius: 180rpx;
- }
- .def {
- color: #dddddd;
- border: 2rpx solid #dddddd;
- }
- .greenBtn {
- color: #fff;
- background-color: $green;
- }
- }
- }
- .rebackInfo {
- padding: 0 30rpx;
- background-color: #fff;
- .top {
- height: 80rpx;
- margin: 20rpx 0;
- line-height: 80rpx;
- font-size: 30rpx;
- font-weight: bold;
- color: #333333;
- border-bottom: 2rpx solid #f3f4f5;
- }
- .rebackItem {
- padding: 20rpx 0;
- font-size: 28rpx;
- display: flex;
- border-bottom: 2rpx solid #f3f4f5;
- .img {
- width: 120rpx;
- height: 120rpx;
- }
- .info {
- margin-left: 16rpx;
- flex: 1;
- .productName {
- width: 100%;
- height: 80rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- color: #333333;
- }
- .sku {
- font-size: 24rpx;
- color: #cccccc;
- }
- }
- }
- .bottom {
- padding: 20rpx 0;
- .reason {
- font-size: 28rpx;
- color: #333333;
- display: flex;
- justify-content: space-between;
- .right {
- color: #aaaaaa;
- }
- }
- }
- }
- }
- </style>
|