ticketHandle.wxml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <!--index.wxml-->
  2. <wxs src="../../../utils/formatFuc.wxs" module="format" />
  3. <view class="container">
  4. <view class="common-module">
  5. <view class="select-block result-select" bindtap="selectDate">
  6. <view class="select-label"><text style="color:red;">*</text>
  7. 处理结果</view>
  8. <view class="select-value result-name {{ orderInfo.date=='请选择(必填)'?'default-value':''}}">
  9. <view wx:for="{{resultName}}" wx:key="index">{{ item}}
  10. </view>
  11. </view>
  12. <van-icon name="arrow" size="30rpx" color="#969799" />
  13. </view>
  14. <view class="scroll-wrapper" wx:if="{{scrollShow}}" >
  15. <view class="scroll-title">
  16. <view class="cancel-btn" bindtap="resultCancel">取消</view>
  17. <view class="conf-btn" bindtap="resultConf">确定</view>
  18. </view>
  19. <scroll-view scroll-y="true" style="height: 520rpx;" class="worker-scroll">
  20. <view class="worker-item {{format.isSelectResult(result,item.id)?'selected-result':''}}" wx:for="{{resultList}}" wx:key="index" data-id="{{item.id}}" data-name="{{item.name}}" bindtap="workerTap"
  21. >
  22. <view>{{item.name}}</view>
  23. <van-icon name="success" color="#09afff" wx:if="{{format.isSelectResult(result,item.id)}}"/>
  24. </view>
  25. </scroll-view>
  26. </view>
  27. <view class="input-block ">
  28. <view class="input-label">现金补偿</view>
  29. <input class="input-value disable-input" value="{{fines}}" type="number" placeholder="请输入现金补偿" bindinput="finesInput" placeholder-class="input-placeholder" />
  30. </view>
  31. </view>
  32. <view class="upload-block">
  33. <view style="margin-bottom:20rpx;">上传图片</view>
  34. <van-uploader file-list="{{ fileList }}" max-count="{{max}}" bind:after-read="afterRead" bind:delete="deleteImage" wx:if="{{uploadShow}}" deletable="{{ !isFinish }}"/>
  35. </view>
  36. <view class="receipt-content">
  37. <view class="title">
  38. <text>*</text>处理备注</view>
  39. <textarea
  40. class="textarea"
  41. bindinput="bindMemo" value="{{memo}}" placeholder='请输入处理备注' disabled="{{isFinish}}" placeholder-style="line-height:48rpx;color: #979694;"></textarea>
  42. </view>
  43. <view class="edit-btn" bindtap="confTap">确认</view>
  44. <van-popup show="{{selectVisible}}" position="bottom">
  45. <van-picker
  46. show-toolbar
  47. title=" "
  48. columns="{{ timeList }}"
  49. bind:cancel="onPickerCancel"
  50. bind:confirm="onPickerConfirm"
  51. />
  52. </van-popup>
  53. </view>