diff --git a/src/views/backOfficeSystem/ExcavationResearch/PreliminaryExcavations/index.vue b/src/views/backOfficeSystem/ExcavationResearch/PreliminaryExcavations/index.vue index 11f12ba..46d3166 100644 --- a/src/views/backOfficeSystem/ExcavationResearch/PreliminaryExcavations/index.vue +++ b/src/views/backOfficeSystem/ExcavationResearch/PreliminaryExcavations/index.vue @@ -83,8 +83,6 @@ - - @@ -100,7 +98,6 @@ import MyTable from "@/components/aboutTable/MyTable.vue"; import Pages from "@/components/aboutTable/Pages.vue"; import Search from "@/components/aboutTable/Search.vue"; import addForm from "./components/addForm.vue"; -import IntelligentParsing from "./components/IntelligentParsing.vue"; import { ElMessage } from "element-plus"; import { qcckGet, qcckDelete } from "@/api/qcckApi.js"; import { reactive, ref, onMounted, getCurrentInstance, nextTick } from "vue"; @@ -129,7 +126,6 @@ const chooselx = ref(""); const ids = ref([]); const addFormDiloag = ref(); const showEdit = ref(false); -const IntelligentParsingRef = ref(); const searchBox = ref(); const queryFrom = ref({}); const pageData = reactive({ @@ -274,12 +270,13 @@ const updateDate = (val) =>{ const handelSub = (val) =>{ pageData.tableData = val; + } // 智能解析 const intelligent = () => { if(pageData.tableData.length == 0) return proxy.$message({ type: "warning", message: "请先选择数据" });; - IntelligentParsingRef.value.init(); + // IntelligentParsingRef.value.init(); };