You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
539 B
36 lines
539 B
<template>
|
|
<view class="content">
|
|
学车
|
|
{{$store.state.user.vuex_userInfo.name}}
|
|
<button @click="clickFn"> 打我啊 </button>
|
|
<!-- <UserTab selectedIndex ='1'></UserTab> -->
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
onLoad() {
|
|
},
|
|
onShow() {
|
|
// uni.hideTabBar();
|
|
},
|
|
methods: {
|
|
clickFn() {
|
|
uni.navigateTo({
|
|
url: '/pages/userCenter/login/loginByPhone'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.content {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
</style>
|