dk-step.wxml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <wxs src='/utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
  2. <view class="ct-wx-step">
  3. <view class='ct-wx-cell-list' wx:key="{{item}}" wx:for="{{stepList}}">
  4. <view style="display: flex;">
  5. <view class='ct-wx-cell-point default'></view>
  6. <view style="height:10px;color:#E4E4E4;font-size: 12px; margin-left: 2vw;">
  7. {{ wxmlUtil.formatDate(item.makeTime)}}
  8. </view>
  9. </view>
  10. <view class='ct-wx-cell-line '>
  11. <view wx:if="{{item.type === '核销信息'}}">
  12. <view class="dk-card-outer-class">
  13. <view class="dk-card-class">
  14. <view class="item-class">
  15. <view class="item-title-class">{{item.type}}
  16. <view style="font-size: 13px;font-weight: 500;">{{item.no ? item.no : ''}}</view>
  17. </view>
  18. <view>
  19. <dk-tag type="primary" padding="0 20rpx" height="40rpx" color="#9FAEE5" textColor="#FFFFFF" radius="5rpx" roundFlag="{{true}}" value="{{!expand?'展开':'收起'}}" catchtap="expandCard" data-item="{{card}}" data-index="{{cardIndex}}"></dk-tag>
  20. </view>
  21. </view>
  22. <view></view>
  23. <view style="display:flex;padding: 5vw;" border="{{ false }}">
  24. <view style="color:#95A8CB;font-size:13px;place-self:center;margin-right: 5vw;">核销金额 </view>
  25. <view>
  26. <dk-cell left="0rpx" center="center" fontSize="15" contentFontSize="18" contentColor="#1B365D" spaceWidth="0" contentFontWeight="700" amount="{{true}}" content="{{item.sumShouldHandle?item.sumShouldHandle:0}}"></dk-cell>
  27. </view>
  28. </view>
  29. <view style="display:flex;padding: 5vw;" border="{{ false }}">
  30. <view style="color:#95A8CB;font-size:13px;place-self:center;margin-right: 5vw;">优惠金额 </view>
  31. <view>
  32. <dk-cell left="0rpx" center="center" fontSize="15" contentFontSize="18" contentColor="#1B365D" spaceWidth="0" contentFontWeight="700" amount="{{true}}" content="{{item.sumWaiveAmt?item.sumWaiveAmt:0}}"></dk-cell>
  33. </view>
  34. </view>
  35. <view style="display:flex;padding: 5vw;" border="{{ false }}">
  36. <view style="color:#95A8CB;font-size:13px;place-self:center;margin-right: 5vw;">预付抵扣 </view>
  37. <view>
  38. <dk-cell left="0rpx" center="center" fontSize="15" contentFontSize="18" contentColor="#1B365D" spaceWidth="0" contentFontWeight="700" amount="{{true}}" content="{{item.sumUsePaymentResidue?item.sumUsePaymentResidue:0}}"></dk-cell>
  39. </view>
  40. </view>
  41. <view style="display:flex;padding: 5vw;" border="{{ false }}">
  42. <view style="color:#95A8CB;font-size:13px;place-self:center;margin-right: 5vw;">收款金额 </view>
  43. <view>
  44. <dk-cell left="0rpx" center="center" fontSize="15" contentFontSize="18" contentColor="#1B365D" spaceWidth="0" contentFontWeight="700" amount="{{true}}" content="{{item.sumAmtRec?item.sumAmtRec:0}}"></dk-cell>
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. <view wx:else>
  51. <dk-goos-list-step list="{{item.itemResponseList}}" no="no" title="{{item.type}}" titleCol="skuName" titleTagCol="brandName" descCol="skuCode" priceCol="pricePur" quantityCol="itemQty"></dk-goos-list-step>
  52. </view>
  53. </view>
  54. </view>
  55. </view>