学员端小程序
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

1 year ago
1 year ago
1 year ago
  1. <template>
  2. <view class="content">
  3. 学车
  4. {{$store.state.user.vuex_userInfo.name}}
  5. <button @click="clickFn"> 打我啊 </button>
  6. <!-- <UserTab selectedIndex ='1'></UserTab> -->
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. }
  14. },
  15. onLoad() {
  16. },
  17. onShow() {
  18. // uni.hideTabBar();
  19. },
  20. methods: {
  21. clickFn() {
  22. uni.navigateTo({
  23. url: '/pages/userCenter/login/loginByPhone'
  24. })
  25. }
  26. }
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. .content {
  31. width: 100vw;
  32. height: 100vh;
  33. }
  34. </style>