This commit is contained in:
zk
2023-12-12 14:24:48 +08:00
parent c5e1dd5d19
commit 825d10fc35
8 changed files with 367 additions and 20 deletions
@@ -88,7 +88,7 @@ export function useFooterTable() {
{
name: '佩戴手表人数',
value: '',
key: 'allotDeviceNum'
key: 'allotDeviceNum',
},
{
name: '近一周活跃人数',
@@ -123,4 +123,21 @@ export function useFooterTable() {
footerList,
setFooterList
}
}
export function useMoveClass() {
const isShow = ref(false)
const className = ref('slide-bottom')
function setIsShow(type: boolean) {
isShow.value = type
className.value = type ? 'slide-top' : 'slide-bottom'
}
return {
isShow,
className,
setIsShow
}
}