jufubao-base 1.0.305 → 1.0.306
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
|
@@ -784,11 +784,9 @@
|
|
|
784
784
|
<view class="jfb-base-order-detail__body-line"></view>
|
|
785
785
|
<view class="jfb-base-order-detail__body-booking-list">
|
|
786
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">{{
|
|
787
|
+
<view :style="{color:mainColor,background:bgColor}" class="jfb-base-order-detail__body-booking-list-item-num">{{item.sub_title}}</view>
|
|
788
788
|
<view class="jfb-base-order-detail__body-booking-list-item-info">
|
|
789
|
-
<view class="jfb-base-order-detail__body-booking-list-item-info-
|
|
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>
|
|
789
|
+
<view class="jfb-base-order-detail__body-booking-list-item-info-item" v-for="(ls,index) in item['contact']" :key="index">{{ls.label}}:{{ls.value}}</view>
|
|
792
790
|
</view>
|
|
793
791
|
</view>
|
|
794
792
|
</view>
|