无关风月
2025-03-20 2ad97245d64b65132507cab36ad89d968edb7705
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
@layout("/common/_container.html"){
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<style type="text/css">
    table{
        width: 100%;
    }
    td, th{
        border: 1px solid #eee;
        text-align: center;
        height: 40px;
        line-height: 40px;
    }
    td select, td div, td div input, td input{
        height: 100%;
        width: 95%;
        border: none;
        text-indent: 10px;
    }
</style>
<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="row">
                            <div id="title">
 
                            </div>
                            <div id="table">
                                <table id="demo">
                                    <thead>
                                        <tr><th>序号</th><th>分类</th><th>标签名称</th><th>条件类型</th><th>条件设置</th><th>操作</th></tr>
                                    </thead>
                                    <tbody></tbody>
                                </table>
                                <button onclick="addVipGrowthRules()" style="height: 35px;width: 80px;">添加</button>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
<script src="${ctxPath}/static/modular/system/vipGrowthRules/vipGrowthRules.js"></script>
<script src="${ctxPath}/static/bootstrap-select-1.13.0/js/bootstrap-select.min.js"></script>
<link href="${ctxPath}/static/bootstrap-select-1.13.0/css/bootstrap-select.min.css" rel="stylesheet">
<script>
 
</script>
@}