This commit is contained in:
2026-01-05 12:47:14 +08:00
commit 1fc846fae3
1614 changed files with 162035 additions and 0 deletions

25
App.vue Normal file
View File

@@ -0,0 +1,25 @@
<script>
// import {ShoppingCartType} from '@/common/constants';
export default {
onLaunch: function () {
// const shoppingCartType = uni.getStorageSync('SHOPPING_CART_TYPE');
// if (!shoppingCartType) {
// uni.setStorageSync('SHOPPING_CART_TYPE', ShoppingCartType.PHONE)
// }
// uni.hideTabBar()
console.log('App Launch')
},
onShow: function() {
// uni.hideTabBar()
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style lang="scss">
@import "@/uni_modules/nutui-uni/styles/index.scss";
</style>