|
|
|
@ -45,7 +45,7 @@ |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="section_3 flex-col"> |
|
|
|
<view class="flex-col group_13" @click="$url('/packages/sonpingDetail/ratingTrajectory')"> |
|
|
|
<view class="flex-col group_13" @click="$url('/packages/sonpingDetail/ratingTrajectory?id='+ id)"> |
|
|
|
<view class="flex-row"> |
|
|
|
<image |
|
|
|
src="https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497775960694116.png" |
|
|
|
@ -69,10 +69,10 @@ |
|
|
|
</view> |
|
|
|
<view class="flex-col section_4"> |
|
|
|
<text class="text_16">送评信息</text> |
|
|
|
<view class="justify-between group_16" @click="$url('/packages/sonpingDetail/ratingTrajectory')"> |
|
|
|
<view class="justify-between group_16" @click="$url('/packages/sonpingDetail/ratingTrajectory?id='+ id)"> |
|
|
|
<view class="flex-row"> |
|
|
|
<text class="text_17">寄送藏品:</text> |
|
|
|
<text class="text_18">顺丰 SF137843938493</text> |
|
|
|
<text class="text_18">{{ details.order.express_type }}{{ details.order.express_numb }}</text> |
|
|
|
</view> |
|
|
|
<image |
|
|
|
src="https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497780290849398.png" |
|
|
|
@ -81,23 +81,23 @@ |
|
|
|
</view> |
|
|
|
<view class="flex-row group_18"> |
|
|
|
<text class="text_19">送评公司:</text> |
|
|
|
<text class="text_20">北京评分卡部</text> |
|
|
|
<text class="text_20">{{ details.order.express_type }}</text> |
|
|
|
</view> |
|
|
|
<view class="flex-row group_19"> |
|
|
|
<text class="text_21">送评人:</text> |
|
|
|
<text class="text_22">卡卡</text> |
|
|
|
<text class="text_22">{{ details.order.owner }}</text> |
|
|
|
</view> |
|
|
|
<view class="flex-row group_20"> |
|
|
|
<text class="text_23">联系方式:</text> |
|
|
|
<text class="text_24">1527396409</text> |
|
|
|
<text class="text_24">{{ details.order.tel }}</text> |
|
|
|
</view> |
|
|
|
<view class="flex-row group_21"> |
|
|
|
<text class="text_25">是否快评:</text> |
|
|
|
<text class="text_26">否</text> |
|
|
|
<text class="text_26">{{ ['否','是'][details.order.is_fast] }}</text> |
|
|
|
</view> |
|
|
|
<view class="flex-row group_22"> |
|
|
|
<text class="text_27">保价:</text> |
|
|
|
<text class="text_28">¥0</text> |
|
|
|
<text class="text_28">¥????</text> |
|
|
|
</view> |
|
|
|
<view class="flex-col group_23"> |
|
|
|
<view class="flex-col"> |
|
|
|
@ -107,19 +107,12 @@ |
|
|
|
</view> |
|
|
|
<view class="flex-row equal-division"> |
|
|
|
<image |
|
|
|
src="https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497768828992333.png" |
|
|
|
mode="aspectFill" |
|
|
|
:src="item" |
|
|
|
class="equal-division-item image_14" |
|
|
|
@click="previewImage" |
|
|
|
/> |
|
|
|
<image |
|
|
|
src="https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497768927244914.png" |
|
|
|
class="equal-division-item" |
|
|
|
@click="previewImage" |
|
|
|
/> |
|
|
|
<image |
|
|
|
src="https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497768986098398.png" |
|
|
|
class="equal-division-item" |
|
|
|
@click="previewImage" |
|
|
|
v-for="(item, index) in showImages" |
|
|
|
:key="index" |
|
|
|
@click="previewImage(index)" |
|
|
|
/> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
@ -136,10 +129,14 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
import { gradingDetail } from '@/service/grading.js' |
|
|
|
|
|
|
|
export default { |
|
|
|
data() { |
|
|
|
return { |
|
|
|
address: {} |
|
|
|
address: {}, |
|
|
|
id: '', |
|
|
|
details: {} |
|
|
|
}; |
|
|
|
}, |
|
|
|
watch: { |
|
|
|
@ -147,11 +144,29 @@ |
|
|
|
console.log("监听到改变,调取接口。。。。"); |
|
|
|
} |
|
|
|
}, |
|
|
|
computed: { |
|
|
|
showImages(){ |
|
|
|
if(this.details.order && this.details.order.images){ |
|
|
|
return this.details.order.images.split(','); |
|
|
|
}else{ |
|
|
|
return [] |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
onLoad(options){ |
|
|
|
this.id = options.id; |
|
|
|
this.getGradingDetail(); |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
previewImage(){ |
|
|
|
async getGradingDetail(){ |
|
|
|
let res = await gradingDetail(this.id); |
|
|
|
console.log("res", res); |
|
|
|
this.details = res.data.datas; |
|
|
|
}, |
|
|
|
previewImage(current){ |
|
|
|
uni.previewImage({ |
|
|
|
urls: ['https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497768927244914.png'], |
|
|
|
current: 0 |
|
|
|
urls: this.showImages, |
|
|
|
current: current |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
|
@ -171,9 +186,9 @@ |
|
|
|
} |
|
|
|
.equal-division-item { |
|
|
|
margin-left: 28rpx; |
|
|
|
flex: 1 1 210rpx; |
|
|
|
width: 210rpx; |
|
|
|
height: 130rpx; |
|
|
|
/* flex: 1 1 210rpx; */ |
|
|
|
width: 80px; |
|
|
|
height: 80px; |
|
|
|
} |
|
|
|
.page { |
|
|
|
background-color: #f6f6f6; |
|
|
|
|