first commit

This commit is contained in:
2026-01-14 14:24:58 +08:00
commit 3ccc482933
37 changed files with 4395 additions and 0 deletions

28
App.vue Normal file
View File

@@ -0,0 +1,28 @@
<script>
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/* 全局样式 */
/* uni-input .uni-input-input {
color: #e2e8f0 !important;
} */
/* 不使用 scoped这样样式可以穿透组件 */
/* .form-group uni-input .uni-input-input {
color: #2c3e50 !important;
background: rgba(255, 255, 255, 0.9);
padding: 15px 18px;
border-radius: 12px;
} */
</style>