1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <view style="background: #f5f5f5; padding: 20rpx 0;">
- <view class="goodslist_boxs">
- <view class="input-group">
- <label>园所</label>
- <picker mode="selector"
- class="picker"
- range="{{gardenList}}"
- range-key="name"
- value="{{gardenIndex}}"
- bindchange="onGardenChange">
- <view>
- {{gardenIndex !== null ? gardenList[gardenIndex].name : '请选择园所'}}
- </view>
- </picker>
- </view>
- <view class="input-group">
- <view style="display: flex;">
- <view style="width: 40%;">
- <picker mode="selector" range="{{levelOptions}}" value="{{selectedLevelIndex}}" bindchange="handleLevelChange">
- <view class="dropdown-item">{{levelOptions[selectedLevelIndex]}} <image class="xiala_boxs" src="{{xiala}}" /></view>
- </picker>
- </view>
- <input bindinput="onContactsInput" style="width: 60%;margin-left: 3%;" type="text" placeholder="请输入姓名" />
- </view>
- </view>
- <view class="input-group">
- <label>手机号码</label>
- <view>
- <input value="{{phone}}" bindinput="onPhoneInput" type="text" placeholder="请输入常用的手机号码" />
- </view>
- </view>
- <view class="input-group">
- <label>验证码</label>
- <view style="display: flex;">
- <input bindinput="onInputCode" style="width: 95%;margin-right: 3%;" type="text" placeholder="请输入验证码" />
- <button bindtap="getCode" class="get-code-btn">获取验证码</button>
- </view>
- </view>
- <button bindtap="bindingevents" class="confirm-btn">确定</button>
- </view>
- </view>
|