zhaoke 3 роки тому
батько
коміт
b53a89092d

+ 20 - 22
src/views/authorityManagement/components/authorityRoleHome.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2021-11-29 14:37:54
- * @LastEditTime: 2022-02-08 11:26:39
+ * @LastEditTime: 2022-02-09 10:52:46
  * @LastEditors: Please set LastEditors
  * @Description: 角色管理
  * @FilePath: \Foshan4A2.0\src\views\authorityManagement\components\authorityRole.vue
@@ -96,6 +96,7 @@ export default {
       flag: false,
       title: '',
       index: null,
+      num: null,
       pageNum: 1,
       PageSize: 20,
       loading: false,
@@ -105,13 +106,12 @@ export default {
     }
   },
   created () {
-    let keyWords = ""
     if (this.$route.query.keyWords) {
       keyWords = this.$route.query.keyWords
       this.keyWords = keyWords
     }
     this.gueryRole({
-      QueryName: keyWords,
+      QueryName: this.keyWords,
       PageSize: this.PageSize,
       PageIndex: this.pageNum
     });
@@ -126,14 +126,15 @@ export default {
   },
   methods: {
     //删除
-    checkRemove (item) {
+    checkRemove (item, index) {
       this.flag = true
       this.index = item
       this.title = item.RoleName
+      this.num = index
     },
     //确认删除
     remove () {
-      this.deleteRole(this.index.RoleId)
+      this.deleteRole(this.index.RoleId, this.num)
     },
     //角色新增
     addRole () {
@@ -145,23 +146,27 @@ export default {
     },
     //查询
     getSearchData (val) {
+      this.arrs = []
+      this.dataList = []
       this.pageNum = 1
-      this.search = val
+      this.keyWords = val
       this.gueryRole({
         QueryName: val,
         PageSize: this.PageSize,
         PageIndex: this.pageNum
-      }, true)
+      })
     },
     //清除查询
     clearSearchData () {
+      this.arrs = []
+      this.dataList = []
       this.pageNum = 1
       this.keyWords = ''
       this.gueryRole({
-        QueryName: '',
+        QueryName: this.keyWords,
         PageSize: this.PageSize,
         PageIndex: this.pageNum
-      }, true)
+      })
     },
     //状态变更
     async handleChange (item) {
@@ -174,19 +179,12 @@ export default {
         })
         if (res.code === 0) {
           this.$message.success(res.message)
-          if (this.search) {
-            this.gueryRole({
-              QueryName: this.search,
-              PageSize: this.PageSize,
-              PageIndex: this.pageNum
-            }, true)
-          } else {
-            this.gueryRole({
-              QueryName: this.keyWords,
-              PageSize: this.PageSize,
-              PageIndex: this.pageNum
-            }, true)
-          }
+          this.arrs.forEach(item => {
+            if (item.RoleId == RoleId) {
+              item.isauto = isauto
+              item.Status = Status
+            }
+          })
         } else {
           this.$message.error(res.message)
         }

+ 10 - 13
src/views/authorityManagement/minixs/roleData.js

