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