|
|
|
@ -2,7 +2,7 @@
|
|
|
|
|
* @Author: ch
|
|
|
|
|
* @Date: 2022-03-31 14:26:09
|
|
|
|
|
* @LastEditors: ch
|
|
|
|
|
* @LastEditTime: 2022-04-15 18:42:30
|
|
|
|
|
* @LastEditTime: 2022-04-18 11:00:17
|
|
|
|
|
* @Description: file content
|
|
|
|
|
-->
|
|
|
|
|
<template>
|
|
|
|
@ -13,9 +13,14 @@
|
|
|
|
|
v-for="(item, index) in orderInfo.products" :data="item" :key="index">
|
|
|
|
|
<template slot="operation">
|
|
|
|
|
<view class="goods-info-operation">
|
|
|
|
|
<UiButton size="min" type="primaryLine"
|
|
|
|
|
v-if="item.afterSaleApplyFlag"
|
|
|
|
|
@click="$Router.push(`/saleAfterSelect?id=${item.orderProductId}`)">申请售后</UiButton>
|
|
|
|
|
<UiButton size="min" type="primaryLine" v-if="item.afterSaleApplyFlag"
|
|
|
|
|
@click="$Router.push(`/saleAfterSelect?id=${item.orderProductId}`)">申请售后</UiButton>
|
|
|
|
|
<template v-else>
|
|
|
|
|
<UiButton size="min" type="line" v-if="item.detailStatus === 3"
|
|
|
|
|
@click="$Router.push(`/saleAfterDetail?orderProductId=${item.orderProductId}`)">已退款</UiButton>
|
|
|
|
|
<UiButton size="min" type="line" v-if="item.detailStatus === 4"
|
|
|
|
|
@click="$Router.push(`/saleAfterDetail?orderProductId=${item.orderProductId}`)">退款关闭</UiButton>
|
|
|
|
|
</template>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
</UiGoodsInfo>
|
|
|
|
|