From 460cbc2a3898e35024a8ae9d0d79f19bca677680 Mon Sep 17 00:00:00 2001
From: yys <47@gamerwa.com>
Date: Mon, 20 Apr 2026 14:38:57 +0800
Subject: [PATCH] =?UTF-8?q?feat:=20=E9=83=A8=E9=97=A8=E7=AE=A1=E7=90=86=20?=
=?UTF-8?q?-=20=E7=A7=AF=E5=88=86=E6=9B=B4=E6=AD=A3?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
admin-ui/src/api/system/dept.js | 9 ++
admin-ui/src/views/system/dept/index.vue | 136 +++++++++++++++++-
.../controller/system/SysDeptController.java | 15 ++
.../system/DeptPointsCorrectionRequest.java | 31 ++++
.../ruoyi/system/service/ISysDeptService.java | 6 +
.../service/impl/SysDeptServiceImpl.java | 58 ++++++++
6 files changed, 254 insertions(+), 1 deletion(-)
create mode 100644 web-api/ruoyi-common/src/main/java/com/ruoyi/common/core/request/system/DeptPointsCorrectionRequest.java
diff --git a/admin-ui/src/api/system/dept.js b/admin-ui/src/api/system/dept.js
index 1bed996..546b482 100644
--- a/admin-ui/src/api/system/dept.js
+++ b/admin-ui/src/api/system/dept.js
@@ -58,4 +58,13 @@ export function chargeRefundDept(data) {
method: 'post',
data: data
})
+}
+
+// 部门积分更正
+export function editScore(data) {
+ return request({
+ url: '/system/dept/edit-score',
+ method: 'post',
+ data: data
+ })
}
\ No newline at end of file
diff --git a/admin-ui/src/views/system/dept/index.vue b/admin-ui/src/views/system/dept/index.vue
index 383c677..ff3f9ad 100644
--- a/admin-ui/src/views/system/dept/index.vue
+++ b/admin-ui/src/views/system/dept/index.vue
@@ -82,6 +82,13 @@
@click="handleChargeRefund(scope.row)"
v-hasPermi="['system:dept:chargeRefund']"
>充值/退款
+ 积分更正
取 消
+
+
+
+
+
+
+
+
+
+
+
+
@@ -301,10 +345,13 @@
color: #909399;
line-height: 1.5;
}
+.edit-score-input-number {
+ width: 100%;
+}