update
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user