Lou
2024-03-20 ee5bd20779565d6231c3b58374e431adb068ca7d
components/tabBar/tabBar.vue
@@ -23,8 +23,8 @@
      data() {
         return {
            tabbarList: [],
            inactiveColor: '#AFB8C3',
            activeColor: '#5086FA',
            inactiveColor: '#C7CED7',
            activeColor: '#017BFC',
            // activeColor: '#003399'
         }
      },
@@ -32,21 +32,19 @@
         list: {
            handler(newVal) {
               if (newVal && newVal.length > 0) {
                  this.tabbarList = newVal
                  this.tabbarList = newVal;
                  if (uni.getStorageSync("activeRole").roleName == "民警") {
                     this.inactiveColor = "#AFB8C3";
                     this.activeColor = "#003399";
                  } else {
                     this.inactiveColor = "#C7CED7"
                     this.activeColor = "#017BFC";
                  }
               }
            },
            deep: true,
            immediate: true
         }
      },
      created() {
         if (uni.getStorageSync("activeRole").roleName == "民警") {
            this.activeColor = "#003399";
         } else {
            this.activeColor = "#5086FA";
         }
      },
      methods: {