12345678910111213141516171819202122232425262728293031323334353637 |
- <script>
- import {
- setToken,
- getToken,
- removeToken
- } from '@/utils/auth'
- export default {
- onLaunch: function() {
- console.log('App Launch')
- wx.getSystemInfo().then(res=>{
- uni.setStorageSync('sysInfo',res)
- })
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style>
- @import "/wxcomponents/vant/common/index.wxss";
- @import "@/common/css/animation.css";
- /*每个页面公共css */
- *{
- margin: 0;
- padding: 0;
- }
- html{
- background-color: #F1F1F1;
- }
- .night{
- filter: invert(1) hue-rotate(180deg);
- }
- </style>
|