acdr/acdr-ui/src/App.vue
2024-09-08 14:01:29 +08:00

96 lines
1.8 KiB
Vue

<script setup lang="js">
import { onLaunch, onShow, onHide } from '@dcloudio/uni-app'
import { notificationService } from './service/notificationService'
import { ShoproInit } from './sheep'
onLoad(() => {
// 隐藏底部导航栏
uni.hideTabBar()
})
// 在应用启动时注册轮询服务
onLaunch(() => {
console.log('应用正在运行...')
uni.hideTabBar()
notificationService.startPollingUnreadMessages()
// 加载底部商城依赖
ShoproInit()
})
// 当应用进入前台时继续轮询服务
onShow(() => {
console.log('应用显示出来了...')
notificationService.startPollingUnreadMessages()
// 下面是商城模块的初始化方法
// #ifdef APP-PLUS
// 获取urlSchemes参数
const args = plus.runtime.arguments
if (args) {
}
// 获取剪贴板
uni.getClipboardData({
success: (res) => {},
})
// #endif
// #ifdef MP-WEIXIN
// 确认收货回调结果
console.log(options, 'options')
// #endif
})
// 当应用进入后台时停止轮询服务
onHide(() => {
console.log('App Hide')
notificationService.stopPollingUnreadMessages()
})
</script>
<style lang="scss">
@import '@/style/index.scss';
button::after {
border: none;
}
swiper,
scroll-view {
flex: 1;
height: 100%;
overflow: hidden;
}
image {
width: 100%;
height: 100%;
vertical-align: middle;
}
// 单行省略,优先使用 unocss: text-ellipsis
.ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
// 两行省略
.ellipsis-2 {
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
// 三行省略
.ellipsis-3 {
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}
</style>