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/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/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 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