From e33f0786dd150825ca46429d438948446e3ae743 Mon Sep 17 00:00:00 2001 From: caoqianming Date: Thu, 12 Jun 2025 08:47:16 +0800 Subject: [PATCH 1/2] =?UTF-8?q?feat:=20=E5=90=88=E8=82=A5=E5=8D=97?= =?UTF-8?q?=E6=96=B9=E7=9A=84=E6=80=BB=E6=95=B0=E6=8D=AE=E9=87=8F=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/model/hfnf.js | 16 ++++++++++++++ src/views/fac_cal/hfnf_index.vue | 31 ++++++++++++++++++++++++++ src/views/fac_cal/hfnf_mplogx.vue | 36 +++++++++++++++++++++++++++++++ 3 files changed, 83 insertions(+) create mode 100644 src/api/model/hfnf.js create mode 100644 src/views/fac_cal/hfnf_index.vue create mode 100644 src/views/fac_cal/hfnf_mplogx.vue diff --git a/src/api/model/hfnf.js b/src/api/model/hfnf.js new file mode 100644 index 00000000..1e12772b --- /dev/null +++ b/src/api/model/hfnf.js @@ -0,0 +1,16 @@ +import config from "@/config" +import http from "@/utils/request" +export default { + mplogx: { + list: { + name: "列表", + req: async function(data){ + return await http.post( + `${config.HOST_URL}/hfnf_api/mplogx/`, + // "http://10.0.11.52:5800/mplogx/", + data + ); + } + }, + } +} \ No newline at end of file diff --git a/src/views/fac_cal/hfnf_index.vue b/src/views/fac_cal/hfnf_index.vue new file mode 100644 index 00000000..3d880f26 --- /dev/null +++ b/src/views/fac_cal/hfnf_index.vue @@ -0,0 +1,31 @@ + + \ No newline at end of file diff --git a/src/views/fac_cal/hfnf_mplogx.vue b/src/views/fac_cal/hfnf_mplogx.vue new file mode 100644 index 00000000..a2cbfa37 --- /dev/null +++ b/src/views/fac_cal/hfnf_mplogx.vue @@ -0,0 +1,36 @@ + + \ No newline at end of file From 81373524256dd4113b2091d7d9ab1b791c5a909f Mon Sep 17 00:00:00 2001 From: caoqianming Date: Thu, 12 Jun 2025 09:38:23 +0800 Subject: [PATCH 2/2] =?UTF-8?q?feat:=20ichat=20index=E7=95=8C=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/model/ichat.js | 16 ++++++++++++++++ src/views/ichat/index.vue | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 src/api/model/ichat.js create mode 100644 src/views/ichat/index.vue diff --git a/src/api/model/ichat.js b/src/api/model/ichat.js new file mode 100644 index 00000000..84b67b00 --- /dev/null +++ b/src/api/model/ichat.js @@ -0,0 +1,16 @@ +import config from "@/config" +import http from "@/utils/request" + +export default { + workchain: { + ask: { + name: "询问", + req: async function (data) { + return await http.post( + `${config.API_URL}/ichat/workchain/ask/`, + data + ); + } + } + } +} \ No newline at end of file diff --git a/src/views/ichat/index.vue b/src/views/ichat/index.vue new file mode 100644 index 00000000..f40d4cf4 --- /dev/null +++ b/src/views/ichat/index.vue @@ -0,0 +1,38 @@ + + \ No newline at end of file