ZZJ
2022-04-02 45faaf27722588e92050e2e3eace9b3704377048
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() {},
  },