浏览代码

进入分类页的时候自动勾选左侧一级分类

卢越 1 年之前
父节点
当前提交
fd83bcf02a
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      pages/index/category.vue

+ 2 - 2
pages/index/category.vue

@@ -135,9 +135,9 @@
     await getList();
 	// 从主页点进来的时候自动选中左侧一级菜单
 	const cateList = state.categoryList
-	for (let index = 0; index < cateList.length;index++) {
+	for (let index = 0; index < cateList.length; index++) {
 		if (cateList[index].id == params.id) {
-			state.activeMenu = index
+			onMenu(index);
 			break;
 		}
 	}