diao.wxml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <van-overlay show="{{show}}" z-index='999'>
  2. <view class="show_box">
  3. <view class="show_title"> <van-search style="width: 85%;" value="{{ searchValue }}" placeholder="请输入搜索关键词" bind:search="onSearch"
  4. />
  5. <view style="margin-right: 40rpx;color: rgb(146, 171, 218);" bindtap="handleCancel">取消</view>
  6. </view>
  7. <scroll-view style="height: 88%;" scroll-y="true">
  8. <view wx:for="{{searchList}}" wx:key="index" data-item="{{item}}" data-index="{{index}}" class="show_item" bindtap="handleChoose">
  9. {{item.title}}
  10. </view>
  11. </scroll-view>
  12. </view>
  13. </van-overlay>
  14. <van-overlay show="{{show_out}}" z-index='999'>
  15. <view class="show_box">
  16. <view class="show_title"> <van-search style="width: 85%;" value="{{ searchValue_out }}" placeholder="请输入搜索关键词" bind:search="onSearchOut"
  17. />
  18. <view style="margin-right: 40rpx;color: rgb(146, 171, 218);" bindtap="handleCancelOut">取消</view>
  19. </view>
  20. <scroll-view style="height: 88%;" scroll-y="true">
  21. <view wx:for="{{searchListOut}}" wx:key="index" data-item="{{item}}" data-index="{{index}}" class="show_item" bindtap="handleChooseOut">
  22. {{item.title}}
  23. </view>
  24. </scroll-view>
  25. </view>
  26. </van-overlay>
  27. <van-overlay show="{{show_in}}" z-index='999'>
  28. <view class="show_box">
  29. <view class="show_title"> <van-search style="width: 85%;" value="{{ searchValue_in }}" placeholder="请输入搜索关键词" bind:search="onSearchIn"
  30. />
  31. <view style="margin-right: 40rpx;color: rgb(146, 171, 218);" bindtap="handleCancelIn">取消</view>
  32. </view>
  33. <scroll-view style="height: 88%;" scroll-y="true">
  34. <view wx:for="{{searchListIn}}" wx:key="index" data-item="{{item}}" data-index="{{index}}" class="show_item" bindtap="handleChooseIn">
  35. {{item.title}}
  36. </view>
  37. </scroll-view>
  38. </view>
  39. </van-overlay>
  40. <image src="../../../images/head.png" style="width:100%;height: 250rpx;z-index:-1"></image>
  41. <view class="title">调拨单</view>
  42. <view class="item_content">
  43. <van-cell-group style="width: 100%;">
  44. <van-field
  45. label='所属集团'
  46. title-width='4.8rem'
  47. value="{{ company_name }}"
  48. placeholder="请选择"
  49. clearable
  50. required
  51. readonly
  52. use-button-slot
  53. >
  54. <van-button wx:if="{{set_status!='is_detail'}}" slot="button" size="small" type="primary" bindtap='handleClick'>
  55. 选择
  56. </van-button>
  57. </van-field>
  58. <van-field
  59. label='调出仓库'
  60. title-width='4.8rem'
  61. value="{{ out_title }}"
  62. placeholder="请选择"
  63. clearable
  64. required
  65. readonly
  66. use-button-slot
  67. >
  68. <van-button slot="button" size="small" type="primary" bindtap='handleClickOut' wx:if="{{company_id&&set_status!='is_detail'}}">
  69. 选择
  70. </van-button>
  71. </van-field>
  72. <van-field
  73. label='调入仓库'
  74. title-width='4.8rem'
  75. value="{{ in_title }}"
  76. placeholder="请选择"
  77. clearable
  78. readonly
  79. required
  80. use-button-slot
  81. >
  82. <van-button slot="button" size="small" type="primary" bindtap='handleClickIn' wx:if="{{company_id&&set_status!='is_detail'}}">
  83. 选择
  84. </van-button>
  85. </van-field>
  86. <van-field
  87. label='物流信息'
  88. title-width='4.8rem'
  89. value="{{ mark }}"
  90. placeholder="请输入"
  91. clearable
  92. bind:blur='handleChangeremark'
  93. >
  94. </van-field>
  95. <view wx:key="index" class="image_item">
  96. <image style="width: 100%;height: 100%;" src=""></image>
  97. </view>
  98. </van-cell-group>
  99. </view>
  100. <view class="btn">
  101. <van-button color="linear-gradient(to top, #626365, #ffffff)" class="btn_item" bindtap="handleReturn">
  102. <text class="font_item">上一步</text>
  103. </van-button>
  104. <van-button color="linear-gradient(to top, #626365, #ffffff)" class="btn_item" bindtap="handleNext" disabled='{{(company_id&&to_storehouse_id&&from_storehouse_id)?false:true}}'> <text class="font_item">下一步</text></van-button>
  105. </view>