This commit is contained in:
GYYM
2024-11-22 13:27:41 +08:00
parent b77ad54309
commit 428c74047b
3 changed files with 43 additions and 33 deletions

View File

@@ -291,7 +291,7 @@ const planDetail = () => {
};
//功能选择css切换
const handleCheckFunction = (val: any) => {
// console.log("test",val);
editableTabsValue.value = '0';
form.value.activeChildTabs = 0;
tabsList.value.map((item: any, index: any) => {
@@ -303,7 +303,7 @@ const handleCheckFunction = (val: any) => {
});
tabShow.value = false;
console.log("test",val,tabLabel1.value);
switch (val) {
case 0://自动检测
tabLabel1.value = "设备检测";
@@ -320,11 +320,12 @@ const handleCheckFunction = (val: any) => {
break;
case 4://设备归档
tabLabel1.value = "设备归档";
break;
case 5://数据查询
tabLabel1.value = "数据查询";
break;
}
console.log("test",val,tabLabel1.value);
form.value.activeTabs = val;
};