登录调整

This commit is contained in:
gcd 2025-03-27 23:24:04 +08:00
parent 5f44da79cc
commit 4a086e0489
2 changed files with 7 additions and 1 deletions

View File

@ -23,7 +23,7 @@
</view>
</view>
<view class="visitor-ctr flex-c">
<view class="visitor flex-c" hover-class="auto-mask-layer-radius8" hover-start-time="0" hover-stay-time="50">体验一下</view>
<view class="visitor flex-c" @click="visitor()" hover-class="auto-mask-layer-radius8" hover-start-time="0" hover-stay-time="50">体验一下</view>
</view>
</view>
</template>
@ -35,6 +35,10 @@ import MeButton from "../../components/me-button/me-button.vue";
import { ref, reactive, computed, watch } from 'vue'
import helpers from "../../utils/helpers";
const visitor = () => {
helpers.jumpToPage('index', '', 'switchTab')
}
//
const checked = ref(false)

View File

@ -19,6 +19,8 @@ class helpers {
'order-info': '/pages/order/order-info',
//提交订单
'order-submit': '/pages/order/order-submit',
//首页
'index': '/pages/index/index',
}
url = paths[pathName]