add-confirm.wxml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!-- 应用集合 -->
  2. <view class="panel-class" wx:for="{{regions}}" data-item="{{item}}" wx:key="index" title="{{item.activityItemDescribe}}">
  3. <view class="app-name">{{item.activityItemDescribe}} </view>
  4. <view style="background: #fff;border-radius: 15rpx;">
  5. <view style="display: flex;flex-wrap: wrap;padding: 43rpx 0;">
  6. <view class="app-item" style="width:25%;text-align: center;" icon-class="index-grid-item-icon-class" text-class="index-grid-item-text-class" content-class="index-grid-item-class" wx:for="{{item.funIds}}" wx:for-item="item2" data-code="{{item2.FunctionCode}}" data-url="{{item2.FormName}}" data-item="{{item2}}" wx:key="i">
  7. <view wx:if="{{item2.isVip}}" class="vip-icon-view">
  8. <image src="{{imageUrl + 'diamond.png'}} " class="icon-title_diamond" />
  9. </view>
  10. <view style="display: flex;justify-content: center;margin-left: {{editFlag?'20rpx':''}};">
  11. <image src="{{item2.imageUrl}}" style="height: 80rpx;width:80rpx;margin-bottom: 11rpx;"></image>
  12. </view>
  13. <view class="index-grid-item-text-class">{{item2.menu_name}}</view>
  14. </view>
  15. </view>
  16. </view>
  17. </view>
  18. <view class="bottom-class" style="{{'height:' + viewHeight + 'rpx'}}" bind:tap="closeAllTips">
  19. <view class="view-margin">
  20. <view style="display: flex;justify-content: space-between;align-items: center;">
  21. <view>订单详情
  22. <dk-tip slot="label-icon" style="display: inline-block;" id="tipOrd" Up="{{true}}" Right="{{true}}" tipContent='账户有效期标准化至统一到期日' bind:clickTip="closeAllTips" />
  23. </view>
  24. <view>{{userEndDateString}}</view>
  25. </view>
  26. </view>
  27. <view wx:if="{{integral > 0 }}" class="view-margin" style="text-align: right;margin-top: 35rpx;">
  28. 减{{integral}}云币
  29. <dk-tip slot="label-icon" style="display: inline-block;" id="tipIntegral" Up="{{true}}" Left="{{true}}" tipContent='每{{integralTacticItem.exchangeRate}}云币等于1人民币' bind:clickTip="closeAllTips" />
  30. </view>
  31. <view wx:if="{{couponList.length > 0 && factAmt > 0 }}" class="view-margin" style="text-align: right;margin-top: 35rpx;">
  32. 使用{{couponUse.discount}}折优惠券
  33. </view>
  34. <view class="view-margin" style="display: flex;justify-content:space-between; align-items:center; ">
  35. <view style="display: flex;justify-content: center;align-items: center;">
  36. <view>截止日期:</view>
  37. <dk-cell fontSize="16" amount="{{false}}" contentColor="#FF1810" content="{{userEndDate}}"></dk-cell>
  38. </view>
  39. <view style="display: flex;justify-content: center;align-items: center;">
  40. <view>实付款:</view>
  41. <dk-cell fontSize="16" contentColor="#FF7B1A" content="{{factAmt}}"></dk-cell>
  42. </view>
  43. </view>
  44. <view class="bottom-class-button">
  45. <van-button color="#FF7B1A" custom-style="width:95%;border-radius: 15rpx;" loading="{{loading}}" bind:click="save" type="info">付款
  46. </van-button>
  47. </view>
  48. </view>