Sfoglia il codice sorgente

fix(tournaments): 修正路由跳转路径

- 将服务标签路由 /service/tag 更新为运营标签路由 /operation/tag
- 将服务分类路由 /service/catory 更新为运营分类路由 /operation/catory
fugui 1 mese fa
parent
commit
3157b8d319
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      src/views/system/business/tournaments/index.vue

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

@@ -2022,14 +2022,14 @@ const handleGoToTag = () => {
   dialog.visible = false; // 关闭弹窗
   // 使用 nextTick 确保关闭动画完成后跳转(可选)
   nextTick(() => {
-    proxy?.$router.push('/service/tag');
+    proxy?.$router.push('/operation/tag');
   });
 };
 const handleGoToCategory = () => {
   dialog.visible = false; // 关闭弹窗
   // 使用 nextTick 确保关闭动画完成后跳转(可选)
   nextTick(() => {
-    proxy?.$router.push('/service/catory');
+    proxy?.$router.push('/operation/catory');
   });
 };
 // 获取奖励提示内容