123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <template>
- <view class="content">
- <image class="logo" src="/static/logo.png"></image>
- <view class="text-area">
- <text class="title">{{title}}</text>
- </view>
- </view>
- </template>
- <script>
- import {wel} from '@/config/api.js';
- export default {
- data() {
- return {
- title: 'Hello'
- }
- },
- async onLoad() {
- // console.log(lifeData)
- // if(!this.$u.utils.isLogin()) return
- const res= await wel()
- console.log(res)
- var encrypt = this.aes_decrypt(res.data)
- console.log(encrypt)
- },
- methods: {
- }
- }
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .logo {
- height: 200rpx;
- width: 200rpx;
- margin-top: 200rpx;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 50rpx;
- }
- .text-area {
- display: flex;
- justify-content: center;
- }
- .title {
- font-size: 36rpx;
- color: #8f8f94;
- }
- </style>
|