修改冀北现场问题

This commit is contained in:
GGJ
2025-12-12 09:26:56 +08:00
parent b36f765d07
commit 46c55d48ec
38 changed files with 1489 additions and 1370 deletions

View File

@@ -26,15 +26,15 @@ const key = ref('')
defineOptions({
name: 'supervision/supervision/manage'
})
let tabList = ['3', '4']
const tabList = ref(['3', '4'])
const activeName: any = ref('3')
onMounted(() => {
let key = window.location.href.slice(-1)
let key = window.location.href.split('?')[0].slice(-1)
const isNumber = /^\d$/.test(key)
// if (isNumber) {
// tabList = [key]
// activeName.value = key
// }
if (isNumber) {
tabList.value = [key]
activeName.value = key
}
})
watch(