| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <%@ 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?doAdd" >
- <input id="id" name="id" type="hidden" value="${entity.id }"/>
- <input id="periodId" name="periodId" type="hidden" style="width: 150px" class="inputxt" value="${empty entity.periodId?param.periodId:entity.periodId}" />
- <input id="periodYear" name="periodYear" type="hidden" style="width: 150px" class="inputxt" value="${empty entity.periodYear?param.periodYear:entity.periodYear}" />
- <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="name" name="name" type="text" style="width: 150px" class="inputxt" datatype="*" value="${entity.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" readonly="readonly" class="Wdate" onClick="WdatePicker({dateFmt:'yyyy-MM-dd'})" datatype="*"
- value="<fmt:formatDate value="${entity.start}" 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="end" name="end" type="text" style="width: 150px" readonly="readonly" class="Wdate" onClick="WdatePicker({dateFmt:'yyyy-MM-dd'})" datatype="*"
- value="<fmt:formatDate value="${entity.end}" pattern="yyyy-MM-dd"/>"/>
- <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>
|