Browse Source

数据采集列表权限补充提交

hezhihong 1 year ago
parent
commit
68f04f3416
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/views/GATHER/index.vue

+ 3 - 0
src/views/GATHER/index.vue

@@ -281,6 +281,7 @@ import importFile from "./importFile.vue";
 import { saveAs } from 'file-saver';
 import { getToken } from '@/utils/auth';
 import axios from 'axios';
+import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
 
 export default {
   name: 'GATHER',
@@ -377,6 +378,8 @@ export default {
     this.getList();
   },
   methods: {
+    checkPermi,
+    checkRole,
     validatorNum(rule, value, callback) {},
     validatorFloatNum(rule, value, callback) {
       let reg = /^[+-]?(0|([1-9]\d*))(\.\d+)?$/g;