|
@@ -1,19 +1,23 @@
|
|
|
<!--pages/ZCWDK/add/add.wxml-->
|
|
|
<view>
|
|
|
- <view class="inputss">
|
|
|
- <view style="float: left; margin-right: 20rpx; font-size: 24rpx;font-family: PingFang SC;font-weight: 400;color: #333333;">手机号: </view>
|
|
|
- <input class="weui-input" style=" border-bottom: 1rpx #B8B8B8 solid;" auto-focus placeholder="请输入手机号"/>
|
|
|
- </view>
|
|
|
- <view class="inputss">
|
|
|
- <view style="float: left; margin-right: 20rpx; font-size: 24rpx;font-family: PingFang SC;font-weight: 400;color: #333333;">部门: </view>
|
|
|
- <input class="weui-input" style=" border-bottom: 1rpx #B8B8B8 solid;" auto-focus placeholder="请输入部门"/>
|
|
|
- </view>
|
|
|
- <view class="inputss">
|
|
|
- <view style="float: left; margin-right: 20rpx; font-size: 24rpx;font-family: PingFang SC;font-weight: 400;color: #333333;">问题: </view>
|
|
|
- <input class="weui-input" style=" border-bottom: 1rpx #B8B8B8 solid;" auto-focus placeholder="请输入内容"/>
|
|
|
- </view>
|
|
|
- <view class="btns">
|
|
|
- <view class="box qx">取消</view>
|
|
|
- <view class="box qr">确认</view>
|
|
|
- </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>
|