| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <%@ 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?doAdd" >
- <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="*"/>
- <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="*" />
- <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="*"/>
- <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="*" />
- <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" 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/aa/tProcessBusconfig.js"></script>
|