fifth.wxml 1007 B

12345678910111213141516171819
  1. <cover-image src="../../../images/head.png"></cover-image>
  2. <view class="title">4.选择产品套餐</view>
  3. <view class="item_content">
  4. <view style="width:48%">
  5. <view wx:for="{{productList}}" wx:key="index" class="item_content_shop {{item.is_choose?'choose':'unchoose'}}" bindtap="handleChoose" data-item='{{item}}' data-index='{{index}}'>
  6. {{item.title}}
  7. </view>
  8. </view>
  9. <view style="width: 48%">
  10. <view wx:for="{{itemList}}" wx:key="index" class="item_content_shop_child {{item.is_choose?'choose':'unchoose'}}" bindtap="handleChooseItem" data-item='{{item}}' data-index='{{index}}'>
  11. {{item.title}}
  12. </view>
  13. </view>
  14. </view>
  15. <view class="btn">
  16. <van-button color="linear-gradient(to top, #626365, #ffffff)" class="btn_item" bindtap="handleReturn"><text class="font_item">上一步</text></van-button>
  17. <van-button disabled='{{allowNext?false:true}}' color="linear-gradient(to top, #626365, #ffffff)" class="btn_item" bindtap="handleNext"> <text class="font_item">下一步</text></van-button>
  18. </view>