|
|
|
|
@ -88,8 +88,19 @@
|
|
|
|
|
<view class="g_flex_column_center g_text_r">{{ orderDetail.tel ? orderDetail.tel : "-" }}</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="g_pb_17" v-if="orderDetail.idCardImageUrl">
|
|
|
|
|
<g-panel-image :url="orderDetail.idCardImageUrl" radius="8" size="152" @clickItem="handleClickIDcard" />
|
|
|
|
|
<view class="g_flex_row_start" >
|
|
|
|
|
<div v-if="orderDetail.idCardImageUrl" style="margin-right: 8px;">
|
|
|
|
|
<g-panel-image :url="orderDetail.idCardImageUrl" radius="8" size="152"
|
|
|
|
|
@clickItem="handleClickIDcard(orderDetail.idCardImageUrl)" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="g_flex_row_start" v-if="orderDetail.userApplyOrderFiles && orderDetail.userApplyOrderFiles.length > 0">
|
|
|
|
|
<g-panel-image v-for="(item,index) in orderDetail.userApplyOrderFiles" :key='index'
|
|
|
|
|
:url="item.url" radius="8" size="152" @clickItem="handleClickIDcard(item.url)"
|
|
|
|
|
style="margin-right: 8px;"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
</g-panel-image>
|
|
|
|
|
</div>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
@ -747,8 +758,8 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
handleClickIDcard() {
|
|
|
|
|
this.G.viewBigImage(this.orderDetail.idCardImageUrl);
|
|
|
|
|
handleClickIDcard($url) {
|
|
|
|
|
this.G.viewBigImage($url);
|
|
|
|
|
},
|
|
|
|
|
goTel($item) {
|
|
|
|
|
if ($item) {
|
|
|
|
|
|