|
@@ -11,23 +11,14 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="ticketInfo">
|
|
<view class="ticketInfo">
|
|
- <!-- <view class="hander-titles">
|
|
|
|
- <view class="names">
|
|
|
|
- {{list.fishermanName}}
|
|
|
|
- </view>
|
|
|
|
- <view class="rights">
|
|
|
|
- <u-icon name="arrow-right"></u-icon>
|
|
|
|
- </view>
|
|
|
|
- </view> -->
|
|
|
|
<view v-if="merchantType==10" class="dateAndType">
|
|
<view v-if="merchantType==10" class="dateAndType">
|
|
<u-icon name="calendar" size="40" color="#272636" style="display: flex;align-items: center;"></u-icon>
|
|
<u-icon name="calendar" size="40" color="#272636" style="display: flex;align-items: center;"></u-icon>
|
|
<text>{{infoMation.playDate}} {{infoMation.playTime}}出发/{{infoMation.orderType==3?'拼船':'包船'}}</text>
|
|
<text>{{infoMation.playDate}} {{infoMation.playTime}}出发/{{infoMation.orderType==3?'拼船':'包船'}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="ticketInfo-hander">
|
|
<view class="ticketInfo-hander">
|
|
<view class="image">
|
|
<view class="image">
|
|
- <image :src="infoMation.isFisheringGoodsDTO.coverImg" mode="aspectFill" v-if="merchantType==10"></image>
|
|
|
|
|
|
+ <image :src="isFisheringGoodsDTOCoverImg" mode="aspectFill" v-if="merchantType==10&&isFisheringGoodsDTOCoverImg"></image>
|
|
<image :src="infoMation.productImg&&infoMation.productImg.split(',')[0]" mode="aspectFill" v-else></image>
|
|
<image :src="infoMation.productImg&&infoMation.productImg.split(',')[0]" mode="aspectFill" v-else></image>
|
|
-
|
|
|
|
</view>
|
|
</view>
|
|
<view class="right">
|
|
<view class="right">
|
|
<view class="name">
|
|
<view class="name">
|
|
@@ -198,7 +189,8 @@
|
|
},
|
|
},
|
|
list: {},
|
|
list: {},
|
|
infoMation: {},
|
|
infoMation: {},
|
|
- orderCode: '',
|
|
|
|
|
|
+ orderCode: '',
|
|
|
|
+ isFisheringGoodsDTOCoverImg:''
|
|
}
|
|
}
|
|
},
|
|
},
|
|
onLoad(opt) {
|
|
onLoad(opt) {
|
|
@@ -213,7 +205,6 @@
|
|
delNotice(val){
|
|
delNotice(val){
|
|
if (val) {
|
|
if (val) {
|
|
return JSON.parse(val)[0].notice
|
|
return JSON.parse(val)[0].notice
|
|
-
|
|
|
|
}
|
|
}
|
|
},
|
|
},
|
|
delArr(val) {
|
|
delArr(val) {
|
|
@@ -236,7 +227,8 @@
|
|
this.$api.get('/api/fishering/personCenterOrderDetail/' + this.orderCode).then(res => {
|
|
this.$api.get('/api/fishering/personCenterOrderDetail/' + this.orderCode).then(res => {
|
|
console.log(res)
|
|
console.log(res)
|
|
if (res.data.code == 0) {
|
|
if (res.data.code == 0) {
|
|
- this.infoMation = res.data.data;
|
|
|
|
|
|
+ this.infoMation = res.data.data;
|
|
|
|
+ this.isFisheringGoodsDTOCoverImg = this.infoMation.isFisheringGoodsDTO.coverImg||'';
|
|
}
|
|
}
|
|
})
|
|
})
|
|
},
|
|
},
|
|
@@ -246,7 +238,8 @@
|
|
orderCode: this.orderCode
|
|
orderCode: this.orderCode
|
|
}).then(res => {
|
|
}).then(res => {
|
|
if (res.data.code == 0) {
|
|
if (res.data.code == 0) {
|
|
- this.infoMation = res.data.data;
|
|
|
|
|
|
+ this.infoMation = res.data.data;
|
|
|
|
+ this.isFisheringGoodsDTOCoverImg = this.infoMation.isFisheringGoodsDTO.coverImg||'';
|
|
this.infoMation.productsDetail = JSON.parse(res.data.data.productsDetail);
|
|
this.infoMation.productsDetail = JSON.parse(res.data.data.productsDetail);
|
|
}
|
|
}
|
|
})
|
|
})
|