@@ -1,7 +1,7 @@
 /*
  * @Author: your name
  * @Date: 2021-12-24 11:36:07
- * @LastEditTime: 2022-02-08 11:19:49
+ * @LastEditTime: 2022-02-09 10:59:01
  * @LastEditors: Please set LastEditors
  * @Description: 权限公用
  * @FilePath: \Foshan4A2.0\src\views\authorityManagement\minixs\roleData.js
@@ -19,24 +19,20 @@ export default {
   },
   methods: {
     //获取列表数据
-    async gueryRole (obj, type = '') {
+    async gueryRole (obj) {
       try {
         this.loading = true
         const res = await QueryRole(obj)
         if (res.code === 0) {
           const datas = res.returnData.records
+          const num = res.returnData.pages
           datas.forEach(item => {
             item.isauto = item.Status == 1 ? true : false
           })
-          const num = Math.ceil(res.returnData.total / 20)
-          let arrs = []
-          if (type) {
-            arrs = datas
-          } else {
-            this.dataList.push(datas)
-            arrs = this.dataList.flat()
-          }
-          this.arrs = arrs
+          this.dataList.push(datas)
+          const arrs = this.dataList.flat()
+          const msgs = _.unionBy(arrs, "RoleId")
+          this.arrs = msgs
           this.total = num
           this.loading = false
         } else {
@@ -49,7 +45,7 @@ export default {
       }
     },
     //删除角色
-    async deleteRole (id) {
+    async deleteRole (id, num) {
       try {
         const res = await DeleteRole({
           RoleId: id
@@ -57,7 +53,8 @@ export default {
         if (res.code === 0) {
           this.flag = false
           this.$message.success(res.message)
-          this.gueryRole()
+          this.arrs.splice(num, 1)
+          this.num = null
         } else {
           this.flag = false
           this.$message.error(res.message)

+ 29 - 23
src/views/jobsManagement/list.vue

@@ -9,7 +9,7 @@
     </div>
     <div v-infinite-scroll="load" :infinite-scroll-distance="20" infinite-scroll-disabled="disabled" class="contantBox scrollbar">
       <div class="itemBox" v-for="(item, index) in listData" :key="index">
-        <div class="del" @click="delate(item.JobId)">
+        <div class="del" @click="delate(item.JobId,index)">
           <i class="el-icon-close"></i>
         </div>
         <div>
@@ -48,7 +48,7 @@
       </div>
     </div>
     <p class="center" v-if="loading">加载中...</p>
-    <p class="center" v-if="noMore && !loading">没有更多数据了~</p>
+    <p class="center" v-if="noMore">没有更多数据了~</p>
     <Dialog :flag="dialogVisible">
       <div class="closeDialog">
         <div class="title">删除岗位</div>
@@ -90,7 +90,8 @@ export default {
       pageNum: 1,
       total: '',
       loading: false,
-      dataList: []
+      dataList: [],
+      index: null
     };
   },
   components: { Search, Dialog },
@@ -106,37 +107,43 @@ export default {
   },
   computed: {
     noMore () {
-      return this.pageNum >= this.total
+      return this.pageNum >= this.total;
     },
     disabled () {
-      return this.loading || this.noMore
+      return this.loading || this.noMore;
     }
   },
   methods: {
     //查询
     getSearchData (val) {
+      this.listData = [];
+      this.dataList = [];
       this.pageNum = 1;
       this.serachinfo = val;
       this.AccountList({
         QueryName: this.serachinfo,
         PageSize: this.pageSize,
         PageIndex: this.pageNum
-      }, true);
+      });
     },
 
     //清除查询
     clearSearchData () {
+      this.listData = [];
+      this.dataList = [];
       this.pageNum = 1;
       this.serachinfo = '';
       this.AccountList({
         QueryName: this.serachinfo,
         PageSize: this.pageSize,
         PageIndex: this.pageNum
-      }, true);
+      });
     },
     //修改状态
     async isUsedChange (value, index) {
       let item = _.cloneDeep(value);
+      const { JobId, Flag } = item
+      const Status = Flag ? 1 : 0
       try {
         let data = null;
         let str = "";
@@ -156,11 +163,12 @@ export default {
         ChangeJobStatus(data).then((result) => {
           if (result.code == 0) {
             this.$message.success(str);
-            this.AccountList({
-              QueryName: this.serachinfo,
-              PageSize: this.pageSize,
-              PageIndex: this.pageNum
-            });
+            this.listData.forEach(item => {
+              if (item.JobId == JobId) {
+                item.Flag = Flag
+                item.Status = Status
+              }
+            })
           }
         });
       } catch (error) {
@@ -171,9 +179,10 @@ export default {
       }
     },
 
-    delate (id) {
+    delate (id, index) {
       this.dialogVisible = true;
       this.delId = id;
+      this.index = index;
     },
 
     toEdit (id) {
@@ -183,7 +192,7 @@ export default {
       });
     },
     //获取列表
-    async AccountList (obj, type = '') {
+    async AccountList (obj) {
       try {
         this.loading = true;
         const result = await GetJobList(obj);
@@ -197,14 +206,10 @@ export default {
             }
             datas[index] = element;
           });
-          let arrs = [];
-          if (type) {
-            arrs = datas;
-          } else {
-            this.dataList.push(datas);
-            arrs = this.dataList.flat();
-          }
-          this.listData = arrs;
+          this.dataList.push(datas);
+          const arrs = this.dataList.flat();
+          const msgs = _.unionBy(arrs, "JobId");
+          this.listData = msgs;
           this.total = result.returnData.pages;
           this.loading = false;
         } else {
@@ -226,7 +231,8 @@ export default {
         if (result.code === 0) {
           this.dialogVisible = false;
           this.$message.success(result.message);
-          this.AccountList();
+          this.listData.splice(this.index, 1);
+          this.index = null
         }
       } catch (error) {
         this.dialogVisible = false;

+ 20 - 26
src/views/staffManagement/compontents/staffHome.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2021-11-29 14:37:54
- * @LastEditTime: 2022-02-08 17:29:40
+ * @LastEditTime: 2022-02-09 11:00:18
  * @LastEditors: Please set LastEditors
  * @Description: 角色管理
  * @FilePath: \Foshan4A2.0\src\views\authorityManagement\components\authorityRole.vue
@@ -97,7 +97,8 @@ export default {
       loading: false,
       keyWords: '',
       total: null,
-      search: null
+      search: null,
+      num: null
     }
   },
   created () {
@@ -120,14 +121,15 @@ export default {
   },
   methods: {
     //删除
-    checkRemove (item) {
+    checkRemove (item, num) {
       this.flag = true
       this.index = item
       this.title = item.OfficerName
+      this.num = num
     },
     //确认删除
     remove () {
-      this.deleteRole(this.index.OfficerId)
+      this.deleteRole(this.index.OfficerId, this.num)
     },
     //职员新增
     addRole () {
@@ -140,20 +142,19 @@ export default {
     //查询
     getSearchData (val) {
       this.arrs = []
-      this.listData = []
+      this.dataList = []
       this.pageNum = 1
-      this.search = val
+      this.keyWords = val
       this.gueryRole({
         QueryName: val,
         PageSize: this.PageSize,
         PageIndex: this.pageNum
-      }, true)
+      })
     },
     //清除查询
     clearSearchData () {
-      this.list = []
       this.arrs = []
-      this.search = ''
+      this.dataList = []
       this.pageNum = 1
       this.keyWords = ''
       this.gueryRole({
@@ -173,10 +174,11 @@ export default {
         })
         if (res.code === 0) {
           this.$message.success(res.message)
-          this.gueryRole({
-            QueryName: '',
-            PageSize: this.PageSize,
-            PageIndex: this.pageNum
+          this.arrs.forEach(item => {
+            if (item.OfficerId == OfficerId) {
+              item.isauto = isauto
+              item.Status = Status
+            }
           })
         } else {
           this.$message.error(res.message)
@@ -188,19 +190,11 @@ export default {
     //滚动加载数据
     load () {
       this.pageNum += 1
-      if (this.search) {
-        this.gueryRole({
-          QueryName: this.search,
-          PageSize: this.PageSize,
-          PageIndex: this.pageNum
-        });
-      } else {
-        this.gueryRole({
-          QueryName: this.keyWords,
-          PageSize: this.PageSize,
-          PageIndex: this.pageNum
-        });
-      }
+      this.gueryRole({
+        QueryName: this.keyWords,
+        PageSize: this.PageSize,
+        PageIndex: this.pageNum
+      })
     }
   }
 }

+ 10 - 15
src/views/staffManagement/minixs/roleData.js

@@ -1,7 +1,7 @@
 /*
  * @Author: your name
  * @Date: 2021-12-24 11:36:07
- * @LastEditTime: 2022-02-08 17:29:47
+ * @LastEditTime: 2022-02-09 10:30:43
  * @LastEditors: Please set LastEditors
  * @Description: 权限公用
  * @FilePath: \Foshan4A2.0\src\views\authorityManagement\minixs\roleData.js
@@ -11,8 +11,7 @@ import { staffList, staffListele } from '@/api/postInterface'
 export default {
   data () {
     return {
-      dataList: [],
-      list: []
+      dataList: []
     }
   },
   created () {
@@ -20,7 +19,7 @@ export default {
   },
   methods: {
     //获取列表数据
-    async gueryRole (obj, type = '') {
+    async gueryRole (obj) {
       try {
         this.loading = true
         const res = await staffList(obj)
@@ -30,15 +29,10 @@ export default {
           datas.forEach(item => {
             item.isauto = item.Status == 1 ? true : false
           })
-          if (type) {
-            this.list.push(datas)
-            const arrs = this.list.flat()
-            this.arrs = arrs
-          } else {
-            this.dataList.push(datas)
-            const arrs = this.dataList.flat()
-            this.arrs = arrs
-          }
+          this.dataList.push(datas)
+          const arrs = this.dataList.flat()
+          const msgs = _.unionBy(arrs, "OfficerId")
+          this.arrs = msgs
           this.total = num
           this.loading = false
         } else {
@@ -51,7 +45,7 @@ export default {
       }
     },
     //删除职员
-    async deleteRole (id) {
+    async deleteRole (id, num) {
       try {
         const res = await staffListele({
           OfficerId: id
@@ -59,7 +53,8 @@ export default {
         if (res.code === 0) {
           this.flag = false
           this.$message.success(res.message)
-          this.gueryRole()
+          this.arrs.splice(num, 1)
+          this.num = null
         } else {
           this.flag = false
           this.$message.error(res.message)

+ 115 - 52
src/views/systemManagement/LoginPolicy/index.vue

@@ -2,38 +2,38 @@
   <div class="Box">
     <div class="centerBox">
       <div class="searchBox">
-        <Search :isAdd="false" @getSearchData="getSearchData" :isSlot="true"
-          ><el-button class="btnAdd" @click="gotoAdd"
-            >新增策略</el-button
-          ></Search
-        >
+        <Search :isAdd="false" @getSearchData="getSearchData" @clearSearchData="clearSearchData" :isSlot="true">
+          <el-button class="btnAdd" @click="gotoAdd">新增策略</el-button>
+        </Search>
       </div>
-      <div class="center-box">
-        <el-card class="box-card" v-for="(item, index) in tacList" :key="index">
-          <button
-            type="text"
-            @click="open(item,index)"
-            style="
+      <div class="content-box">
+        <div v-if="tacList.length" class="contentBox">
+          <div v-infinite-scroll="load" :infinite-scroll-distance="20" infinite-scroll-disabled="disabled" class="center-box">
+            <el-card class="box-card" v-for="(item, index) in tacList" :key="index">
+              <button type="text" @click="open(item,index)" style="
               float: right;
               padding: 3px 0;
               border: none;
               color: #303133;
               width: 20px;
               background: #fff;
-            "
-          >
-            ×
-          </button>
-          <div style="padding: 10px">
-            <div class="header-top">
-              <div class="header-mid">
-                <span class="title">{{ item.TacName }} </span>
+            ">
+                ×
+              </button>
+              <div style="padding: 10px">
+                <div class="header-top">
+                  <div class="header-mid">
+                    <span class="title">{{ item.TacName }} </span>
+                  </div>
+                  <div class="loger" @click="EditStystem(item.TacId)"></div>
+                </div>
               </div>
-              <div class="loger"  @click="EditStystem(item.TacId)"></div>
-            </div>
+            </el-card>
           </div>
-        </el-card>
-        <el-empty v-if="tacList.length==0" description="没有内容" style="margin:0 auto"></el-empty>
+          <p class="center" v-if="loading">加载中...</p>
+          <p class="center" v-if="noMore">没有更多数据了~</p>
+        </div>
+        <el-empty v-else description="没有内容" style="margin:0 auto"></el-empty>
       </div>
     </div>
 
@@ -47,9 +47,7 @@
         <div class="title1">删除策略</div>
         <div class="content">是否确认删除该策略?</div>
         <div class="foot right t30">
-          <el-button size="medium" @click="remove(item,index)" type="danger" class="r24"
-            >删除</el-button
-          >
+          <el-button size="medium" @click="remove(item,index)" type="danger" class="r24">删除</el-button>
           <el-button size="medium" @click="flag = false">取消</el-button>
         </div>
       </div>
@@ -60,78 +58,132 @@
 <script>
 import Search from "@/layout/components/Search";
 import Dialog from "@/layout/components/Dialog";
-import { GetTacList ,DeleteTac } from "@/api/systemConfiguration";
+import { GetTacList, DeleteTac } from "@/api/systemConfiguration";
 export default {
   components: { Search, Dialog },
-  data() {
+  data () {
     return {
       flag: false, //弹框开关
       tacList: [],
-      delItem:null,
-      delIndex:null,
-      keyWord:""
+      delItem: null,
+      delIndex: null,
+      keyWord: "",
+      pageNum: 1,
+      PageSize: 40,
+      loading: false,
+      total: null,
+      dataList: [],
+      num: null
     };
   },
-  created:function(){
-    if(this.$route.query.keyWords){
+  created () {
+    if (this.$route.query.keyWords) {
       this.keyWord = this.$route.query.keyWords;
     }
-    this.getTacList();
+    this.getTacList({
+      QueryName: this.keyWord,
+      PageSize: this.PageSize,
+      PageIndex: this.pageNum
+    });
+  },
+  computed: {
+    noMore () {
+      return this.pageNum >= this.total
+    },
+    disabled () {
+      return this.loading || this.noMore
+    }
   },
   methods: {
-    getSearchData: function (data) {
+    getSearchData (data) {
       this.keyWord = data;
-      this.getTacList()
+      this.dataList = [];
+      this.tacList = [];
+      this.pageNum = 1;
+      this.getTacList({
+        QueryName: this.keyWord,
+        PageSize: this.PageSize,
+        PageIndex: this.pageNum
+      });
+    },
+    clearSearchData () {
+      this.keyWord = '';
+      this.dataList = [];
+      this.tacList = [];
+      this.pageNum = 1;
+      this.getTacList({
+        QueryName: this.keyWord,
+        PageSize: this.PageSize,
+        PageIndex: this.pageNum
+      });
     },
-    getTacList() {
+    getTacList (obj) {
+      this.loading = true;
       return new Promise((resolve, reject) => {
-        GetTacList({ QueryName: this.keyWord })
+        GetTacList(obj)
           .then((response) => {
             if (response.code === 0) {
               const { returnData } = response;
-              this.tacList = returnData;
+              const datas = returnData.records;
+              this.total = returnData.pages;
+              this.dataList.push(datas)
+              const arrs = this.dataList.flat()
+              this.tacList = arrs;
+              this.loading = false;
             }
             resolve();
           })
           .catch((error) => {
             reject(error);
+            this.loading = false;
           });
       });
     },
-    gotoSystem() {
+    gotoSystem () {
       this.$router.push("/systemManagement");
     },
     // 新增页面
-    gotoAdd() {
+    gotoAdd () {
       this.$router.push("/addSystem");
     },
     //编辑页面
-    EditStystem(id) {
-      this.$router.push({path:"/EditSystem",query:{TacId:id}});
+    EditStystem (id) {
+      this.$router.push({ path: "/EditSystem", query: { TacId: id } });
     },
     //删除
-    remove() {
+    remove () {
       return new Promise((resolve, reject) => {
-        DeleteTac({ TacId: this.delItem.TacId})
+        DeleteTac({ TacId: this.delItem.TacId })
           .then((response) => {
             if (response.code === 0) {
               this.delItem = null;
               this.$message.success("删除成功");
-              this.tacList.splice(this.delIndex,1)
+              this.tacList.splice(this.delIndex, 1)
+              this.delIndex = null
               this.flag = false;
             }
             resolve();
           })
           .catch((error) => {
             reject(error);
+            this.flag = false;
           });
       });
     },
-    open(data,index) {
+    open (data, index) {
       this.delItem = data;
       this.delIndex = index;
       this.flag = true;
     },
+    //滚动加载数据
+    load () {
+      this.pageNum += 1
+      this.getTacList({
+        QueryName: this.keyWord,
+        PageSize: this.PageSize,
+        PageIndex: this.pageNum
+      });
+    }
   },
 };
 </script>
@@ -165,6 +217,14 @@ export default {
   margin-right: 52px;
   border-radius: 16px;
 }
+.content-box {
+  height: 100%;
+  width: 100%;
+  display: flex;
+}
+.contentBox {
+  height: 76vh;
+}
 .center-box {
   margin-top: 50px;
   display: flex;
@@ -172,6 +232,10 @@ export default {
   flex-wrap: wrap;
   margin-left: 160px;
   width: calc(100% - 149px);
+  height: 70vh;
+  overflow-y: auto;
+  overflow-x: hidden;
+  padding-bottom: 20px;
 }
 .colorTitle {
   margin-top: 20px;
@@ -218,10 +282,10 @@ export default {
   font-weight: bold;
   color: #303133;
   display: inline-block;
-   white-space: nowrap;
-    text-overflow: ellipsis;
-    overflow: hidden;
-    word-break: break-all;
+  white-space: nowrap;
+  text-overflow: ellipsis;
+  overflow: hidden;
+  word-break: break-all;
 }
 .title1 {
   width: 150px;
@@ -275,5 +339,4 @@ export default {
     margin: 35px 0 24px 60px;
   }
 }
-
 </style>