index.wxml 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <view class="page">
  2. <view class="block1">
  3. <view class="box3">
  4. <view class="wrap1">
  5. <view class="box4">
  6. <view class="outer1" bindtap="click">
  7. <text lines="1" class="info3">{{vtype}}</text>
  8. <icon class="label2 iconfont iconxiajiantou"></icon>
  9. </view>
  10. <view class="box4-2">
  11. <input type="text" name="serch" value="" bindinput="bindinput"></input>
  12. </view>
  13. </view>
  14. <button bindtap="serch" class="box5">
  15. <text lines="1" class="txt1">搜索</text>
  16. </button>
  17. </view>
  18. </view>
  19. <!-- <view class="box6">
  20. <view class="bd1">
  21. <view class="mod1">
  22. <text lines="1" class="word2">未取({{order_count}})</text>
  23. <image src="https://636c-cloud1-7g2wlwzh596f43b6-1306306616.tcb.qcloud.la/ic_xiajiantou%402x.png?sign=f2ea45a48221502bb335335b4bb6486d&t=1645170754" class="label3"></image>
  24. </view>
  25. </view>
  26. <view class="bd2">
  27. <view class="main1">
  28. <view class="block2"></view>
  29. <text lines="1" class="word3">网点</text>
  30. <image src="https://636c-cloud1-7g2wlwzh596f43b6-1306306616.tcb.qcloud.la/ic_xiajiantou%402x.png?sign=f2ea45a48221502bb335335b4bb6486d&t=1645170754" class="icon1"></image>
  31. </view>
  32. </view>
  33. <view class="bd3">
  34. <view class="section1">
  35. <view class="main2"></view>
  36. <text lines="1" class="info4">时间</text>
  37. <image src="https://636c-cloud1-7g2wlwzh596f43b6-1306306616.tcb.qcloud.la/ic_xiajiantou%402x.png?sign=f2ea45a48221502bb335335b4bb6486d&t=1645170754" class="icon2"></image>
  38. </view>
  39. </view>
  40. </view> -->
  41. <view class="display-between header_bottom">
  42. <view bindtap="changestate">未取({{order_count}})</view>
  43. <view>
  44. <picker bindchange="shopschange" value="{{shopsind}}" range="{{shopslist}}" range-key="title">
  45. <view class="itemdisplay">
  46. <view class="font_maxw">{{shopsind==0?'网点':shopslist[shopsind].title}}</view>
  47. <image src="https://636c-cloud1-7g2wlwzh596f43b6-1306306616.tcb.qcloud.la/ic_xiajiantou%402x.png?sign=f2ea45a48221502bb335335b4bb6486d&t=1645170754" class="label3"></image>
  48. </view>
  49. </picker>
  50. </view>
  51. <!-- <view>时间<image src="https://636c-cloud1-7g2wlwzh596f43b6-1306306616.tcb.qcloud.la/ic_xiajiantou%402x.png?sign=f2ea45a48221502bb335335b4bb6486d&t=1645170754" class="label3"></image></view> -->
  52. </view>
  53. <view class="box7" wx:for="{{selectInfo}}" wx:key="index">
  54. <view class="outer2">
  55. <view class="group3">
  56. <text lines="1" class="word4">物流单号:{{item.logistics_no}}</text>
  57. <text lines="1" class="txt2">{{item.order_status}}</text>
  58. </view>
  59. <view class="group4"></view>
  60. <text lines="1" class="word5">目的地:{{item.title}}</text>
  61. <text lines="1" class="txt3">封签号:{{item.seal_no}}</text>
  62. <view class="group5">
  63. <view class="layer1">
  64. <view class="layer2">
  65. <view class="section2-0" wx:for="{{item.thumb_array}}" wx:key="index" wx-item="v">
  66. <image src="{{v.thumb?v.thumb:'/image/home/user.png'}}" class="img1-0"></image>
  67. <text lines="1" class="word6">{{v.title}}</text>
  68. </view>
  69. </view>
  70. </view>
  71. </view>
  72. <text lines="1" class="word7">订单类型:{{item.order_type}}</text>
  73. <text lines="1" class="info5">订单号:{{item.order_no}}</text>
  74. <view class="group6"></view>
  75. <view class="group7">
  76. <view class="layer4" bindtap="goto" data-id="{{item.id}}">
  77. <text lines="1" class="info6">运单详情</text>
  78. </view>
  79. <view class="layer5">
  80. <text lines="1" class="word8" bindtap="tel" data-phone="{{item.phone}}">联系用户</text>
  81. </view>
  82. </view>
  83. </view>
  84. </view>
  85. </view>
  86. </view>
  87. <van-cell title="展示弹出层" is-link />
  88. <van-popup show="{{ show }}" position="bottom" custom-style="height: 30%;" bind:close="onClose">
  89. <van-picker show="{{ show }}" columns="{{ columns }}" bind:change="onChange" default-index="{{ 0 }}" />
  90. </van-popup>