2 Commits 7bc928f3c8 ... d54175c8c4

Autor SHA1 Mensaje Fecha
  gydx_2024_qin d54175c8c4 Merge branch 'master' of http://62.234.223.238:3000/gydx_2024_3a1/question-1-app hace 2 meses
  gydx_2024_qin 112e7c32d5 1 hace 2 meses
Se han modificado 2 ficheros con 10 adiciones y 1 borrados
  1. 7 0
      pages.json
  2. 3 1
      pages/index.vue

+ 7 - 0
pages.json

@@ -27,6 +27,13 @@
 			}
 		}
 		,
+		{
+			"path": "pages/mine/answer/challenge",
+			"style": {
+				"navigationBarTitleText": "百分挑战"
+			}
+		}
+		,
         {
             "path" : "pages/mine/index",
             "style" : {

+ 3 - 1
pages/index.vue

@@ -31,7 +31,9 @@ export default {
     },
     onArea3Click() {
       // 假设跳转到百分挑战页面
-     console.log("zheshi 3")
+     uni.navigateTo({
+       url: '/pages/mine/answer/challenge'
+     });
     }
   }
 };