27 lines
929 B
Plaintext
27 lines
929 B
Plaintext
|
|
<%@ page contentType="text/html;charset=UTF-8"%>
|
||
|
|
|
||
|
|
|
||
|
|
<div id="auAddDiv" class="hide auDiv">
|
||
|
|
<form id="dictTypeAddForm" method="POST" onsubmit="return false;" >
|
||
|
|
<table id="bigTable" cellspacing="0" cellpadding="0" border="0" class="customTable">
|
||
|
|
<tbody>
|
||
|
|
<tr class="FormData">
|
||
|
|
<td class="CaptionTD"><font color="red">*</font>字典类型名称:</td>
|
||
|
|
<td class="DataTD">
|
||
|
|
<input type="text" jyValidate="required" name="name" id="name" style="width:50%;" class="FormElement ui-widget-content ui-corner-all">
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr class="FormData">
|
||
|
|
<td class="CaptionTD"><font color="red">*</font>是否启用:</td>
|
||
|
|
<td class="DataTD">
|
||
|
|
<select id="isActive" name="isActive">
|
||
|
|
<option value="1" selected="selected" >是</option>
|
||
|
|
<option value="0" >否</option>
|
||
|
|
</select>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
</form>
|
||
|
|
</div>
|