| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <%@ 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){
- 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="comageSubsidyController.do?doUpdate" tiptype="1" callback="callback">
- <input id="id" name="id" type="hidden" value="${comageSubsidyPage.id }"/>
- <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label"><span color="red" class="requiredIcon">*</span>
- 最低工作年限:
- </label>
- </td>
- <td class="value">
- <input id="minYears" name="minYears" type="text" style="width: 150px" datatype="n" ignore="checked" value='${comageSubsidyPage.minYears}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">最低工作年限</label>
- </td>
- </tr>
-
- <tr>
- <td align="right">
- <label class="Validform_label"><span color="red" class="requiredIcon">*</span>
- 最低补贴(元):
- </label>
- </td>
- <td class="value">
- <input id="min" name="min" type="text" style="width: 150px" datatype="*" ignore="checked" value='${comageSubsidyPage.min}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">最低补贴</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label"><span color="red" class="requiredIcon">*</span>
- 每年增幅(元):
- </label>
- </td>
- <td class="value">
- <input id="increase" name="increase" type="text" style="width: 150px" datatype="*" ignore="checked" value='${comageSubsidyPage.increase}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">每年增幅</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label"><span color="red" class="requiredIcon">*</span>
- 最高补贴(元):
- </label>
- </td>
- <td class="value">
- <input id="max" name="max" type="text" style="width: 150px" datatype="*" ignore="checked" value='${comageSubsidyPage.max}'/>
- <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" >
- <textarea id="description" style="width:350px;height: 120px;" class="inputxt" rows="4" name="description" ignore="ignore" >${comageSubsidyPage.description}</textarea>
- <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/comagesubsidy/comageSubsidy.js"></script>
|