index.vue 975 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <view class="content">
  3. <image class="logo" src="/static/logo.png"></image>
  4. <view>
  5. <text class="title">{{title}}</text>
  6. <van-button type="info" @click='test'>默认按钮</van-button>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. title: 'Hello'
  15. }
  16. },
  17. onLoad() {
  18. },
  19. methods: {
  20. test(){
  21. this.$toast('需要同意授权')
  22. this.$api.commonApi.getBaseInfo().then(res => {
  23. if (res.code === 200) {
  24. console.log(res)
  25. } else {
  26. }
  27. })
  28. }
  29. }
  30. }
  31. </script>
  32. <style>
  33. .content {
  34. display: flex;
  35. flex-direction: column;
  36. align-items: center;
  37. justify-content: center;
  38. }
  39. .logo {
  40. height: 200rpx;
  41. width: 200rpx;
  42. margin: 200rpx auto 50rpx auto;
  43. }
  44. .text-area {
  45. display: flex;
  46. justify-content: center;
  47. }
  48. .title {
  49. font-size: 36rpx;
  50. color: #8f8f94;
  51. }
  52. </style>