1234567891011121314151617181920212223 |
- <!--pages/ZCWDK/add/add.wxml-->
- <view>
- <form catchsubmit="formSubmit">
- <view class="inputss">
- <text style="float: left; margin-right: 20rpx; font-size: 24rpx;font-family: PingFang SC;font-weight: 400;color: #333333;">手机号: </text>
- <input name='phone' class="weui-input" type='number' style=" border-bottom: 1rpx #B8B8B8 solid;" maxlength="11" bindinput='blurPhone' auto-focus placeholder="请输入手机号" />
- </view>
- <view class="inputss">
- <text style="float: left; margin-right: 20rpx; font-size: 24rpx;font-family: PingFang SC;font-weight: 400;color: #333333;" space="emsp">部 门:</text>
- <picker name='dept' bindchange="bindPickerChange" value="{{deptChoose}}" range="{{deptList}}">
- <input class="weui-input" style=" border-bottom: 1rpx #B8B8B8 solid;" auto-focus placeholder="请选择部门" disabled="true" value="{{deptChoose}}" />
- </picker>
- </view>
- <view class="inputss">
- <text style="float: left; margin-right: 20rpx; font-size: 24rpx;font-family: PingFang SC;font-weight: 400;color: #333333;" space="emsp">问 题:</text>
- <input name="remark" class="weui-input" style=" border-bottom: 1rpx #B8B8B8 solid;" auto-focus placeholder="请输入内容" />
- </view>
- <view class="btns">
- <view class="box qx" bindtap="back">取消</view>
- <button class="box qr" formType="submit">确认</button>
- </view>
- </form>
- </view>
|