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

57 lines
1.8 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 }wonton_rule_tab" data-toggle="tab">规则</a></li>
<li role="presentation"><a href="#${modalId }wonton_rule_explain_tab" data-toggle="tab">说明</a></li>
</ul>
</div>
</div>
<div class="row margin_top">
<div class="col-md-12">
<form id="wonton_rule_form" class="form-horizontal" role="form">
<div class="form-body">
<div id="myTabContent" class="tab-content">
<div class="tab-pane fade in active" id="${modalId }wonton_rule_tab">
<div class="form-group">
<div class="col-sm-12">
<textarea id="${modalId }rule_text" class="form-control" rows="20" ></textarea>
</div>
</div>
</div>
<div class="tab-pane fade" id="${modalId }wonton_rule_explain_tab">
<div class="form-group">
<div class="col-sm-12">
<div class="fg-line">
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>