From 4ee6445f67bbb56caa2b2f981afce6e87cc602af Mon Sep 17 00:00:00 2001
From: 吴学文 <wuxuewen@wuxuewendeMacBook-Pro.local>
Date: 星期三, 10 七月 2019 21:01:26 +0800
Subject: [PATCH] 每个页面显示当前页面名称,将上下框无法对其的处理对齐

---
 WebService/src/main/resources/components/staff-privilege/staffPrivilege.html |  116 +++++++++++++++++++++++++++++----------------------------
 1 files changed, 59 insertions(+), 57 deletions(-)

diff --git a/WebService/src/main/resources/components/staff-privilege/staffPrivilege.html b/WebService/src/main/resources/components/staff-privilege/staffPrivilege.html
index 65ae675..d1f46b6 100644
--- a/WebService/src/main/resources/components/staff-privilege/staffPrivilege.html
+++ b/WebService/src/main/resources/components/staff-privilege/staffPrivilege.html
@@ -1,61 +1,63 @@
-<div id="component" class="row">
-    <vc:create name="privilegeGroup"></vc:create>
-    <div class="col-lg-9 animated fadeInRight">
-        <div class="mail-box-header">
-            <button v-if="privilegeInfo._currentStoreId != '9999'"
-                    class="btn btn-primary btn-sm float-right"
-                    data-toggle="tooltip"
-                    title="Refresh inbox"
-                    v-on:click="openAddPrivilegeModel()"
-            ><i class="fa fa-plus"></i> 娣诲姞鏉冮檺</button>
-            <form method="get" action="index.html" class="float-right mail-search" style="margin-right:10px">
-                <div class="input-group">
-                    <input type="text" class="form-control form-control-sm" name="search" placeholder="璇疯緭鍏ユ潈闄愬悕绉�">
-                    <div class="input-group-btn">
-                        <button type="submit" class="btn btn-sm btn-primary">
-                            鏌ヨ
-                        </button>
-                    </div>
+<div id="component" >
+    <vc:create name="privilegeStaffInfo"></vc:create>
+    <div class="row">
+        <div class="col-lg-12">
+            <div class="ibox">
+                <div class="ibox-content">
+
+                    <table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
+                        <thead>
+                        <tr>
+                            <th>鏉冮檺ID</th>
+                            <th data-hide="phone">鏉冮檺鍚嶇О</th>
+                            <th data-hide="phone">鏉冮檺鎻忚堪</th>
+                            <th data-hide="phone">闅跺睘鏉冮檺缁処D</th>
+                            <th data-hide="phone,tablet" >闅跺睘鏉冮檺缁勫悕绉�</th>
+                            <th data-hide="phone">鐘舵��</th>
+                            <th class="text-right">鎿嶄綔</th>
+
+                        </tr>
+                        </thead>
+                        <tbody>
+                            <tr v-for="privilege in staffPrivilegeInfo.privileges">
+                                <td>
+                                    {{privilege.pId}}
+                                </td>
+                                <td>
+                                    {{privilege.name}}
+                                </td>
+                                <td>
+                                    {{privilege.description}}
+                                </td>
+                                <td>
+                                    {{privilege.pgId}}
+                                </td>
+                                <td>
+                                    {{privilege.pgName}}
+                                </td>
+                                <td>
+                                    <span class="label label-primary">鍦ㄧ敤</span>
+                                </td>
+                                <td      class="text-right">
+                                    <div class="btn-group">
+                                        <button class="btn-white btn btn-xs" v-on:click="_openDeleteStaffPrivilegeModel(privilege)">鍒犻櫎</button>
+                                    </div>
+                                </td>
+                            </tr>
+                        </tbody>
+                        <tfoot>
+                        <tr>
+                            <td colspan="7">
+                                <ul class="pagination float-right"></ul>
+                            </td>
+                        </tr>
+                        </tfoot>
+                    </table>
+
                 </div>
-            </form>
-            <h2>
-                {{privilegeInfo._currentPgName}}
-            </h2>
-        </div>
-        <div class="mail-box">
-
-            <table class="table table-hover table-mail">
-                <thead>
-                <tr>
-                    <th>鏉冮檺缂栫爜</th>
-                    <th>鏉冮檺鍚嶇О</th>
-                    <th>鏉冮檺鎻忚堪</th>
-                    <th>鍒涘缓鏃堕棿</th>
-                    <th>鎿嶄綔</th>
-                </tr>
-                </thead>
-                <tbody>
-                <tr v-for="privilege in privilegeInfo._privileges" class="read">
-                    <td class="check-mail">
-                        {{privilege.pId}}
-                    </td>
-                    <td class="mail-ontact">{{privilege.name}}</td>
-                    <td class="mail-subject">{{privilege.description}}</td>
-                    <td class="">{{vc.dateFormat(privilege.createTime)}}</td>
-                    <td class="text-right mail-date">
-                        <i  v-if="privilegeInfo._currentStoreId != '9999'"
-                            v-on:click="openDeletePrivilegeModel(privilege)"
-                            class="glyphicon glyphicon-remove"></i>
-                    </td>
-                </tr>
-
-                </tbody>
-            </table>
-
-
+            </div>
         </div>
     </div>
-
-    <vc:create name="addPrivilege"></vc:create>
-    <vc:create name="deletePrivilege"></vc:create>
+    <!-- 鍒犻櫎鍛樺伐鏉冮檺 -->
+    <vc:create name="deleteStaffPrivilege"></vc:create>
 </div>
\ No newline at end of file

--
Gitblit v1.8.0