shiyj
2019-09-02 b784175e978b0fcfca8ca8bed7953ae4eacf49e8
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
<div id = "addPrivilegeModel" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="addPrivilegeModalLabel" aria-hidden="true" >
    <div class="modal-dialog modal-lg">
        <div class="modal-content">
            <div class="modal-header">
                <h3 class="modal-title" id="addPrivilegeModalLabel">添加权限</h3>
                <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                    <span aria-hidden="true">&times;</span>
                </button>
            </div>
            <div class="modal-body">
                <div class=" row">
                    <div class="col-lg-12">
                        <div class="ibox ">
                                <div class="row">
 
                                    <div class="col-sm-7 m-b-xs">
 
                                    </div>
                                    <div class="col-sm-5">
                                        <div class="input-group">
                                            <input placeholder="输入权限名称" type="text" class="form-control form-control-sm">
                                            <span class="input-group-append">
                                                <button type="button" class="btn btn-sm btn-primary">查询</button>
                                            </span>
                                        </div>
                                    </div>
                                </div>
                                <div class="table-responsive" style="margin-top:15px">
                                    <table class="table table-striped">
                                        <thead>
                                        <tr>
 
                                            <th>权限编码</th>
                                            <th>权限名称</th>
                                            <th>权限描述</th>
                                            <th>创建时间</th>
                                            <th>操作</th>
                                        </tr>
                                        </thead>
                                        <tbody>
                                            <tr v-for="noAddPrivilege in addPrivilegeInfo._noAddPrivilege">
                                                <td>{{noAddPrivilege.pId}}</td>
                                                <td>{{noAddPrivilege.name}}</td>
                                                <td>{{noAddPrivilege.description}}</td>
                                                <td>{{vc.dateFormat(noAddPrivilege.createTime)}}</td>
                                                <td>
                                                    <button class="btn btn-primary btn-xs" v-on:click="addPrivilegeToPrivilegeGroup(noAddPrivilege)">添加</button>
                                                </td>
                                            </tr>
                                        </tbody>
                                    </table>
                                </div>
 
                        </div>
                    </div>
                </div>
        </div>
    </div>
    </div>
</div>