@ -1,5 +1,6 @@
<template>
<view>
<block v-if="isRight(orderDetails)">
<!-- 商品信息 -->
<view class="bg-white">
<skeleton :loading="skeletonLoading" :row="2" :showAvatar="false" :showTitle="true">
@ -96,6 +97,7 @@
<view style="height: 82rpx;"></view>
</skeleton>
</block>
</view>
</template>
@ -114,11 +116,16 @@
orderDetails: {},
checkArea: '',
checkAreaId: 1,
images: []
images: [],
ifChoose: true
}
},
computed: {
isRight(){
return function(val){
return this.$shared.isRight(val);
onLoad(e) {
this.order_id = e.order_id
@ -143,9 +150,11 @@
// 预览图片
showImg(image) {
this.$u.throttle(() => {
uni.previewImage({
urls: [image],
});
urls: [image]
})
}, 200);
// 点击复制
copy(text) {
<block v-if="isRight(applyDetails)">
@ -120,6 +121,7 @@
@ -142,7 +144,11 @@