29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
|
|
<div class="ui_dialog" id="itemDialog">
|
||
|
|
<form id="itemForm" method="post">
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
<script id="grid_form_item" type="text/html">
|
||
|
|
<input type="hidden" name="id" value="{{id}}"/>
|
||
|
|
<input id="dictId" type="hidden" name="dictId" value="{{dictid}}"/>
|
||
|
|
<table class="fromTable">
|
||
|
|
<tr>
|
||
|
|
<th>名称:</th>
|
||
|
|
<td><input name="name" class="ui_validate" type="text" style="width: 400px"
|
||
|
|
ui-config="required:true,tipAfterInput:true" value="{{name}}"/></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<th>值:</th>
|
||
|
|
<td><input name="value" class="ui_validate" type="text" value="{{value}}"
|
||
|
|
ui-config="required:true,width:400"/>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<th>状态:</th>
|
||
|
|
<td>
|
||
|
|
<select id="status" name="status" class="ui_validate"
|
||
|
|
ui-config="required:true,tipAfterInput:true,width:400,dictKey:'isenable'" value="{{status}}">
|
||
|
|
</select>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
</script>
|