| 12345678910111213141516171819202122232425262728293031323334353637 |
- <%@ 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:mutiLang langKey="common.process.params" /></title>
- <t:base type="jquery,easyui,tools"></t:base>
- </head>
- <body style="overflow-y: hidden" scroll="no">
- <t:formvalid formid="formobj" dialog="true" layout="div" action="processController.do?saveNode">
- <input name="id" type="hidden" value="${processnode.id}">
- <input name="TPProcess.id" type="hidden" value="${processid}">
- <fieldset class="step">
- <div class="form"><label class="Validform_label"> <t:mutiLang langKey="common.node.name" />: </label> <input name="processnodename" value="${processnode.processnodename }" class="inputxt" datatype="s1-50"> <span class="Validform_checktip">节点名称范围在1~50位字符<%-- <t:mutiLang langKey="nodename.rang3to50" /> --%></span></div>
- <div class="form"><label class="Validform_label"> <t:mutiLang langKey="common.node.code" />: </label> <input name="processnodecode" value="${processnode.processnodecode}" class="inputxt"></div>
- <div class="form"><label class="Validform_label"> <t:mutiLang langKey="common.node.form_pc" />: </label> <input name="modelandview" value="${processnode.modelandview}" class="inputxt" style="width: 400px"></div>
- <div class="form"><label class="Validform_label"> <t:mutiLang langKey="common.node.form_mobile" />: </label> <input name="modelandviewMobile" value="${processnode.modelandviewMobile}" class="inputxt" style="width: 400px"></div>
- <div class="form"><label class="Validform_label"> <t:mutiLang langKey="common.node.timeout" />: </label> <input name="nodeTimeout" value="${processnode.nodeTimeout}" class="inputxt" datatype="n1-11" ignore="ignore" style="width: 400px"></div>
- <%-- 表单不再使用,全部采用链接的方式配置
- <div class="form">
- <label class="Validform_label">
- 内部表单:
- </label>
- <select name="fromid" style="width:140px">
- <option value="0">-请选择内部表单-</option>
- <c:forEach items="${formList }" var="form">
- <option value="${form.id }" <c:if test="${form.id==processnode.TPForm.id}">selected="selected"</c:if>>
- ${form.formname }
- </option>
- </c:forEach>
- </select>
- </div>
- --%></fieldset>
- </t:formvalid>
- </body>
- </html>
|