LinList.wxml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <!--StepPage/pages/report/ShiList/ShiList.wxml-->
  2. <van-dialog id="van-dialog" />
  3. <van-dialog
  4. use-slot
  5. title="审核流程"
  6. show="{{ show_m }}"
  7. show-cancel-button
  8. show-confirm-button='{{fasle}}'
  9. >
  10. <van-steps
  11. steps="{{ steps }}"
  12. active="{{ active }}"
  13. direction="vertical"
  14. active-color="#38f"
  15. />
  16. </van-dialog>
  17. <van-button type="default" class='btn' bindtap="handleReturn">上一页</van-button>
  18. <van-button type="primary" class='btn1' bindtap="handleDetail">详情</van-button>
  19. <van-button type="success" class='btn2' bindtap="handleEdit">编辑</van-button>
  20. <image src="../../../../images/head.png" style="width:100%;height: 250rpx;z-index:-1;margin-top: 180rpx;"></image>
  21. <view class="title">领料单列表</view>
  22. <van-dropdown-menu class="search">
  23. <van-dropdown-item id="item" title="{{ itemTitle }}">
  24. <picker mode="date" value="{{start_date}}" start="2015-01-01" end="2040-12-30" bindchange="bindDateChange1">
  25. <view class="picker">
  26. 起始时间: {{start_date?start_date:'请点击选择时间'}}
  27. </view>
  28. </picker>
  29. <picker mode="date" value="{{end_date}}" start="2015-01-01" end="2040-12-30" bindchange="bindDateChange">
  30. <view class="picker">
  31. 结束时间: {{end_date?end_date:'请点击选择时间'}}
  32. </view>
  33. </picker>
  34. <van-radio-group value="{{ radio }}" bind:change="onChange">
  35. <van-cell-group>
  36. <van-cell title="全部" clickable data-name="3" bind:click="onClick">
  37. <van-radio slot="right-icon" name="3" />
  38. </van-cell>
  39. <van-cell title="已审核" clickable data-name="2" bind:click="onClick">
  40. <van-radio slot="right-icon" name="2" />
  41. </van-cell>
  42. <van-cell title="审核中" clickable data-name="1" bind:click="onClick">
  43. <van-radio slot="right-icon" name="1" />
  44. </van-cell>
  45. <van-cell title="未审核" clickable data-name="0" bind:click="onClick">
  46. <van-radio slot="right-icon" name="0" />
  47. </van-cell>
  48. </van-cell-group>
  49. </van-radio-group>
  50. <view style="padding: 5px 16px;">
  51. <van-button type="primary" block round bind:click="onConfirm1">
  52. 确认
  53. </van-button>
  54. </view>
  55. </van-dropdown-item>
  56. </van-dropdown-menu>
  57. <view wx:for="{{items}}" wx:key="index" class="{{item.is_choose?'is_item':'item'}}" wx:key="index" data-item="{{item}}" data-index="{{index}}" bindtap="handleChoose">
  58. <view style="position: absolute;right: 10rpx;"><van-button color='red' catchtap='handleDel' data-item="{{item}}">删除</van-button></view>
  59. <view class="item_child"><view class="child_text">订单号:</view>{{item.order_number}}</view>
  60. <view class="item_child"><view class="child_text">物流公司:</view>{{item.logistics_company}}</view>
  61. <view class="item_child"><view class="child_text">物流单号:</view>{{item.logistics_number}}</view>
  62. <view class="item_child"><view class="child_text">单据日期:</view>{{item.crt_time}}</view>
  63. <view class="item_child"><view class="child_text">4s店名称:</view>{{item.four_shop_name}}</view>
  64. <view class="item_child"><view class="child_text">收货状态:</view>{{item.take_status_name}}</view>
  65. <button wx:if='{{(item.send_status==2&&item.take_status==0)?true:false}}' type="primary" catchtap="handleLock" data-item="{{item}}" data-index="{{index}}">签收</button>
  66. <button catchtap="handleClickCheck" data-item="{{item}}" style="background-color: rgb(252, 170, 48);color: black;" wx:if="{{(item.send_status==2&&item.take_status==1)?true:false}}">审核流程</button>
  67. </view>
  68. <view style="padding-bottom: 100rpx;"></view>