chenrui  2 年之前
父節點
當前提交
6a965f6646
共有 2 個文件被更改,包括 53 次插入0 次删除
  1. 13 0
      src/api/dataIntegration.ts
  2. 40 0
      src/views/systemSettings/queryTemplate/index.vue

+ 13 - 0
src/api/dataIntegration.ts

@@ -0,0 +1,13 @@
+import request from "axios";
+import { ObjTy } from "~/common";
+
+export function Query(params: ObjTy) {
+  return request({
+    url: "/openApi/query",
+    method: "post",
+    data: params,
+    headers: {
+      "content-type": "application/json",
+    },
+  });
+}

+ 40 - 0
src/views/systemSettings/queryTemplate/index.vue

@@ -24,7 +24,15 @@
 import DataTable from "@/components/tableTemp/index.vue";
 import Minheader from "@/components/minheader/index.vue";
 import Dialog from "@/components/dialog/index.vue";
+import { Query } from "@/api/dataIntegration";
 const router = useRouter();
+const dataId = ref<String>("4"); //请求id
+const page = ref<number>(0); //分页参数
+const dataContent = ref<object>({});
+const noMore = ref<Boolean>(false);
+const rowTitle = ref<String>("");
+const tableCols = ref([]); //表头数据
+const serviceId = ref<String>("");
 const flag = ref<Boolean>(false); //弹窗开关
 const type = ref<String>(""); //判断是否删除
 const msgTitle = ref<String>("新增查询模板"); //弹窗标题
@@ -127,6 +135,38 @@ const eleDialog = () => {
 const delRest = () => {
   flag.value = false;
 };
+//获取表格数据
+const getQuery = async () => {
+  try {
+    const { code, returnData } = await Query({
+      id: dataId.value,
+      needPage: ++page.value,
+      dataContent: Object.values(dataContent.value),
+    });
+    if (code == 0) {
+      if (returnData.listValues.length === 0) {
+        page.value--;
+        noMore.value = true;
+      }
+      const titleColumn = returnData.columnSet.find(
+        (item) => item.needShow === 1
+      );
+      if (titleColumn) {
+        rowTitle.value = titleColumn.columnName;
+      }
+      tableData.value.push(...returnData.listValues);
+      tableCols.value = returnData.columnSet;
+      serviceId.value = returnData.submitID;
+    } else {
+      page.value--;
+    }
+  } catch (error) {
+    page.value--;
+  }
+};
+onMounted(() => {
+  getQuery();
+});
 </script>
 <style lang="scss" scoped>
 ::v-deep .el-form-item__label {