From 4f2d4d8a6a991800c91f54eade33832c00298e2d Mon Sep 17 00:00:00 2001
From: "liang.chao" <1360241448@qq.com>
Date: Tue, 2 Dec 2025 16:44:16 +0800
Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../fileManager/fileManager.js | 22 ++
src/router/views/index.js | 7 +
.../fileManager/components/rectTableData.vue | 125 +++++++++++
.../components/rectificationList.vue | 205 ++++++++++++++++++
.../fileManager/components/rightTable.vue | 49 +++++
src/views/fileManager/file-data.vue | 2 +-
6 files changed, 409 insertions(+), 1 deletion(-)
create mode 100644 src/views/fileManager/components/rectTableData.vue
create mode 100644 src/views/fileManager/components/rectificationList.vue
diff --git a/src/api/archivesManagement/fileManager/fileManager.js b/src/api/archivesManagement/fileManager/fileManager.js
index 5517f568..96661862 100644
--- a/src/api/archivesManagement/fileManager/fileManager.js
+++ b/src/api/archivesManagement/fileManager/fileManager.js
@@ -70,6 +70,28 @@ export function updateFileManageRightApi(data) {
}
})
}
+// 加入整改
+export function addRectification(data) {
+ return request({
+ url: '/blade-system/fileManage/addRectification',
+ method: 'post',
+ data:data,
+ })
+}
+export function selectRectificationListApi(data) {
+ return request({
+ url: '/blade-system/fileManage/selectRectificationList',
+ method: 'post',
+ data:data,
+ })
+}
+export function updateRectificationApi(data) {
+ return request({
+ url: '/blade-system/fileManage/selectRectificationList',
+ method: 'post',
+ data:data,
+ })
+}
// 删除档案目录
export function delFileManageApi(data) {
diff --git a/src/router/views/index.js b/src/router/views/index.js
index 2d74ad91..24c8bba9 100644
--- a/src/router/views/index.js
+++ b/src/router/views/index.js
@@ -116,4 +116,11 @@ export default [
title: '移交详情'
}
},
+
+ {
+ path: '/fileManager/rectificationList',
+ name: 'RectificationList',
+ component: () => import('@/views/fileManager/components/rectificationList.vue'),
+ meta: { title: '整改清单' }
+ }
];
diff --git a/src/views/fileManager/components/rectTableData.vue b/src/views/fileManager/components/rectTableData.vue
new file mode 100644
index 00000000..3c2fe41d
--- /dev/null
+++ b/src/views/fileManager/components/rectTableData.vue
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/fileManager/components/rectificationList.vue b/src/views/fileManager/components/rectificationList.vue
new file mode 100644
index 00000000..0743e51d
--- /dev/null
+++ b/src/views/fileManager/components/rectificationList.vue
@@ -0,0 +1,205 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取消
+ 保存
+
+
+
+
+
+
+
+
diff --git a/src/views/fileManager/components/rightTable.vue b/src/views/fileManager/components/rightTable.vue
index 849416eb..903d0c4b 100644
--- a/src/views/fileManager/components/rightTable.vue
+++ b/src/views/fileManager/components/rightTable.vue
@@ -19,6 +19,16 @@
@click="handleAdd" :disabled="addBtnIsShow" v-if="fileStatus === '0'">
新增
+
+
+ 整改清单
+
@@ -43,6 +53,14 @@
@click="handleUpdate(row)"
v-hasPermi="['file:manage:update']"
>修改
+ 加入整改
+
+