Files
rui-docs/cashier-customer/App.vue
T
vifo 106e1c14fe refactor: 重命名 customer-mobile 为 cashier-customer
统一收银相关项目命名:
- cashier-mobile: 收银端(店员使用)
- cashier-customer: 顾客端(顾客使用)

更新所有相关配置和引用
2026-06-04 08:32:24 +08:00

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>