Alatus Lee 3419cc6e7f 提交
2025-10-05 17:41:23 +08:00

84 lines
3.2 KiB
Plaintext

<!--
/*
* @Copyright (c) 2018 缪聪(mcg-helper@qq.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<div class="container-fluid" >
<div class="row">
<div class="col-md-12">
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active"><a href="#${modalId }_startProperty" data-toggle="tab">属性</a></li>
<li role="presentation"><a href="#${modalId }_startExplain" data-toggle="tab">说明</a></li>
</ul>
</div>
</div>
<div class="row margin_top">
<div class="col-md-12">
<form id="${modalId }_startForm" class="form-horizontal" role="form">
<input type="hidden" id="${modalId }_id" name="id" value="${modalId }" />
<input type="hidden" id="${modalId }_startId" name="startId" value="${modalId }" />
<div class="form-body">
<div id="myTabContent" class="tab-content">
<div class="tab-pane fade in active" id="${modalId }_startProperty">
<table id="${modalId }_flowStartTable"
data-toggle="table"
data-height="390"
data-search="true"
data-show-columns="true"
data-pagination="true"
data-page-size="5"
data-page-list="[5,10,20,30]"
data-pagination-first-text="上一页"
data-pagination-pre-text="上一页"
data-pagination-next-text="下一页"
data-pagination-last-text="尾页">
<thead>
<tr>
<th data-field="state" data-checkbox="true"></th>
<th data-field="key" data-formatter="inputFormatter">变量名</th>
<th data-field="value" data-formatter="inputFormatter">变更值</th>
<th data-field="desc" data-formatter="inputFormatter">说明</th>
</tr>
</thead>
</table>
</div>
<div class="tab-pane fade" id="${modalId }_startExplain">
<div class="form-group">
<div class="col-sm-12">
<div class="fg-line">
作为流程的开始标志外,赋有当前流程中全局变量的作用,它首先会获取数据源中“全局变量”的值,并在此基础上覆盖添加本身自定义的键值对,<br/>
可在任何流程控件中采用${变量名}替换成变量值,其运行值如下:
<pre>
{
变量名:变量值,
变量名一:变量值一,
变量名二:变量值二,
......
}
</pre>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>