first commit

This commit is contained in:
PC-202306242200\Administrator
2026-03-28 23:09:02 +08:00
commit dac42e3b0c
3512 changed files with 181637 additions and 0 deletions

27
App.vue Normal file
View File

@@ -0,0 +1,27 @@
<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>