无关风月
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
58
59
@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">
    .head{
        height: 40px;
        width: 100%;
    }
    .head>div, .body .tr>div{
        float: left;
        height: 100%;
        line-height: 40px;
        text-align: center;
        border: 1px solid #eee;
        width: 12%;
    }
</style>
<div class="row">
    <div class="col-sm-12">
        <div class="ibox float-e-margins">
            <div class="ibox-content">
                <div class="row row-lg">
                    <div class="col-sm-12">
                        <input type="hidden" id="objectType" value="${objectType}">
                        <input type="hidden" id="objectId" value="${objectId}">
                        <input type="hidden" id="page" value="${page}">
                        <div class="row">
                            <div style="margin-bottom: 20px;height: 40px;line-height: 30px;">
                                <button style="width: 80px;" onclick="saveData()">保存</button>
                            </div>
                            <div style="height: 40px;line-height: 25px;">
                                <button onclick="exportExcel()" style="background-color: #C81717;color: #fff; border-radius: 3px;border: 1px solid #000;">导入需要排除的二级标签</button>
                                <input type="file" id="exportExcel" style="display: none;">
                            </div>
                            <div class="table">
                                <div class="head">
                                    <div style="width: 5%;">序号</div><div>分类</div><div style="width: 14%;">标签名称</div><div>条件关系</div><div>标签类型</div><div style="min-width: 20%;">条件值</div><div>范围&nbsp;&nbsp;&nbsp;&nbsp;<i class="fa fa-exclamation" style="color: red;" title="范围只针对的油站渠道。对非油站渠道无效,非油站渠道只筛选出绑定该渠道的用户"></i></div><div>操作</div>
                                </div>
                                <div class="body">
 
                                </div>
                                <div><button style="height: 30px;min-width: 60px;background-color: #3B88D9;color: #fff; border-radius: 3px;border: 1px solid #000;" onclick="addRow(this)">添加</button></div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
<script src="${ctxPath}/static/modular/system/exposureCrowd/exposureCrowd.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 src="${ctxPath}/static/js/layui/layui.js" charset="utf-8"></script>
<script>
 
</script>
@}