| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <view class="head">
- <view class="count">核销产品明细</view>
- <view wx:if="{{!disabled}}" class="expand">
- <navigator url="#" class="but" bindtap="addProduct">
- <van-icon name="plus" />
- </navigator>
- </view>
- </view>
- <view class="product-item" wx:for="{{list}}" wx:key="sa_quotedprice_itemsid">
- <view class="product" url="#">
- <view wx:if="{{!disabled}}" class="iconfont icon-guanlian-shanchu" data-item="{{item}}" bind:tap="deleteItem" />
- <view class="mian">
- <view class="dec">
- <view class="title">{{item.itemname}}</view>
- <view class="subfield">
- 配件申请单号:{{item.sonum|| '--'}}
- </view>
- <view class="subfield" style="margin-top: 8rpx;">
- <text style="margin-right: 6rpx;">客户名称:{{item.name|| '--'}}</text>
- <text>客户手机号:{{item.phonenumber|| '--'}}</text>
- </view>
- <view class="subfield" style="margin-top: 8rpx;">
- <text style="margin-right: 6rpx;">品号:{{item.itemno}}</text>
- <text>单价:{{handleHide.verify(item.price,'核销金额',privacyFieldC)}}</text>
- </view>
- <view class="subfield" style="margin-top: 8rpx;">
- <text style="margin-right: 6rpx;">数量:{{item.qty||' --'}}</text>
- <text>金额:{{handleHide.verify(item.amount,'核销金额',privacyFieldC)}}</text>
- </view>
- <view class="subfield" style="margin-top: 8rpx;">
- <text style="margin-right: 6rpx;">保修卡号:{{item.cardno}}</text>
- <text>是否保内:{{item.billingstatus||' --'}}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <block wx:if="{{list.length==0}}">
- <Yl_Empty />
- <view style="height: 150rpx;" />
- </block>
- <wxs src="/utils/hidePrice.wxs" module="handleHide" />
|