jianghaili 2 долоо хоног өмнө
parent
commit
3995075012

+ 101 - 2
pages.json

@@ -30,6 +30,106 @@
 				// #endif 
 			}
 		},
+		{
+			"path": "pages/my/jobApplicant/loginInput",
+			"style": {
+				"navigationBarTitleText": "登录"
+				// #ifdef H5
+				,
+				"navigationStyle": "custom"
+				// #endif 
+			}
+		},
+		{
+			"path": "pages/my/jobApplicant/guidePage",
+			"style": {
+				"navigationBarTitleText": "启动页"
+				// #ifdef H5
+				,
+				"navigationStyle": "custom"
+				// #endif 
+			}
+		},
+		{
+			"path": "pages/my/jobApplicant/register",
+			"style": {
+				"navigationBarTitleText": "注册"
+				// #ifdef H5
+				,
+				"navigationStyle": "custom"
+				// #endif 
+			}
+		},
+		{
+			"path": "pages/my/jobApplicant/registerSuccess",
+			"style": {
+				"navigationBarTitleText": "注册成功"
+				// #ifdef H5
+				,
+				"navigationStyle": "custom"
+				// #endif 
+			}
+		},
+		{
+			"path": "pages/my/jobApplicant/password",
+			"style": {
+				"navigationBarTitleText": "创建账号密码"
+				// #ifdef H5
+				,
+				"navigationStyle": "custom"
+				// #endif 
+			}
+		},
+		{
+			"path": "pages/my/jobApplicant/login",
+			"style": {
+				"navigationBarTitleText": "登录"
+				// #ifdef H5
+				,
+				"navigationStyle": "custom"
+				// #endif 
+			}
+		},
+		{
+			"path": "pages/my/jobApplicant/startPage",
+			"style": {
+				"navigationBarTitleText": "开始页面"
+				// #ifdef H5
+				,
+				"navigationStyle": "custom"
+				// #endif 
+			}
+		},
+		{
+			"path": "pages/my/jobApplicant/welcomePage",
+			"style": {
+				"navigationBarTitleText": "指导页"
+				// #ifdef H5
+				,
+				"navigationStyle": "custom"
+				// #endif 
+			}
+		},
+		{
+			"path": "pages/my/jobApplicant/workProgress",
+			"style": {
+				"navigationBarTitleText": "工作经历"
+				// #ifdef H5
+				,
+				"navigationStyle": "custom"
+				// #endif 
+			}
+		},
+		{
+			"path": "pages/my/jobApplicant/workRecord",
+			"style": {
+				"navigationBarTitleText": "工作经历"
+				// #ifdef H5
+				,
+				"navigationStyle": "custom"
+				// #endif 
+			}
+		},
 		{
 			"path": "pages/index/game/gameList",
 			"style": {
@@ -155,7 +255,6 @@
 			"style": {
 				"navigationBarTitleText": "工作经历",
 				"navigationStyle": "custom"
-
 			}
 		},
 		{
@@ -202,7 +301,7 @@
 				// #endif 
 			}
 		},
-				{
+		{
 			"path": "pages/my/ruleCenter",
 			"style": {
 				"navigationBarTitleText": "规则中心"

+ 3 - 1
pages/my/index.vue

@@ -313,8 +313,10 @@
               <view
                 class="flex justify-center flex-wrap"
                 style="width: 112rpx"
-                @click="goNavNoLogin('/my/setting/about')"
+                @click="goNavNoLogin('/pages/my/jobApplicant/startPage')"
               >
+              <!-- goNavNoLogin('/my/setting/about') -->
+              <!-- pages/my/jobApplicant/startPage -->
                 <image
                   src="../../static/images/my/icon/utils/utils7.png"
                   style="width: 54rpx; height: 54rpx"

+ 6 - 3
pages/my/jobApplicant/login.vue

@@ -4,17 +4,17 @@
       <image src="@/static/images/jobApplicant/logo.svg" mode="scaleToFill" />
     </view>
     <view class="login-btn-box">
-      <view class="login-btn wechat"
+      <view class="login-btn wechat" @click="goLogin"
         ><image src="@/static/images/jobApplicant/wechat.svg" mode="scaleToFill" />
         微信登录</view
       >
-      <view class="login-btn password"
+      <view class="login-btn password" @click="goLogin"
         ><image
           src="@/static/images/jobApplicant/password.svg"
           mode="scaleToFill"
         />账号密码登录</view
       >
-      <view class="login-btn phone"
+      <view class="login-btn phone" @click="goLogin"
         ><image
           src="@/static/images/jobApplicant/phone.svg"
           mode="scaleToFill"
@@ -53,6 +53,9 @@ export default {
     isArgee() {
       this.argee = !this.argee;
     },
+    goLogin() {
+      uni.navigateTo({ url: "/pages/my/jobApplicant/loginInput" });
+    },
   },
 };
 </script>

+ 6 - 2
pages/my/jobApplicant/startPage.vue

@@ -43,7 +43,7 @@
         ></view>
       </view>
     </view>
-    <view class="start-btn">开启探索之旅</view>
+    <view class="start-btn" @click="goLogin">开启探索之旅</view>
   </view>
 </template>
 <script>
@@ -72,7 +72,11 @@ export default {
         });
       }
     },
-
+    goLogin() {
+      uni.navigateTo({
+        url: "/pages/my/jobApplicant/login",
+      });
+    },
     // 暂停自动播放
     pauseAutoplay() {
       this.autoplay = false;