| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <%@ 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>t_process_busconfig</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="tProcessBusconfigController.do?doUpdate" >
- <input id="id" name="id" type="hidden" value="${tProcessBusconfigPage.id }"/>
- <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">
- 流程类型:
- </label>
- </td>
- <td class="value">
- <t:dictSelect field="processType" type="list" typeGroupCode="process" defaultVal="${tProcessBusconfigPage.processType}" hasLabel="false" title="流程类型" ></t:dictSelect>
- <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="showTitle" name="showTitle" type="text" style="width: 150px" class="inputxt" datatype="*" value='${tProcessBusconfigPage.showTitle}'/>
- <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="realTitle" name="realTitle" type="text" style="width: 150px" class="inputxt" datatype="*" value='${tProcessBusconfigPage.realTitle}'/>
- <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="showTablename" name="showTablename" type="text" style="width: 150px" class="inputxt" datatype="*" value='${tProcessBusconfigPage.showTablename}'/>
- <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="realTablename" name="realTablename" type="text" style="width: 150px" class="inputxt" datatype="*" value='${tProcessBusconfigPage.realTablename}'/>
- <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="activitiConfigClass" name="activitiConfigClass" type="text" style="width: 150px" class="inputxt" value='${tProcessBusconfigPage.activitiConfigClass}'/>
- <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/aa/tProcessBusconfig.js"></script>
|