22 lines
953 B
Plaintext
22 lines
953 B
Plaintext
|
|
<div class="ui_dialog" id="dialog_person">
|
||
|
|
<form id="grid_form_person" method="post">
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
<script id="grid_form_temp_person" type="text/html">
|
||
|
|
<input type="hidden" id="hdIDPerson" value="{{id}}"/>
|
||
|
|
<div class="formTitle"><span class="icon icon_menu"></span>添加人员</div>
|
||
|
|
<table class="fromTable">
|
||
|
|
<tr>
|
||
|
|
<th>姓名:</th>
|
||
|
|
<td>
|
||
|
|
<input id="txtperson" name="person" class="ui_validate"
|
||
|
|
ui-config="required:true,width:200,validType:'length[0,50]',valueField:'usercode',textField:'username'" value="{{user}}" />
|
||
|
|
</td>
|
||
|
|
<th>工资号:</th>
|
||
|
|
<td>
|
||
|
|
<input id="txtcard" name="card" class="ui_validate"
|
||
|
|
ui-config="required:true,width:200,validType:'length[0,50]',valueField:'usercode',textField:'username'" value="{{user_id}}" />
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
</script>
|