From 8bebaefa71d1fa50a6f1b9d57ea040da57b36be6 Mon Sep 17 00:00:00 2001 From: wxc <191104855@qq.com> Date: Fri, 27 Dec 2024 17:55:16 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E5=85=AC=E5=AE=89=E9=83=A8=E4=BF=A1?= =?UTF-8?q?=E8=AE=BF=E6=8A=95=E8=AF=89=E5=8F=B0=E8=B4=A6=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=EF=BC=9B=202=E3=80=81=E5=9B=BD=E5=AE=B6=E4=BF=A1=E8=AE=BF?= =?UTF-8?q?=E6=8A=95=E8=AF=89=E5=8F=B0=E8=B4=A6=E5=8A=9F=E8=83=BD=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/books.ts | 14 + src/api/data/petition12337.ts | 20 +- src/api/work/negativeTask.ts | 21 + src/components/alarm/reply.vue | 6 +- src/components/loading.vue | 43 + src/views/books/Ajhc.vue | 316 +++++++ src/views/books/Gabxf.vue | 316 +++++++ src/views/books/Gjxf.vue | 316 +++++++ src/views/books/Hdjq.vue | 132 +-- src/views/books/Xcdc.vue | 258 ++++++ src/views/data/Mail12337.vue | 846 ++++++++++++------ .../sensitivePerception/RiskPersonnel.vue | 64 +- src/views/system/Police.vue | 4 +- src/views/work/BatchDistribute.vue | 441 +++++++++ src/views/work/Query.vue | 2 + 15 files changed, 2450 insertions(+), 349 deletions(-) create mode 100644 src/components/loading.vue create mode 100644 src/views/books/Ajhc.vue create mode 100644 src/views/books/Gabxf.vue create mode 100644 src/views/books/Gjxf.vue create mode 100644 src/views/books/Xcdc.vue create mode 100644 src/views/work/BatchDistribute.vue diff --git a/src/api/books.ts b/src/api/books.ts index cd6297e..71d2ee9 100644 --- a/src/api/books.ts +++ b/src/api/books.ts @@ -6,4 +6,18 @@ export function listNegativeHdjq(query) { url: `/negative/books/hdjq`, query }); +} + +export function listNegativeXcdc(query) { + return request.get({ + url: `/negative/books/xcdc`, + query + }); +} + +export function listNegativeXf(query, problemSourcesCode) { + return request.get({ + url: `/negative/books/xf/${problemSourcesCode}`, + query + }); } \ No newline at end of file diff --git a/src/api/data/petition12337.ts b/src/api/data/petition12337.ts index de3c1ab..fda4c43 100644 --- a/src/api/data/petition12337.ts +++ b/src/api/data/petition12337.ts @@ -7,30 +7,22 @@ export function listPetitionComplaint12337(query) { }); } -export function importPetitionComplaint(body) { - return request.post({ - url: '/data/petitionComplaint/import', - body +export function delPetitionComplaint12337(id) { + return request.del({ + url: `/data/petitionComplaint12337/${id}` }); } - -export function addPetitionComplaint(body) { +export function importPetitionComplaint12337(body) { return request.post({ - url: `/data/petitionComplaint`, + url: '/data/petitionComplaint12337/import', body }); } -export function delPetitionComplaint12337(id) { - return request.del({ - url: `/data/petitionComplaint12337/${id}` - }); -} - export function distributePetitionComplaint12337(body) { return request.post({ - url: `/data/petitionComplaint12337/distribute`, + url: '/data/petitionComplaint12337/distribute', body }); } \ No newline at end of file diff --git a/src/api/work/negativeTask.ts b/src/api/work/negativeTask.ts index 750bc04..9fe51a6 100644 --- a/src/api/work/negativeTask.ts +++ b/src/api/work/negativeTask.ts @@ -5,4 +5,25 @@ export function listNegativeTask(query) { url: `/negativeTask`, query }); +} + +export function listNegativeTaskImport(query) { + return request.get({ + url: `/negativeTask/importList`, + query + }); +} + +export function importNegative(body) { + return request.post({ + url: `/negativeTask/import`, + body + }); +} + +export function distributeNegative(body) { + return request.post({ + url: `/negativeTask/distribute`, + body + }); } \ No newline at end of file diff --git a/src/components/alarm/reply.vue b/src/components/alarm/reply.vue index b288a8b..eba1e75 100644 --- a/src/components/alarm/reply.vue +++ b/src/components/alarm/reply.vue @@ -23,6 +23,7 @@ message: '请输入回复内容', trigger: ['blur'], }" + v-if="data.requestReply" > diff --git a/src/components/loading.vue b/src/components/loading.vue new file mode 100644 index 0000000..8304f28 --- /dev/null +++ b/src/components/loading.vue @@ -0,0 +1,43 @@ + + + \ No newline at end of file diff --git a/src/views/books/Ajhc.vue b/src/views/books/Ajhc.vue new file mode 100644 index 0000000..47bf626 --- /dev/null +++ b/src/views/books/Ajhc.vue @@ -0,0 +1,316 @@ + + + \ No newline at end of file diff --git a/src/views/books/Gabxf.vue b/src/views/books/Gabxf.vue new file mode 100644 index 0000000..653b532 --- /dev/null +++ b/src/views/books/Gabxf.vue @@ -0,0 +1,316 @@ + + + \ No newline at end of file diff --git a/src/views/books/Gjxf.vue b/src/views/books/Gjxf.vue new file mode 100644 index 0000000..c138fb5 --- /dev/null +++ b/src/views/books/Gjxf.vue @@ -0,0 +1,316 @@ + + + \ No newline at end of file diff --git a/src/views/books/Hdjq.vue b/src/views/books/Hdjq.vue index 035cf8e..47bf626 100644 --- a/src/views/books/Hdjq.vue +++ b/src/views/books/Hdjq.vue @@ -1,62 +1,57 @@