puzhibing
2023-06-30 f58cca364b731eac2d60a440ffaa804be3cd43fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
@layout("/common/_container.html"){
<div class="row">
    <div class="col-sm-12">
        <div class="ibox float-e-margins">
            <div class="ibox-title">
                <h5>加盟基本要求设置</h5>
            </div>
            <div class="ibox-content">
                <div class="row row-lg">
                    <div class="col-sm-12">
 
                        <div class="initialLevel col-sm-12 control-label form-group"  >
                            <label style="color: #0C0C0C">加盟基本要求</label>
                        </div>
 
                        <input hidden id="id" value="${id}">
                        <input hidden id="array" value="${array}">
 
                        <div class="initialLevel col-sm-12 control-label form-group" id="rules" style="text-align: left" >
                            @for(ChargeStandard in array){
                            <div name="rulesForm">
                                <div class="initialLevel col-sm-12 control-label form-group"  >
                                    <span class="control-label" >要求1</span>
                                    <input class="control-label" id="num1" name="num1" value="${ChargeStandard.num1}" type="text" placeholder="单行输入" style="height: 30px;width: 180px">
                                    @if(ChargeStandard.key == 0){
                                    <span class="fa fa-plus" onclick="THtml.addBox()"></span>
                                    @}
                                    @if(ChargeStandard.key == 1){
                                    <span class="fa fa-remove" onclick="THtml.delBox(this)"></span>
                                    @}
                                </div>
                            </div>
                            @}
                        </div>
 
                        <div class="row btn-group-m-t">
                            <div class="col-sm-10" style="text-align: center">
                                <#button btnCss="info" name="保存" id="ensure" icon="fa-check" clickFun="THtml.priceRulesSubmit()"/>
                            </div>
                        </div>
 
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
<script src="${ctxPath}/static/modular/system/tHtml/tHtml_info.js"></script>
<script src="${ctxPath}/static/modular/system/tHtml/tHtml.js"></script>
<style type="text/css">
    .agentDriver{
        height: 30px;
        width: 200px;
        background-color: white;
        border-radius: 6px;
    }
    .clause{
        height: 30px;
        width: 80px;
        background-color: white;
        border-radius: 6px;
    }
    .personalRules{
        height: 30px;
        width: 180px;
        background-color: white;
        border-radius: 6px;
    }
</style>
<script type="text/javascript">
</script>
@}