1234567891011121314151617181920212223242526272829303132333435363738 |
- <!--pages/role/editOperation.wxml-->
- <view class="container">
- <form bindsubmit="formSubmit" bindreset="formReset">
- <tui-list-cell hover="{{false}}">
- <view class="tui-line-cell">
- <view class="tui-title"><text style="color:red;">*</text>姓名:</view>
- <input placeholder-class="phcolor" class="tui-input" name="realname" placeholder="请输入运维姓名" maxlength="50" catchinput="inputedit" data-name="userInfo.realname" value="{{userInfo.realname}}"/>
- </view>
- </tui-list-cell>
- <tui-list-cell hover="{{false}}">
- <view class="tui-line-cell">
- <view class="tui-title"><text style="color:red;">*</text>账号:</view>
- <input placeholder-class="phcolor" class="tui-input" name="username" placeholder="请输入登录账号"
- maxlength="50" catchinput="inputedit" data-name="userInfo.username" value="{{userInfo.username}}"/>
- </view>
- </tui-list-cell>
- <tui-list-cell hover="{{false}}">
- <view class="tui-line-cell">
- <view class="tui-title"><text style="color:red;">*</text>电话:</view>
- <input placeholder-class="phcolor" class="tui-input" name="telephone" placeholder="请输入电话号码"
- maxlength="11" type="number" catchinput="inputedit" data-name="userInfo.telephone" value="{{userInfo.telephone}}"/>
- </view>
- </tui-list-cell>
- <tui-list-cell hover="{{false}}">
- <view class="tui-line-cell">
- <view class="tui-title">运维密码:</view>
- <input placeholder-class="phcolor" class="tui-input" name="password" placeholder="请输入运维密码" password="true" maxlength="50" catchinput="inputedit" data-name="userInfo.password" value="{{userInfo.password}}"/>
- </view>
- </tui-list-cell>
-
-
- <view class="tui-btn-box">
- <button class="btn-primary margin-bottom-xs" hover-class="btn-hover" formType="submit" type="primary" bindtap="editOperation">提交</button>
- <button class="btn-primary btn-gray" hover-class="btn-gray-hover" formType="reset">重置</button>
- </view>
- </form>
- </view>
|