index.wxml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. 客户地址:{{item.address|| '--'}}
  24. </view>
  25. <view class="subfield" style="margin-top: 8rpx;">
  26. <text style="margin-right: 6rpx;">品号:{{item.itemno}}</text>
  27. <text>申请单价:{{handleHide.verify(item.price,'totalamount',privacyFieldC)}}</text>
  28. </view>
  29. <view class="subfield" style="margin-top: 8rpx;">
  30. <text style="margin-right: 6rpx;">数量:{{item.qty||' --'}}</text>
  31. <text>金额:{{handleHide.verify(item.amount,'totalamount',privacyFieldC)}}</text>
  32. </view>
  33. <view class="subfield" style="margin-top: 8rpx;">
  34. <text style="margin-right: 6rpx;">保修卡号:{{item.cardno}}</text>
  35. <text>是否保内:{{item.billingstatus||' --'}}</text>
  36. </view>
  37. <view class="subfield" style="margin-top: 8rpx;">
  38. 备注:{{item.remarks||' --'}}
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. <block wx:if="{{list.length==0}}">
  45. <Yl_Empty />
  46. <view style="height: 150rpx;" />
  47. </block>
  48. <wxs src="/utils/hidePrice.wxs" module="handleHide" />