|
@@ -38,6 +38,7 @@ import { router } from "@/router";
|
|
|
import comSelect from "@/components/company-select/index.vue";
|
|
|
import List from "./list.vue";
|
|
|
import SceneContent from "./sceneContent.vue";
|
|
|
+import { ElMessage } from "element-plus";
|
|
|
import ModelContent from "./modelContent.vue";
|
|
|
import { useScenePaggingParams } from "./pagging";
|
|
|
import { computed, ref, onMounted } from "vue";
|
|
@@ -69,6 +70,10 @@ async function handlegotoelT(record) {
|
|
|
if(await confirm("确定移除场景!")){
|
|
|
list.value = list.value.filter((item) => item.num !== record.num);
|
|
|
submitForm();
|
|
|
+ ElMessage({
|
|
|
+ message: '操作成功',
|
|
|
+ type: 'success',
|
|
|
+ })
|
|
|
}
|
|
|
// console.log("handleActive", params);
|
|
|
}
|