index.wxml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <view class="head">
  2. <view class="count">核销产品明细</view>
  3. <view wx:if="{{!disabled}}" class="expand">
  4. <navigator url="#" class="but" bindtap="addProduct">
  5. <van-icon name="plus" />
  6. </navigator>
  7. </view>
  8. </view>
  9. <view class="product-item" wx:for="{{list}}" wx:key="sa_quotedprice_itemsid">
  10. <view class="product" url="#">
  11. <view wx:if="{{!disabled}}" class="iconfont icon-guanlian-shanchu" data-item="{{item}}" bind:tap="deleteItem" />
  12. <view class="mian">
  13. <view class="dec">
  14. <view class="title">{{item.itemname}}</view>
  15. <view class="subfield">
  16. 配件申请单号:{{item.sonum|| '--'}}
  17. </view>
  18. <view class="subfield" style="margin-top: 8rpx;">
  19. <text style="margin-right: 6rpx;">客户名称:{{item.name|| '--'}}</text>
  20. <text>客户手机号:{{item.phonenumber|| '--'}}</text>
  21. </view>
  22. <view class="subfield" style="margin-top: 8rpx;">
  23. <text style="margin-right: 6rpx;">品号:{{item.itemno}}</text>
  24. <text>单价:{{handleHide.verify(item.price,'核销金额',privacyFieldC)}}</text>
  25. </view>
  26. <view class="subfield" style="margin-top: 8rpx;">
  27. <text style="margin-right: 6rpx;">数量:{{item.qty||' --'}}</text>
  28. <text>金额:{{handleHide.verify(item.amount,'核销金额',privacyFieldC)}}</text>
  29. </view>
  30. <view class="subfield" style="margin-top: 8rpx;">
  31. <text style="margin-right: 6rpx;">保修卡号:{{item.cardno}}</text>
  32. <text>是否保内:{{item.billingstatus||' --'}}</text>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. <block wx:if="{{list.length==0}}">
  39. <Yl_Empty />
  40. <view style="height: 150rpx;" />
  41. </block>
  42. <wxs src="/utils/hidePrice.wxs" module="handleHide" />