shikeying
2023-04-11 bfee44c01a3f5f6de96c9dfa1e12cef4700eaf5b
src/views/components/myButtonV2.vue
@@ -376,9 +376,16 @@
    }
  },
  created() {
    if (this.checkPermission != '' && this.$store.getters.myButtonPermission.indexOf(this.checkPermission) < 0) {
      this.show = false
      return
    // console.log(this.$store.getters.permissions);
    if (this.checkPermission != '') {
      let userPermission = this.$store.getters.permissions;
      if(userPermission.indexOf("*:*:*") >= 0){
        // 有所有权限
        this.show = true;
      } else if(userPermission.indexOf(this.checkPermission) < 0){
        this.show = false
        return
      }
    }
    this.myName = this.name
    if (this.site == 'filter') {