dxkOrder.wxml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <view>
  2. <text class="desc">领取类型</text>
  3. <text class="desc">【员工福利】 {{skuText}}</text>
  4. </view>
  5. <view class="myView">
  6. <view>第一步</view>
  7. <view wx:if="{{isPhone}}">{{phone}}</view>
  8. <view bindtap="selectNumber" wx:if="{{!isPhone}}">点击选择号码</view>
  9. </view>
  10. <view class="myView">
  11. <view>第二步</view>
  12. <view>确认信息(无需操作)</view>
  13. </view>
  14. <view class="myDesc">
  15. <view class="myText">
  16. <text style="color: rgb(176, 176, 176)">姓名</text>
  17. <text style="color:black">{{workerInfo.workerName}}</text>
  18. </view>
  19. <view class="myText">
  20. <text style="color: rgb(176, 176, 176)">身份证号</text>
  21. <text style="color:black">{{workerInfo.workerIdcard}}</text>
  22. </view>
  23. </view>
  24. <view class="myView">
  25. <view>第三步</view>
  26. <view>填写收获信息</view>
  27. </view>
  28. <view class="myInput">
  29. <view>
  30. <picker mode="region" bindchange="bindRegionChange" value="{{region}}" custom-item="{{customItem}}">
  31. <view class="picker">
  32. 省/市/区:{{region[0]}},{{region[1]}},{{region[2]}}
  33. </view>
  34. </picker>
  35. </view>
  36. <view> <input type="text" placeholder-class="cs" placeholder="详细地址,具体到门牌号" bindinput="inputAddress" /></view>
  37. <view> <input maxlength="11" placeholder-class="cs" type="number" placeholder="联系手机号" bindinput="inputPhone" /></view>
  38. </view>
  39. <view style="margin-top:40rpx;margin-left:20rpx; display: flex;align-items: center; ">
  40. <checkbox-group bindchange="checkboxChange">
  41. <view class="weui-cell__hd">
  42. <checkbox value="{{isSelect}}" />
  43. </view>
  44. </checkbox-group>
  45. <view><text style="color: black;">我已阅读并同意</text><text bindtap="checkProBtn" style="color:#09afff">《2024中国电信用户入网协议》</text></view>
  46. </view>
  47. <view class="mybutton">
  48. <view bindtap="saveOrder">确认领取</view>
  49. </view>
  50. <!-- 号码弹窗 -->
  51. <view class="modal-mask" catchtouchmove="preventTouchMove" wx:if="{{showModal}}">
  52. <view class="modal-dialog" wx:if="{{showModal}}">
  53. <view style="color: black;margin: 20px;">请选择号码</view>
  54. <view class="{{isSelectedIndex==index?'selectedPhoneClass':'phoneClass'}}" wx:for="{{phoneList}}" bindtap="selectdNumber" data-num="{{item}}" data-index="{{index}}" wx:key="*this">
  55. {{item}}
  56. </view>
  57. <view class="phoneButton" bindtap="selectedPhone">选中号码</view>
  58. <view class="phoneButton" bindtap="hideModal">取消</view>
  59. </view>
  60. </view>