ZZJ
2022-04-12 994e5e08cba4e6b9ce321b7cf5cb1ec8d19dfa22
src/views/manageCenter/index.vue
@@ -19,11 +19,10 @@
            class="productItem"
            v-for="(item, index) in productList"
            :key="index"
            @click="jump(item.path)"
          >
            <router-link :to="item.path">
              <img :src="item.icon" alt="" />
              <div class="name">{{ item.name }}</div>
            </router-link>
            <img :src="item.icon" alt="" />
            <div class="name">{{ item.name }}</div>
          </div>
        </div>
      </div>
@@ -852,6 +851,9 @@
      let myChart = echarts.init(pieDom);
      myChart.setOption(this.pieOption);
    },
    jump(path) {
      this.$router.push(path);
    },
    refrash() {},
    handleSizeChange() {},
  },