| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <%@ 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="budgetInstController.do?doAdd" >
- <input id="id" name="id" type="hidden" value="${budgetInstPage.id }"/>
- <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">
- 样表id:
- </label>
- </td>
- <td class="value">
- <input id="tempSheetId" name="tempSheetId" type="text" style="width: 150px" class="inputxt" ignore="ignore" />
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">样表id</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" />
- <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" />
- <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="json" name="json" type="text" style="width: 150px" class="inputxt" ignore="ignore" />
- <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="entityId" name="entityId" type="text" style="width: 150px" class="inputxt" ignore="ignore" />
- <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="entityName" name="entityName" type="text" style="width: 150px" class="inputxt" ignore="ignore" />
- <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="type" name="type" type="text" style="width: 150px" class="inputxt" ignore="ignore" />
- <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/inst/budgetInst.js"></script>
|