소스 검색

fix(router): 修正路由路径配置

- 将比赛类目管理路由从 /service/catory 更新为 /operation/catory
- 将比赛标签管理路由从 /service/tag 更新为 /operation/tag
- 将商户项目管理路由从 /physical/merchantItem 更新为 /mall/merchantItem
fugui 1 개월 전
부모
커밋
cd17c75a74
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 2
      src/views/system/business/tournaments/index.vue
  2. 1 1
      src/views/system/physical/merchantPartner/index.vue

+ 2 - 2
src/views/system/business/tournaments/index.vue

@@ -54,12 +54,12 @@
           </el-col>
           <el-col :span="1.5">
             <el-button type="warning" plain icon="Operation">
-              <router-link to="/service/catory">比赛类目管理</router-link>
+              <router-link to="/operation/catory">比赛类目管理</router-link>
             </el-button>
           </el-col>
           <el-col :span="1.5">
             <el-button type="success" plain icon="Operation">
-              <router-link to="/service/tag">比赛标签管理</router-link>
+              <router-link to="/operation/tag">比赛标签管理</router-link>
             </el-button>
           </el-col>
           <!-- 新增的 “盲注管理” 按钮 -->

+ 1 - 1
src/views/system/physical/merchantPartner/index.vue

@@ -280,7 +280,7 @@ const handleExport = () => {
 };
 const handleViewSubInfo = (merchantId: number) => {
   proxy?.$router.push({
-    path: '/physical/merchantItem',
+    path: '/mall/merchantItem',
     query: {
       merchantId: String(merchantId) // 转为字符串以兼容 URL 参数
     }