zhaoke 3 жил өмнө
parent
commit
6a5fc9fe8d

+ 1 - 1
src/components/rolelist/index.vue

@@ -21,7 +21,7 @@
               </el-checkbox-group>
             </el-row>
           </template>
-          <template v-if="roleType && (roleType == 'account' || roleType == 'onlyRole')">
+          <template v-if="total > 1">
             <p class="center" v-if="loading">加载中...</p>
             <p class="center" v-if="noMore">没有更多数据了~</p>
           </template>

+ 5 - 3
src/views/authorityManagement/components/authorityRoleHome.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2021-11-29 14:37:54
- * @LastEditTime: 2022-02-09 10:52:46
+ * @LastEditTime: 2022-02-15 15:53:04
  * @LastEditors: Please set LastEditors
  * @Description: 角色管理
  * @FilePath: \Foshan4A2.0\src\views\authorityManagement\components\authorityRole.vue
@@ -58,8 +58,10 @@
             </div>
           </el-col>
         </el-row>
-        <p class="center" v-if="loading">加载中...</p>
-        <p class="center" v-if="noMore">没有更多数据了~</p>
+        <template v-if="total > 1">
+          <p class="center" v-if="loading">加载中...</p>
+          <p class="center" v-if="noMore">没有更多数据了~</p>
+        </template>
       </template>
       <template v-else>
         <el-empty description="暂无数据"></el-empty>

+ 4 - 2
src/views/jobsManagement/list.vue

@@ -48,8 +48,10 @@
         </div>
       </div>
     </div>
-    <p class="center" v-if="loading">加载中...</p>
-    <p class="center" v-if="noMore">没有更多数据了~</p>
+    <template v-if="total > 1">
+      <p class="center" v-if="loading">加载中...</p>
+      <p class="center" v-if="noMore">没有更多数据了~</p>
+    </template>
     <Dialog :flag="dialogVisible">
       <div class="closeDialog">
         <div class="title">删除岗位</div>

+ 5 - 3
src/views/staffManagement/compontents/staffHome.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2021-11-29 14:37:54
- * @LastEditTime: 2022-02-09 11:00:18
+ * @LastEditTime: 2022-02-15 15:55:00
  * @LastEditors: Please set LastEditors
  * @Description: 角色管理
  * @FilePath: \Foshan4A2.0\src\views\authorityManagement\components\authorityRole.vue
@@ -54,8 +54,10 @@
             </div>
           </el-col>
         </el-row>
-        <p class="center" v-if="loading">加载中...</p>
-        <p class="center" v-if="noMore">没有更多数据了~</p>
+        <template v-if="total > 1">
+          <p class="center" v-if="loading">加载中...</p>
+          <p class="center" v-if="noMore">没有更多数据了~</p>
+        </template>
       </template>
       <template v-else>
         <el-empty description="暂无数据"></el-empty>

+ 4 - 2
src/views/systemManagement/LoginPolicy/index.vue

@@ -30,8 +30,10 @@
               </div>
             </el-card>
           </div>
-          <p class="center" v-if="loading">加载中...</p>
-          <p class="center" v-if="noMore">没有更多数据了~</p>
+          <template v-if="total > 1">
+            <p class="center" v-if="loading">加载中...</p>
+            <p class="center" v-if="noMore">没有更多数据了~</p>
+          </template>
         </div>
         <el-empty v-else description="没有内容" style="margin:0 auto"></el-empty>
       </div>