You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
678 B
25 lines
678 B
2 years ago
|
<!--pages/updateusers/index.wxml-->
|
||
|
<view class="update">
|
||
|
<input
|
||
|
value="{{updateUser_ID}}"
|
||
|
placeholder="请输入要修改用户的学号"
|
||
|
bindblur="inputupdateID"
|
||
|
/>
|
||
|
</view>
|
||
|
<view class="update">
|
||
|
<input
|
||
|
value="{{updateUser_College}}"
|
||
|
placeholder="请输入修改之后的学院(不改则不改变)"
|
||
|
bindblur="inputupdateCollege"
|
||
|
/>
|
||
|
</view>
|
||
|
<view class="update">
|
||
|
<input
|
||
|
value="{{updateUser_Key}}"
|
||
|
placeholder="请输入修改之后的密码(不改则不改变)"
|
||
|
bindblur="inputupdateKey"
|
||
|
/>
|
||
|
</view>
|
||
|
<button class="button" type="primary" bindtap="updateDataFn">修改用户</button>
|
||
|
<button class="button" type="primary" bindtap="getback">返回</button>
|