1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
- <view slot="info" class="main" style="height:{{infoHeight}}px;">
- <view class="one">
- <form bindsubmit="onSubmit" catchreset="onReset">
- <view class="content" style="display: none;">
- <view class="left">
- <text class="icon iconfont icon-shenfenleibie"></text>
- </view>
- <view class="right">
- <input name="type" value="{{form.type}}" disabled></input>
- </view>
- </view>
- <view class="content">
- <view class="left">
- <text class="icon iconfont icon-shenfenleibie"></text>
- </view>
- <view class="right">
- <picker class="picker" bindchange="typeChange" name="type_name" value="{{form.type_name}}" range="{{typeList}}" range-key="label">
- <view>{{form.type_name||'选择用户类别'}}</view>
- </picker>
- </view>
- </view>
- <view class="content">
- <view class="left">
- <text class="icon iconfont icon-xingming1"></text>
- </view>
- <view class="right">
- <input name="name" value="{{form.name}}" placeholder='请输入姓名' placeholder-class="placeholder"></input>
- </view>
- </view>
- <view class="content">
- <view class="left">
- <text class="icon iconfont icon-dianhua"></text>
- </view>
- <view class="right">
- <input name="phone" type="number" maxlength="11" value="{{form.phone}}" placeholder='请输入电话' placeholder-class="placeholder"></input>
- </view>
- </view>
- <view class="content">
- <view class="left">
- <text class="icon iconfont icon-dianziyouxiang1"></text>
- </view>
- <view class="right">
- <input name="email" value="{{form.email}}" placeholder='请输入电子邮箱' placeholder-class="placeholder"></input>
- </view>
- </view>
- <view class="content">
- <view class="left">
- <text class="icon iconfont icon-dizhi"></text>
- </view>
- <view class="right">
- <input name="address" value="{{form.address}}" placeholder='请输入联系地址' placeholder-class="placeholder"></input>
- </view>
- </view>
- <view class="content">
- <view class="left">
- <text class="icon iconfont icon-bumen"></text>
- </view>
- <view class="right">
- <input name="dept" value="{{form.dept}}" placeholder='请输入部门' placeholder-class="placeholder"></input>
- </view>
- </view>
- <view class="content">
- <view class="left">
- <text class="icon iconfont icon-zhiwu"></text>
- </view>
- <view class="right">
- <input name="zw" value="{{form.zw}}" placeholder='请输入职务' placeholder-class="placeholder"></input>
- </view>
- </view>
- <view class="content">
- <view class="left">
- <text class="icon iconfont icon-commpany"></text>
- </view>
- <view class="right">
- <input name="company" value="{{form.company}}" placeholder='请输入工作单位' placeholder-class="placeholder"></input>
- </view>
- </view>
- <view class="save">
- <button type="warn" size="mini" formType="reset">取消修改</button>
- <button type="primary" size="mini" formType="submit">提交修改</button>
- </view>
- </form>
- </view>
- </view>
- </mobile-main>
|