Sfoglia il codice sorgente

fix(tournament):修复赛事结构路由跳转路径- 将赛事模板页面的跳转路径从 /business/structures 更正为 /tournament/structures
- 统一赛事相关模块的路由前缀,确保导航一致性

fugui001 2 mesi fa
parent
commit
8072cc150c

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

@@ -1648,7 +1648,7 @@ const handleGoToStructures = () => {
   dialog.visible = false; // 关闭弹窗
   // 使用 nextTick 确保关闭动画完成后跳转(可选)
   nextTick(() => {
-    proxy?.$router.push('/business/structures');
+    proxy?.$router.push('/tournament/structures');
   });
 };
 // 获取奖励提示内容

+ 1 - 1
src/views/system/business/tournamentsTemplate/index.vue

@@ -1162,7 +1162,7 @@ const handleGoToStructures = () => {
   dialog.visible = false; // 关闭弹窗
   // 使用 nextTick 确保关闭动画完成后跳转(可选)
   nextTick(() => {
-    proxy?.$router.push('/business/structures');
+    proxy?.$router.push('/tournament/structures');
   });
 };
 // 获取奖励提示内容