Files
hnxdcount-uniapp/App.vue
PC-202306242200\Administrator dac42e3b0c first commit
2026-03-28 23:09:02 +08:00

28 lines
525 B
Vue

<script>
import store from '@/store/index.js';
export default {
onLaunch: function (options) {
let token = uni.getStorageSync('token');
// if (token) {
// store.commit('setToken', token);
// } else {
// uni.reLaunch({
// url: '/pages/login/login'
// });
// }
},
onShow: function (e) {},
onHide: function () {}
};
</script>
<style lang="scss">
/*每个页面公共css */
@import '@/uni_modules/uview-plus/index.scss';
@import '@/common/index.scss';
input {
background: rgba(0, 0, 0, 0);
}
</style>