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

60 lines
970 B

1 year ago
  1. <template>
  2. <view class="content">
  3. <image class="logo" src="/static/logo.png" @click="goPage"></image>
  4. <view class="text-area">
  5. <text class="title">你好</text>
  6. </view>
  7. <UserTab tabNumber="兴趣小组"></UserTab>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. title: 'Hello'
  15. }
  16. },
  17. onLoad() {
  18. },
  19. methods: {
  20. goPage() {
  21. // uni.navigateTo({
  22. // url: '/pages/index/test'
  23. // })
  24. // plus.runtime.openURL("car://paymoney/carstep:8888://");
  25. // plus.runtime.openURL("paymoney://car:8898/carstep");
  26. }
  27. }
  28. }
  29. </script>
  30. <style>
  31. .content {
  32. display: flex;
  33. flex-direction: column;
  34. align-items: center;
  35. justify-content: center;
  36. }
  37. .logo {
  38. height: 200rpx;
  39. width: 200rpx;
  40. margin-top: 200rpx;
  41. margin-left: auto;
  42. margin-right: auto;
  43. margin-bottom: 50rpx;
  44. }
  45. .text-area {
  46. display: flex;
  47. justify-content: center;
  48. }
  49. .title {
  50. font-size: 36rpx;
  51. color: #8f8f94;
  52. }
  53. </style>