mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
Routine Update
This commit is contained in:
parent
4c0c7975c0
commit
f39fad9bdc
@ -28,8 +28,8 @@
|
||||
|
||||
<label for="Status" class="control-label x90">当前状态:</label>
|
||||
<select name="Status" id="Status" data-toggle="selectpicker" data-rule="required">
|
||||
<option value="0">正常</option>
|
||||
<option value="1">禁用</option>
|
||||
<option value="0" @if (Model.Status == 0) { <text> selected="selected" </text> }>正常</option>
|
||||
<option value="1" @if (Model.Status == 1) { <text> selected="selected" </text> }>禁用</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
@ -38,8 +38,8 @@
|
||||
|
||||
<label for="Type" class="control-label x90">角色类型:</label>
|
||||
<select name="Type" id="Type" data-toggle="selectpicker" data-rule="required">
|
||||
<option value="0">管理员</option>
|
||||
<option value="1">普通用户</option>
|
||||
<option value="0" @if (Model.Type == 0) { <text> selected="selected" </text> }>管理员</option>
|
||||
<option value="1" @if (Model.Type == 1) { <text> selected="selected" </text> }>普通角色</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -53,7 +53,7 @@
|
||||
label: '当前状态',
|
||||
type: 'select',
|
||||
align: 'center',
|
||||
items:[{'0':'正常'}],
|
||||
items:[{'0':'正常','1':'禁用'}],
|
||||
width:50
|
||||
},
|
||||
{
|
||||
@ -61,7 +61,7 @@
|
||||
label: '角色类型',
|
||||
type: 'select',
|
||||
align: 'center',
|
||||
items: [{ '0': '管理员' }],
|
||||
items: [{ '0': '管理员','1':'普通角色' }],
|
||||
width:50
|
||||
},
|
||||
{
|
||||
|
@ -41,8 +41,8 @@
|
||||
<label for="Status" class="control-label x85">设置状态:</label>
|
||||
|
||||
<select name="Status" id="Status" data-toggle="selectpicker" data-rule="required">
|
||||
<option value="0">正常</option>
|
||||
<option value="1">禁用</option>
|
||||
<option value="0" @if (Model.Status == 0) { <text> selected="selected" </text> }>正常</option>
|
||||
<option value="1" @if (Model.Status == 1) { <text> selected="selected" </text> }>禁用</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
@ -51,8 +51,8 @@
|
||||
<label for="Sex" class="control-label x85">性别:</label>
|
||||
|
||||
<select name="Sex" id="Sex" data-toggle="selectpicker" data-rule="required">
|
||||
<option value="0">男</option>
|
||||
<option value="1">女</option>
|
||||
<option value="0" @if (Model.Status == 0) { <text> selected="selected" </text> }>男</option>
|
||||
<option value="1" @if (Model.Status == 1) { <text> selected="selected" </text> }>女</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
|
Loading…
Reference in New Issue
Block a user