22 lines
836 B
Plaintext
22 lines
836 B
Plaintext
|
|
<div class="ui_dialog" id="dialog">
|
||
|
|
<form id="grid_form" method="post">
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
<script id="grid_form_temp" type="text/html">
|
||
|
|
<input type="hidden" id="hdID" value="{{id}}"/>
|
||
|
|
<div class="formTitle"><span class="icon icon_menu"></span>详细信息</div>
|
||
|
|
<table class="fromTable">
|
||
|
|
<tr>
|
||
|
|
<th>任务名称:</th>
|
||
|
|
<td><input id="name" name="name" class="ui_validate" type="text"
|
||
|
|
ui-config="required:true,width:400" value="{{name}}"/></td>
|
||
|
|
</tr>
|
||
|
|
|
||
|
|
<tr>
|
||
|
|
<th>审批意见:</th>
|
||
|
|
<td><textarea id="reamrk" name="reamrk" class="ui_validate"
|
||
|
|
ui-config="required:false,width:400,tipAfterInput:true,validType:'length[0,200]'">{{reamrk}}</textarea>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
</script>
|