| 123456789101112131415161718192021222324252627282930313233343536 |
- <script setup>
- import { ref } from 'vue'
- import { onHide, onLaunch, onShow } from '@dcloudio/uni-app'
- import { initHttp } from '@/utils/request.js'
- onLaunch(async () => {
- // 初始化HTTP拦截器
- initHttp()
- // 获取设备信息
- uni.getSystemInfo({
- success: res => {
- console.log('设备信息:', res)
- }
- })
- })
- onHide(() => {
- })
- onShow(() => {
- })
- </script>
- <style lang="scss">
- @import "uview-plus/index.scss";
- //clamp 可以设置字体大小,根据屏幕大小自动调整字体大小
- /*page {
- background-color: #FFFFE8;
- }*/
- /*每个页面公共css */
- </style>
|