a7e056643e
- cashier-mobile: 收银系统移动端(uni-app) - customer-mobile: 顾客端移动端(uni-app) - 包含基础页面结构:首页、订单、会员 - 更新 AGENTS.md 配置
23 lines
372 B
Vue
23 lines
372 B
Vue
<script setup>
|
|
import { onLaunch, onShow, onHide } from '@dcloudio/uni-app'
|
|
|
|
onLaunch(() => {
|
|
console.log('顾客端启动')
|
|
})
|
|
|
|
onShow(() => {
|
|
console.log('顾客端显示')
|
|
})
|
|
|
|
onHide(() => {
|
|
console.log('顾客端隐藏')
|
|
})
|
|
</script>
|
|
|
|
<style>
|
|
/* 全局样式 */
|
|
page {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
}
|
|
</style>
|