This commit is contained in:
sjl
2024-11-14 18:26:34 +08:00
parent 65cb7826d3
commit 87fe66da3e
42 changed files with 188 additions and 204 deletions

View File

@@ -126,13 +126,13 @@ const tabShow= ref(false);
const tabLabel1 = ref('自动检测')
const editableTabsValue = ref('0')
const handleChange = (val: string[]) => {
console.log(val)
// console.log(val)
}
const handleTabsChange = (val) => {
form.value.activeTabs = 0;
form.value.activeTabs = 3;
console.log(val)
// console.log(val)
}
localStorage.setItem("color", "red");
//功能选择数据
@@ -279,7 +279,7 @@ const planDetail = () => {
};
//功能选择css切换
const handleCheckFunction = (val: any) => {
console.log("test",val);
// console.log("test",val);
editableTabsValue.value = '0';
tabsList.value.map((item: any, index: any) => {
if (val == item.value) {
@@ -314,7 +314,7 @@ const handleCheckFunction = (val: any) => {
};
onMounted(() => {
console.log();
// console.log();
getTree();
getPieData();
});