| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/context/mytags.jsp"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>工资策略表</title>
- <t:base type="jquery,easyui,tools,DatePicker"></t:base>
- <script src="plug-in/layer/layer.js"></script>
- <script>
- function btn_ok(){
- $("#btnsub").click();
- }
- function callback(data){
-
-
- if(data.success){
- layer.alert(data.msg, function(index){
- window.location.href="wagestrategyController.do?list"
- layer.close(index);
- });
- }
- else{
- layer.alert(data.msg);
- }
- }
- </script>
- <script type="text/javascript">
- //编写自定义JS代码
- </script>
- </head>
- <body>
- <t:formvalid formid="formobj" dialog="false" usePlugin="password" layout="table" action="wagestrategyController.do?doAdd" tiptype="1" callback="callback">
- <input id="id" name="id" type="hidden" value="${wagestrategyPage.id }"/>
- <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">
- 区域:
- </label>
- </td>
- <td class="value">
- <t:dictSelect field="zone" type="list" dictTable="t_b_zone" dictField="id" dictText="name" hasLabel="false" title="区域" ></t:dictSelect>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">区域</label>
- </td>
- </tr>
- <tr>
- <td align="right" style="width: 60px;">
- <label class="Validform_label">
- <span color="red" class="requiredIcon">*</span>职务名称:
- </label>
- </td>
-
- <td class="value" style="min-width: 300px">
- <%--update-start--Author:jg_renjie Date:20160320 for:#942 【组件封装】所属部门弹出模式,目前是列表,得改造成树方式--%>
- <input id="dutiesName" name="dutiesName" type="text" readonly="readonly" class="inputxt" datatype="*" value="${dutiesName}" placeholder="请选择职务名称" onclick="openDepartmentSelect() " ignore="ignore">
- <input id="dutiesId" name="dutiesId" type="hidden" value="${dutiesId}">
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="departSearch" onclick="openDepartmentSelect()">选择</a>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="departRedo" onclick="callbackClean()">清空</a>
- <%--update-end--Author:jg_renjie Date:20160320 for:#942 【组件封装】所属部门弹出模式,目前是列表,得改造成树方式--%>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">职务名称</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 区域-基础职务津贴:
- </label>
- </td>
- <td class="value">
- <input id="subsidy" name="subsidy" type="text" style="width: 150px" class="inputxt" datatype="/^(-?\d+)(\.\d+)?$/" ignore="ignore" />
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">区域-基础职务津贴</label>
- </td>
- </tr>
-
- <tr>
- <td height="50px" align="center" colspan="2">
- <a style="margin-left:80px" href="#" class="easyui-linkbutton l-btn" plain="true" iconcls="icon-le-back" onclick="history.go(-1)">返回</a>
- <div style="display:none"><input type="submit" id ="btnsub" value=""/></div>
- <a href="#" class="easyui-linkbutton l-btn" iconcls="icon-le-ok" onclick="btn_ok()">提交</a>
- </td>
- </tr>
- </table>
- </t:formvalid>
- </body>
- <script src = "webpage/cn/com/lzt/wagestrategy/wagestrategy.js"></script>
|