1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <view class="content">
- <image class="logo" src="/static/logo.png"></image>
- <view>
- <text class="title">{{title}}</text>
- <van-button type="info" @click='test'>默认按钮</van-button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: 'Hello'
- }
- },
- onLoad() {
- },
- methods: {
- test(){
- this.$toast('需要同意授权')
- this.$api.commonApi.getBaseInfo().then(res => {
- if (res.code === 200) {
- console.log(res)
- } else {
- }
- })
- }
- }
- }
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .logo {
- height: 200rpx;
- width: 200rpx;
- margin: 200rpx auto 50rpx auto;
- }
- .text-area {
- display: flex;
- justify-content: center;
- }
- .title {
- font-size: 36rpx;
- color: #8f8f94;
- }
- </style>
|