| 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="budgetPeriodDetailController.do?doUpdate" >
- <input id="id" name="id" type="hidden" value="${budgetPeriodDetailPage.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="start" name="start" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${budgetPeriodDetailPage.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='${budgetPeriodDetailPage.end}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">截止日期</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 周期id:
- </label>
- </td>
- <td class="value">
- <input id="periodId" name="periodId" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${budgetPeriodDetailPage.periodId}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">周期id</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 预算年度:
- </label>
- </td>
- <td class="value">
- <input id="periodYear" name="periodYear" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${budgetPeriodDetailPage.periodYear}'/>
- <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="periodIndex" name="periodIndex" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${budgetPeriodDetailPage.periodIndex}'/>
- <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/perioddetail/budgetPeriodDetail.js"></script>
|