| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <%@ 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 type="text/javascript">
- //编写自定义JS代码
- </script>
- </head>
- <body>
- <t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="budgetPeriodController.do?doUpdate" >
- <input id="id" name="id" type="hidden" value="${budgetPeriodPage.id }"/>
- <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">
- 周期年份:
- </label>
- </td>
- <td class="value">
- <input id="periodYear" name="periodYear" type="text" style="width: 150px" class="Wdate" onClick="WdatePicker()" ignore="ignore" value='<fmt:formatDate value='${budgetPeriodPage.periodYear}' type="date" pattern="yyyy-MM-dd"/>'/>
- <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="periodType" name="periodType" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${budgetPeriodPage.periodType}'/>
- <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="name" name="name" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${budgetPeriodPage.name}'/>
- <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="start" name="start" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${budgetPeriodPage.start}'/>
- <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="end" name="end" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${budgetPeriodPage.end}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">截止日期</label>
- </td>
- </tr>
-
- </table>
- </t:formvalid>
- </body>
- <script src = "webpage/cn/com/lzt/budget/period/budgetPeriod.js"></script>
|