From cc2bf59a19b79e97895c26850e8fa7ca0c2308de Mon Sep 17 00:00:00 2001 From: huangchengfa <171504222@qq.com> Date: Thu, 18 Dec 2025 19:20:57 +0800 Subject: [PATCH 01/14] =?UTF-8?q?feat=EF=BC=9A=E5=A2=9E=E5=8A=A0=E5=8F=8D?= =?UTF-8?q?=E9=A6=88=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../MeetingRoom/components/FeedbackForm.vue | 104 ++++++++++++++++++ .../JudgmentHome/MeetingRoom/index.vue | 15 ++- 2 files changed, 118 insertions(+), 1 deletion(-) create mode 100644 src/views/backOfficeSystem/JudgmentHome/MeetingRoom/components/FeedbackForm.vue diff --git a/src/views/backOfficeSystem/JudgmentHome/MeetingRoom/components/FeedbackForm.vue b/src/views/backOfficeSystem/JudgmentHome/MeetingRoom/components/FeedbackForm.vue new file mode 100644 index 0000000..290500a --- /dev/null +++ b/src/views/backOfficeSystem/JudgmentHome/MeetingRoom/components/FeedbackForm.vue @@ -0,0 +1,104 @@ + + + + + diff --git a/src/views/backOfficeSystem/JudgmentHome/MeetingRoom/index.vue b/src/views/backOfficeSystem/JudgmentHome/MeetingRoom/index.vue index 42d2584..3eb8ad0 100644 --- a/src/views/backOfficeSystem/JudgmentHome/MeetingRoom/index.vue +++ b/src/views/backOfficeSystem/JudgmentHome/MeetingRoom/index.vue @@ -32,7 +32,7 @@
加入会议 - 反馈情况 + 反馈情况 处置下发
@@ -76,6 +76,9 @@ + + + + + diff --git a/src/views/backOfficeSystem/JudgmentHome/MeetingRoom/index.vue b/src/views/backOfficeSystem/JudgmentHome/MeetingRoom/index.vue index 3eb8ad0..a6ef000 100644 --- a/src/views/backOfficeSystem/JudgmentHome/MeetingRoom/index.vue +++ b/src/views/backOfficeSystem/JudgmentHome/MeetingRoom/index.vue @@ -38,6 +38,11 @@
+ + + + 查看反馈 + + + + ${textContent} + + + `; + + const blob = new Blob([wordDocument], { + type: 'application/msword' + }); + + saveAs(blob, '战略研判报告.doc'); +}; + +defineExpose({ init }); + + + diff --git a/src/views/backOfficeSystem/JudgmentHome/tacticalResearch/index.vue b/src/views/backOfficeSystem/JudgmentHome/tacticalResearch/index.vue index 9ad9f6f..8d30d8d 100644 --- a/src/views/backOfficeSystem/JudgmentHome/tacticalResearch/index.vue +++ b/src/views/backOfficeSystem/JudgmentHome/tacticalResearch/index.vue @@ -29,6 +29,7 @@ @@ -39,6 +40,9 @@
+ + + From fb9d399598fc7ce1fd647d65485d1c1b2ed4010e Mon Sep 17 00:00:00 2001 From: huangchengfa <171504222@qq.com> Date: Fri, 19 Dec 2025 11:20:19 +0800 Subject: [PATCH 14/14] =?UTF-8?q?feat:=20=E6=8E=A5=E5=8F=A3=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/huiShangyp/tacticalApi.js | 60 +++++++++++++------------------ 1 file changed, 25 insertions(+), 35 deletions(-) diff --git a/src/api/huiShangyp/tacticalApi.js b/src/api/huiShangyp/tacticalApi.js index 31fba06..645a1f3 100644 --- a/src/api/huiShangyp/tacticalApi.js +++ b/src/api/huiShangyp/tacticalApi.js @@ -26,41 +26,6 @@ export const tacticalGet = (params) => { }) } -// 战术研判-新增 -export const tacticalPost = (data, url) => { - return request({ - url: api, - method: "post", - data - }) -} - -// 战术研判-删除 -export const tacticalDelete = (data, url) => { - return request({ - url: api, - method: "delete", - data - }) -} - -// 战术研判-根据ID查询详情 -export const tacticalGetInfo = (id) => { - return request({ - url: api + `/tactical/${id}`, - method: "get" - }) -} - -// 战术研判-编辑 -export const tacticalPut = (data, url) => { - return request({ - url: api, - method: "put", - data - }) -} - /** * 开始研判 @@ -85,6 +50,31 @@ export const endJudgment = (id) => { method: "post" }) } +/** + * 网上会商(新增) + * @param {Object} data 会商数据 + * @param {Array} [data.chryList] 参会人员ID列表 + * @param {string} [data.czyj] 会商处置意见 + * @param {string} [data.glxsid] 关联线索ID(采集ID) + * @param {string} [data.glxsmc] 关联线索名称 + * @param {string} [data.hsbt] 会商标题 + * @param {string} [data.hsjssj] 会商结束时间 (ISO 8601格式) + * @param {string} [data.hskssj] 会商开始时间 (ISO 8601格式) + * @param {string} [data.hsnr] 会商内容 + * @param {string} [data.hybh] 会议编号 + * @param {string} [data.id] ID + * @param {string} [data.plnr] 评论内容 + * @param {string} [data.tsypid] 态势研判ID + * @returns {Promise} 请求Promise对象 + * @returns {Promise} 请求Promise对象 + */ +export const wshsAdd = (data) => { + return request({ + url: api + `/wshs/add`, + method: "post", + data + }) +} /** * 新增研判报告