point.wxml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <view class="page">
  2. <view class="box1">
  3. <view class="mod3">
  4. <text lines="1" class="word2">你管理了多个代收点,请选择一个</text>
  5. </view>
  6. <view class="mod4">
  7. <view class="outer2">
  8. <view hidden="true" class="city" bindtap="city">
  9. <text lines="1" class="info2">{{vtype}}</text>
  10. <image src="https://636c-cloud1-7g2wlwzh596f43b6-1306306616.tcb.qcloud.la/ic_xiajiantou%402x.png?sign=0f88c28f4bb4eb880a6af2fb54468091&t=1645189205" class="icon2"></image>
  11. </view>
  12. <view class="section1">
  13. <view class="group2">
  14. <view hidden="true" class="mod5"></view>
  15. <input type="text" name="serch" model:value="{{keyword}}" bindinput="bindinput" placeholder-style="font-size:12px" placeholder="输入代收点名称或编号"></input>
  16. </view>
  17. <view hidden="true" class="group3">
  18. <view class="section2"></view>
  19. </view>
  20. </view>
  21. <button bindtap="gettasklist" class="section3">
  22. <text lines="1" class="info3" >搜索</text>
  23. </button>
  24. </view>
  25. </view>
  26. <view class="mod6">
  27. <view class="layer1">
  28. <view class="group4">
  29. <text lines="1" class="word4">代收点列表</text>
  30. <text lines="1" class="txt3">共{{taskInfo.length}}组</text>
  31. </view>
  32. <view class="group5"></view>
  33. </view>
  34. </view>
  35. <view class="mod7" wx:for="{{taskInfo}}" wx:key="index">
  36. <navigator url="index?id={{item.id}}" >
  37. <view class="group6">
  38. <view class="bd1">
  39. <view class="mod8">
  40. <van-image width="80rpx" height="80rpx" lazy-load src="{{item.thumb==''?'/image/home/pic.png':item.thumb}}" />
  41. </view>
  42. </view>
  43. <view class="bd2">
  44. <text lines="1" class="txt4">{{item.title}}</text>
  45. <view class="group7">
  46. <view hidden="true" class="mod9"></view>
  47. <text lines="1" class="{{item.is_online==1?'word5':'word8-0'}}">代收点</text>
  48. <text lines="1" class="info4">{{item.address}}</text>
  49. </view>
  50. </view>
  51. <view class="bd3 {{index==0?'':'nobg'}}" >
  52. <text wx:if="{{index==0}}" lines="1" class="word6">距离最近</text>
  53. </view>
  54. <text lines="1" class="word7">{{item.distance}}km</text>
  55. </view>
  56. <view class="group8">
  57. <view class="group9"></view>
  58. </view>
  59. </navigator>
  60. </view>
  61. <view class="mod13"></view>
  62. </view>
  63. </view>
  64. <van-popup show="{{ show }}" position="bottom" bind:close="onClose">
  65. <van-picker show="{{ show }}" columns="{{ columns }}" default-index="{{ 1 }}" bind:change="onChange" />
  66. </van-popup>