退化货管理

This commit is contained in:
唐明明
2021-11-09 17:03:14 +08:00
parent 9749aec218
commit 65f0d0d059
8 changed files with 4476 additions and 4576 deletions

View File

@@ -12,9 +12,9 @@
<view class="no nowrap" v-if="listType == 'deliver'">退货单号 {{item.shipment_no}}</view>
<view class="no nowrap" v-else>退货单号 {{item.refund_no}}</view>
</view>
<view class="status" style="color:#ff5500;" v-if="listType == 'deliver'">{{item.state_text}}
<view class="status" style="color:#ee4c47;" v-if="listType == 'deliver'">{{item.state_text}}
</view>
<view class="status" style="color:#ff5500;" v-else>{{item.state.text}}</view>
<view class="status" style="color:#ee4c47;" v-else>{{item.state.text}}</view>
</view>
<view class="goods-info" @click="goDetail(item.goods_sku.goods_id)" v-if="item.goods_sku">
<image class="goods-img" :src="item.goods_sku.cover" mode="aspectFill" />
@@ -81,6 +81,9 @@
},
goReTokens(id,index){
this.$emit('goReToken',{id:id,index:index});
},
goDetail(id){
this.$emit('navDetail', {id: id})
}
}
}