增加uniapp

This commit is contained in:
2026-07-15 09:08:52 +08:00
parent 4aa9204df7
commit a5d129cfa0
24 changed files with 2136 additions and 1 deletions
+27
View File
@@ -0,0 +1,27 @@
<script>
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/* 全局样式 */
page {
background-color: #f5f5f5;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
/* 主题色变量 */
:root {
--primary-color: #1989fa;
--primary-light: #e8f4fd;
}
</style>