@@ -0,0 +1,34 @@
+<template>
+ <view class="guide-page">
+ <view class="guide-item"></view>
+ </view>
+</template>
+<script>
+export default {
+ data() {
+ return {};
+ },
+};
+</script>
+<style scoped lang="scss">
+.guide-page {
+ background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
+ position: absolute;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ padding: 120rpx 76rpx;
+ display: flex;
+ flex-direction: column;
+ box-sizing: border-box;
+ gap: 36rpx;
+ .guide-item {
+ width: 100%;
+ height: 100%;
+ border-radius: 28rpx;
+ background: rgba(255, 255, 255, 0.851);
+ }
+}
+</style>
@@ -103,9 +103,13 @@ export default {
// 登录成功后的操作,比如跳转到首页
setTimeout(() => {
- uni.switchTab({
- url: "/pages/index/index",
- });
+ console.log('登录')
+ // uni.switchTab({
+ // url: "/pages/index/index",
+ // });
+ uni.navigateTo({
+ url:'/pages/my/jobApplicant/guidePage'
+ })
}, 1500);
}, 2000);
},