Browse Source

Merge branch 'check'

XMTT 7 years ago
parent
commit
256dc15e61
3 changed files with 70 additions and 69 deletions
  1. 9 0
      css/model/sys/userinfo.css
  2. 17 12
      html/model/sys/userInfo/check.html
  3. 44 57
      js/model/sys/userInfo/check.js

+ 9 - 0
css/model/sys/userinfo.css

@ -16,6 +16,15 @@
16 16
    cursor:pointer;
17 17
}
18 18
19
.sys_userinfo_check .table-opt .icon {
20
    margin: 7px;
21
    font-size: 17px;
22
}
23
24
.sys_userinfo_check .table-opt{
25
    width: 50px;
26
}
27
19 28
.sys_userinfo_new,.sys_userinfo_edit{
20 29
    width: 500px;
21 30
    height: 250px;

+ 17 - 12
html/model/sys/userInfo/check.html

@ -45,21 +45,25 @@
45 45
    </div>
46 46
47 47
    <div class="container page-split"></div>
48
    <div class="container tpl-btns">
49
        <div class="row">
50
            <div class="btn opt-examine">
51
                查看用户信息
52
            </div>
53
            <div class="btn opt-review">
54
                审核
55
            </div>
56
        </div>
57
    </div>
48
    <!--<div class="container tpl-btns">-->
49
        <!--<div class="row">-->
50
            <!--<div class="btn opt-examine">-->
51
                <!--查看用户信息-->
52
            <!--</div>-->
53
            <!--<div class="btn opt-review">-->
54
                <!--审核-->
55
            <!--</div>-->
56
        <!--</div>-->
57
    <!--</div>-->
58
    <style type="text/css">
59
        .table.table-bordered tr th{text-align: center;}
60
    </style>
58 61
    <div class="container dt-tpl">
59 62
        <table class="table table-bordered">
60 63
            <thead>
61 64
            <tr>
62
                <th class="opt-check"><i class="icon icon-st-check"></i></th>
65
                <!--<th class="opt-check"><i class="icon icon-st-check"></i></th>-->
66
                <th>操作</th>
63 67
                <th>序号</th>
64 68
                <th>用户名</th>
65 69
                <th>职称</th>
@ -76,7 +80,8 @@
76 80
            </thead>
77 81
            <tbody>
78 82
            <tr ch-dir="list">
79
                <td class="opt-check"><i class="icon icon-st-check" userId="{{id}}"></i></td>
83
                <!--<td class="opt-check"><i class="icon icon-st-check" userId="{{id}}"></i></td>-->
84
                <td class="table-opt" userId="{{id}}"><i class="icon icon-eye-open opt-examine"></i><i class="icon icon-check-board opt-review"></i></td>
80 85
                <td>{{-_index}}</td>
81 86
                <td>{{name}}</td>
82 87
                <td>{{title}}</td>

+ 44 - 57
js/model/sys/userInfo/check.js

@ -11,70 +11,57 @@ spa_define(function () {
11 11
                root.find(".opt-query").on("click", function () {
12 12
                    pdg.load();
13 13
                });
14
                root.find(".dt-tpl").on("click", "th.opt-check>i.icon-st-check", function () {
15
                    var $this = $(this);
16
                    $this.toggleClass("checked");
17
                    if ($this.hasClass("checked")) {
18
                        root.find(".dt-tpl td.opt-check>i.icon-st-check").addClass("checked");
19
                    } else {
20
                        root.find(".dt-tpl td.opt-check>i.icon-st-check").removeClass("checked");
21
                    }
22
                });
23
                root.find(".dt-tpl").on("click", "td.opt-check>i.icon-st-check", function () {
14
                // root.find(".dt-tpl").on("click", "th.opt-check>i.icon-st-check", function () {
15
                //     var $this = $(this);
16
                //     $this.toggleClass("checked");
17
                //     if ($this.hasClass("checked")) {
18
                //         root.find(".dt-tpl td.opt-check>i.icon-st-check").addClass("checked");
19
                //     } else {
20
                //         root.find(".dt-tpl td.opt-check>i.icon-st-check").removeClass("checked");
21
                //     }
22
                // });
23
                // root.find(".dt-tpl").on("click", "td.opt-check>i.icon-st-check", function () {
24
                //     var $this = $(this);
25
                //     $this.toggleClass("checked");
26
                // });
27
28
                root.on("click", ".opt-examine", function () {
24 29
                    var $this = $(this);
25
                    $this.toggleClass("checked");
26
                });
27
                root.find(".opt-examine").on("click", function () {
28
                    var $org = root.find("td.opt-check>i.checked");
29
                    if ($org.length) {
30
                        if ($org.length > 1) {
31
                            util.alert("只能选择一个用户");
32
                        } else {
33
                            util.get("../ajax/userinfo/id/" + $org.attr("userId"), null, function (data) {
34
                                if (data) {
35
                                        spa.showModal("sys_userinfo_examine", {
36
                                            data: data, hand: function () {
37
                                                pdg.load()
38
                                            }
39
                                        })
40
                                } else {
41
                                    util.alert("用户不存在了", function () {
42
                                        pdg.load();
43
                                    });
30
                    var $id = $this.parent().attr("userId");
31
                    util.get("../ajax/userinfo/id/" + $id, null, function (data) {
32
                        if (data) {
33
                            spa.showModal("sys_userinfo_examine", {
34
                                data: data, hand: function () {
35
                                    pdg.load()
44 36
                                }
45
                            }, {});
37
                            })
38
                        } else {
39
                            util.alert("用户不存在了", function () {
40
                                pdg.load();
41
                            });
46 42
                        }
47
                    } else {
48
                        util.alert("请选择一个用户");
49
                    }
43
                    }, {});
50 44
                });
51
                root.find(".opt-review").on("click", function () {
52
                    var $check = root.find("td.opt-check>i.checked");
53
                    if ($check.length) {
54
                        if ($check.length > 1) {
55
                            util.alert("只能选择一个用户")
56
                        } else {
57
                            util.get("../ajax/userinfo/id/" + $check.attr("userId"), null, function (data) {
58
                                if (data) {
59
                                    if (data.state == "2") {
60
                                        spa.showModal("sys_userinfo_review", {
61
                                            data: data, hand: function () {
62
                                                pdg.reload();
63
                                            }
64
                                        })
65
                                    } else {
66
                                        util.alert("只有待审核的可以点击");
45
                root.on("click", ".opt-review", function () {
46
                    var $this = $(this);
47
                    var $id = $this.parent().attr("userId");
48
                    util.get("../ajax/userinfo/id/" + $id, null, function (data) {
49
                        if (data) {
50
                            if (data.state == "2") {
51
                                spa.showModal("sys_userinfo_review", {
52
                                    data: data, hand: function () {
53
                                        pdg.reload();
67 54
                                    }
68
                                } else {
69
                                    util.alert("用户不存在了", function () {
70
                                        pdg.load();
71
                                    });
72
                                }
55
                                })
56
                            } else {
57
                                util.alert("只有待审核的可以点击");
58
                            }
59
                        } else {
60
                            util.alert("用户不存在了", function () {
61
                                pdg.load();
73 62
                            });
74 63
                        }
75
                    } else {
76
                        util.alert("请选择一名专家");
77
                    }
64
                    });
78 65
                });
79 66
                pdg.code.listen($.dict.doTransfer);
80 67
                pdg.load();