Fixed Issues: - globalConfig.js: Added const declarations for 10 undeclared regex variables - globalConfig.js: Fixed getDay() -> getDate() for date comparison - Removed 16 deprecated SQL definitions from 4 map.xml files - Cleaned 615+ commented code blocks from 115 FTL templates Added: - CODE_FIX_PLAN.md: Detailed fix plan for remaining issues Remaining (documented in CODE_FIX_PLAN.md): - 6 async: false AJAX requests to convert - 120+ SELECT * to optimize - 6265+ inline styles to refactor
57 lines
2.6 KiB
Plaintext
57 lines
2.6 KiB
Plaintext
<div id="list_user" style="">
|
|
<div class="grid_toolbar">
|
|
<table style="width:100%;">
|
|
<tr>
|
|
<td style="width:100%;">
|
|
<button type="button" id="btnAddxy" ui-config="style:'button_submit'">添加
|
|
</button>
|
|
<span id="implBtn" style="padding-left: 20px;display:inline-block">
|
|
<form id="fileform" enctype="multipart/form-data" method="post">
|
|
<input type="file" id="fileSelect" name="taskFile" accept=".xls,.xlsx" />
|
|
<button type="button" id="btnImp"
|
|
ui-config="fontIcon:{left:{icon:'fa-file-excel-o',color:'#fff',size:14}},style:'button_submit'">导入
|
|
</button>
|
|
<a title="模版下载" href="${asset_path}/_temp/classuser.xls">模版下载</a>
|
|
</form>
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<table class="grid_data">
|
|
<thead>
|
|
<tr>
|
|
<td style="width: 20px;"><input class="grid_selector" type="checkbox" id="cbAll"/></td>
|
|
<td style="width: 44px;">操作</td>
|
|
<td style="width: 28px;">序号</td>
|
|
<td style="width: 100px;"><span style="color: red">*</span>部门</td>
|
|
<td style="width: 100px;">岗位序列</td>
|
|
<td style="width: 100px;"><span style="color: red">*</span>姓名</td>
|
|
<td style="width: 100px;"><span style="color: red">*</span>工资号</td>
|
|
<td style="width: 100px;">职称</td>
|
|
<td style="width: 100px;">设计师系统级别</td>
|
|
<td style="width: 100px;">移动电话</td>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr class="row{{i%2}}">
|
|
<td><input class="grid_selector" type="checkbox" id="cb{{i}}"/></td>
|
|
<td class="tableCenterTd">
|
|
|
|
<a class="icon icon_rowdelete" title="删除" href="javascript:void(0);"
|
|
onclick="deleteuserRow(this);"></a>
|
|
</td>
|
|
<td>{{i+1}}</td>
|
|
<td><input class="groupname" value="{{value.groupname}}" /></td>
|
|
<td><input class="position" value="{{value.position}}" /></td>
|
|
<td><input class="username" value="{{value.username}}" /></td>
|
|
<td><input class="usercode" value="{{value.usercode}}" /></td>
|
|
<td><input class="zw" value="{{value.zw}}" /></td>
|
|
<td><input class="sjsjb" value="{{value.sjsjb}}" /></td>
|
|
<td><input class="lxfs" value="{{value.lxfs}}" /></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|