更新数据
This commit is contained in:
@ -83,8 +83,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- 弹窗智能分析 -->
|
|
||||||
<IntelligentParsing :tableData="pageData.tableData" ref="IntelligentParsingRef" @upadate="getModelList" />
|
|
||||||
<!-- 新增 -->
|
<!-- 新增 -->
|
||||||
<addForm ref="addFormDiloag" v-if="showEdit" @updateDate="updateDate" :dic="{D_GS_RQFJ_LX,D_BZ_SF}" />
|
<addForm ref="addFormDiloag" v-if="showEdit" @updateDate="updateDate" :dic="{D_GS_RQFJ_LX,D_BZ_SF}" />
|
||||||
<!-- 弹窗 -->
|
<!-- 弹窗 -->
|
||||||
@ -100,7 +98,6 @@ import MyTable from "@/components/aboutTable/MyTable.vue";
|
|||||||
import Pages from "@/components/aboutTable/Pages.vue";
|
import Pages from "@/components/aboutTable/Pages.vue";
|
||||||
import Search from "@/components/aboutTable/Search.vue";
|
import Search from "@/components/aboutTable/Search.vue";
|
||||||
import addForm from "./components/addForm.vue";
|
import addForm from "./components/addForm.vue";
|
||||||
import IntelligentParsing from "./components/IntelligentParsing.vue";
|
|
||||||
import { ElMessage } from "element-plus";
|
import { ElMessage } from "element-plus";
|
||||||
import { qcckGet, qcckDelete } from "@/api/qcckApi.js";
|
import { qcckGet, qcckDelete } from "@/api/qcckApi.js";
|
||||||
import { reactive, ref, onMounted, getCurrentInstance, nextTick } from "vue";
|
import { reactive, ref, onMounted, getCurrentInstance, nextTick } from "vue";
|
||||||
@ -129,7 +126,6 @@ const chooselx = ref("");
|
|||||||
const ids = ref([]);
|
const ids = ref([]);
|
||||||
const addFormDiloag = ref();
|
const addFormDiloag = ref();
|
||||||
const showEdit = ref(false);
|
const showEdit = ref(false);
|
||||||
const IntelligentParsingRef = ref();
|
|
||||||
const searchBox = ref();
|
const searchBox = ref();
|
||||||
const queryFrom = ref({});
|
const queryFrom = ref({});
|
||||||
const pageData = reactive({
|
const pageData = reactive({
|
||||||
@ -274,12 +270,13 @@ const updateDate = (val) =>{
|
|||||||
|
|
||||||
const handelSub = (val) =>{
|
const handelSub = (val) =>{
|
||||||
pageData.tableData = val;
|
pageData.tableData = val;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 智能解析
|
// 智能解析
|
||||||
const intelligent = () => {
|
const intelligent = () => {
|
||||||
if(pageData.tableData.length == 0) return proxy.$message({ type: "warning", message: "请先选择数据" });;
|
if(pageData.tableData.length == 0) return proxy.$message({ type: "warning", message: "请先选择数据" });;
|
||||||
IntelligentParsingRef.value.init();
|
// IntelligentParsingRef.value.init();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user