first commit

This commit is contained in:
编码猿
2024-09-27 01:09:14 +08:00
commit 9420feb4c9
56 changed files with 1811 additions and 0 deletions

19
UniAppMobile/App.vue Normal file
View File

@@ -0,0 +1,19 @@
<script>
export default {
onLaunch: function() {
// 模拟数据保存用户id实际项目中这应该是用户token
uni.setStorageSync('userinfo', { id: 1 });
console.log('App Launch')
},
onShow: function() {
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/*每个页面公共css */
</style>