|
|
|
@ -4,68 +4,69 @@ |
|
|
|
<view class="section_2 flex-col view_2"> |
|
|
|
<view class="flex-row"> |
|
|
|
<text class="text_3">鉴定结果:</text> |
|
|
|
<text class="text_4">共3件</text> |
|
|
|
<text class="text_4">共{{ order.num }}件</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="section_2 flex-col view_3" v-for="item in 3" :key="item"> |
|
|
|
<view class="section_2 flex-col view_3" v-for="(item, index) in order.sub_orders" :key="index"> |
|
|
|
<view class="flex-row"> |
|
|
|
<text class="text_19">评级编号:</text> |
|
|
|
<text class="text_20" style="margin-left: 86rpx;">81193920347</text> |
|
|
|
<text class="text_20" style="margin-left: 86rpx;">{{ item.series_num }}</text> |
|
|
|
</view> |
|
|
|
<view class="flex-row group_13"> |
|
|
|
<text class="text_19">名称:</text> |
|
|
|
<text class="text_20" style="margin-left: 142rpx;">FUIWE UEIF</text> |
|
|
|
<text class="text_20" style="margin-left: 142rpx;">{{ item.title }}</text> |
|
|
|
</view> |
|
|
|
<view class="flex-row group_13"> |
|
|
|
<text class="text_19">分数:</text> |
|
|
|
<text class="text_20" style="margin-left: 142rpx;">NM-MT+8.5</text> |
|
|
|
<text class="text_20" style="margin-left: 142rpx;">{{ item.score }}</text> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="flex-row group_13"> |
|
|
|
<text class="text_11">年份:</text> |
|
|
|
<text class="text_12">2014</text> |
|
|
|
<text class="text_12">{{ item.years }}</text> |
|
|
|
</view> |
|
|
|
<view class="flex-row group_10"> |
|
|
|
<text class="text_13">发行商:</text> |
|
|
|
<text class="text_14">PANINI</text> |
|
|
|
<text class="text_14">{{ item.publisher }}</text> |
|
|
|
</view> |
|
|
|
<view class="flex-row group_11"> |
|
|
|
<text class="text_15">卡片系列名称:</text> |
|
|
|
<text class="text_16">CONRT KINGS</text> |
|
|
|
<text class="text_16">{{ item.card_series }}</text> |
|
|
|
</view> |
|
|
|
<view class="flex-row group_12"> |
|
|
|
<text class="text_17">边子系列名称:</text> |
|
|
|
<text class="text_18">HEIR APPARENT</text> |
|
|
|
<text class="text_18">{{ item.sub_card_series }}</text> |
|
|
|
</view> |
|
|
|
<view class="flex-row group_13"> |
|
|
|
<text class="text_19">卡片编码:</text> |
|
|
|
<text class="text_20">#HA-AW</text> |
|
|
|
<text class="text_20">{{ item.card_code }}</text> |
|
|
|
</view> |
|
|
|
<view class="flex-row group_13"> |
|
|
|
<text class="text_19">居中分数:</text> |
|
|
|
<text class="text_20">9.5</text> |
|
|
|
<text class="text_20">{{ item.center_s }}</text> |
|
|
|
</view> |
|
|
|
<view class="flex-row group_13"> |
|
|
|
<text class="text_19">边框分数:</text> |
|
|
|
<text class="text_20">8.5</text> |
|
|
|
<text class="text_20">{{ item.border_s }}</text> |
|
|
|
</view> |
|
|
|
<view class="flex-row group_13"> |
|
|
|
<text class="text_19">卡角分数:</text> |
|
|
|
<text class="text_20">8.5</text> |
|
|
|
<text class="text_20">{{ item.corner_s }}</text> |
|
|
|
</view> |
|
|
|
<view class="flex-row group_13"> |
|
|
|
<text class="text_19">表面分数:</text> |
|
|
|
<text class="text_20">9.5</text> |
|
|
|
<text class="text_20">{{ item.front }}</text> |
|
|
|
</view> |
|
|
|
<view class="flex-row group_13"> |
|
|
|
<text class="text_19">签字分数:</text> |
|
|
|
<text class="text_20">10</text> |
|
|
|
<text class="text_20">{{ item.sign_s }}</text> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="flex-row group_13"> |
|
|
|
<text class="text_19">鉴定结果:</text> |
|
|
|
<text class="text_20">正常</text> |
|
|
|
<!-- <text class="text_20">{{ ['不正常','正常'][item.result_type] }}</text> --> |
|
|
|
<text class="text_20">{{ item.result_type_text }}</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
@ -78,17 +79,19 @@ |
|
|
|
export default { |
|
|
|
data() { |
|
|
|
return { |
|
|
|
id: '' |
|
|
|
id: '', |
|
|
|
order: {} |
|
|
|
}; |
|
|
|
}, |
|
|
|
onLoad(options){ |
|
|
|
this.id = options.id; |
|
|
|
this.getViewGradingDetail(); |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
async getViewGradingDetail(){ |
|
|
|
// todo 更换接口? |
|
|
|
let res = await gradingDetail(this.id); |
|
|
|
console.log("res", res) |
|
|
|
this.order = res.data.datas.order; |
|
|
|
}, |
|
|
|
previewImage(){ |
|
|
|
uni.previewImage({ |
|
|
|
|