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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jufubao-base",
3
- "version": "1.0.303",
3
+ "version": "1.0.304-beta1",
4
4
  "private": false,
5
5
  "description": "聚福宝业务组件基础插件包",
6
6
  "main": "index.js",
@@ -767,10 +767,10 @@
767
767
  </view>
768
768
  <!--旅游模块-->
769
769
  <view
770
- v-if="info.extras &&
771
- info.extras.travel_booking_info &&
772
- info.extras.travel_booking_info['travelers'] &&
773
- info.extras.travel_booking_info['travelers'].length > 0"
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">预订信息</view>
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.extras.travel_booking_info.travelers" :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">游客{{index+1}}</view>
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.id_card_no" class="jfb-base-order-detail__body-booking-list-item-info-item">身份证:{{item.id_card_no}}</view>
791
- <view v-if="item.mobile" class="jfb-base-order-detail__body-booking-list-item-info-item">手机号:{{item.mobile}}</view>
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>