12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <view>
- <text class="desc">领取类型</text>
- <text class="desc">【员工福利】 {{skuText}}</text>
- </view>
- <view class="myView">
- <view>第一步</view>
- <view wx:if="{{isPhone}}">{{phone}}</view>
- <view bindtap="selectNumber" wx:if="{{!isPhone}}">点击选择号码</view>
- </view>
- <view class="myView">
- <view>第二步</view>
- <view>确认信息(无需操作)</view>
- </view>
- <view class="myDesc">
- <view class="myText">
- <text style="color: rgb(176, 176, 176)">姓名</text>
- <text style="color:black">{{workerInfo.workerName}}</text>
- </view>
- <view class="myText">
- <text style="color: rgb(176, 176, 176)">身份证号</text>
- <text style="color:black">{{workerInfo.workerIdcard}}</text>
- </view>
- </view>
- <view class="myView">
- <view>第三步</view>
- <view>填写收获信息</view>
- </view>
- <view class="myInput">
- <view>
- <picker mode="region" bindchange="bindRegionChange" value="{{region}}" custom-item="{{customItem}}">
- <view class="picker">
- 省/市/区:{{region[0]}},{{region[1]}},{{region[2]}}
- </view>
- </picker>
- </view>
- <view> <input type="text" placeholder-class="cs" placeholder="详细地址,具体到门牌号" bindinput="inputAddress" /></view>
- <view> <input maxlength="11" placeholder-class="cs" type="number" placeholder="联系手机号" bindinput="inputPhone" /></view>
- </view>
- <view style="margin-top:40rpx;margin-left:20rpx; display: flex;align-items: center; ">
- <checkbox-group bindchange="checkboxChange">
- <view class="weui-cell__hd">
- <checkbox value="{{isSelect}}" />
- </view>
- </checkbox-group>
-
- <view><text style="color: black;">我已阅读并同意</text><text bindtap="checkProBtn" style="color:#09afff">《2024中国电信用户入网协议》</text></view>
- </view>
- <view class="mybutton">
- <view bindtap="saveOrder">确认领取</view>
- </view>
- <!-- 号码弹窗 -->
- <view class="modal-mask" catchtouchmove="preventTouchMove" wx:if="{{showModal}}">
- <view class="modal-dialog" wx:if="{{showModal}}">
- <view style="color: black;margin: 20px;">请选择号码</view>
- <view class="{{isSelectedIndex==index?'selectedPhoneClass':'phoneClass'}}" wx:for="{{phoneList}}" bindtap="selectdNumber" data-num="{{item}}" data-index="{{index}}" wx:key="*this">
- {{item}}
- </view>
- <view class="phoneButton" bindtap="selectedPhone">选中号码</view>
- <view class="phoneButton" bindtap="hideModal">取消</view>
- </view>
- </view>
|