jufubao-base 1.0.303 → 1.0.304-beta1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -767,10 +767,10 @@
|
|
|
767
767
|
</view>
|
|
768
768
|
<!--旅游模块-->
|
|
769
769
|
<view
|
|
770
|
-
v-if="info.
|
|
771
|
-
info.
|
|
772
|
-
info.
|
|
773
|
-
info.
|
|
770
|
+
v-if="info.contacts_v2 &&
|
|
771
|
+
info.contacts_v2['title'] &&
|
|
772
|
+
info.contacts_v2['data'] &&
|
|
773
|
+
info.contacts_v2['data'].length > 0"
|
|
774
774
|
:style="{
|
|
775
775
|
background: backgroundColor,
|
|
776
776
|
border: borderBox,
|
|
@@ -780,15 +780,15 @@
|
|
|
780
780
|
}"
|
|
781
781
|
class="jfb-base-order-detail__body-card jfb-base-order-detail__body-booking"
|
|
782
782
|
>
|
|
783
|
-
<view class="jfb-base-order-detail__body-delivery-bottom-title"
|
|
783
|
+
<view class="jfb-base-order-detail__body-delivery-bottom-title">{{info.contacts_v2['title']}}</view>
|
|
784
784
|
<view class="jfb-base-order-detail__body-line"></view>
|
|
785
785
|
<view class="jfb-base-order-detail__body-booking-list">
|
|
786
|
-
<view v-for="(item,index) in info.
|
|
787
|
-
<view :style="{color:mainColor,background:bgColor}" class="jfb-base-order-detail__body-booking-list-item-num"
|
|
786
|
+
<view v-for="(item,index) in info.contacts_v2['data']" :key="index" class="jfb-base-order-detail__body-booking-list-item">
|
|
787
|
+
<view :style="{color:mainColor,background:bgColor}" class="jfb-base-order-detail__body-booking-list-item-num">{{biz_code==='travel'?'出行人':'观演人'}}{{index+1}}</view>
|
|
788
788
|
<view class="jfb-base-order-detail__body-booking-list-item-info">
|
|
789
789
|
<view class="jfb-base-order-detail__body-booking-list-item-info-name">{{item.name}}</view>
|
|
790
|
-
<view v-if="item.
|
|
791
|
-
<view v-if="item.
|
|
790
|
+
<view v-if="item.id_card" class="jfb-base-order-detail__body-booking-list-item-info-item">身份证:{{item.id_card}}</view>
|
|
791
|
+
<view v-if="item.phone" class="jfb-base-order-detail__body-booking-list-item-info-item">手机号:{{item.phone}}</view>
|
|
792
792
|
</view>
|
|
793
793
|
</view>
|
|
794
794
|
</view>
|