From 09c002c63c1d1127ec28bcf92923c260ea039b00 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期四, 06 三月 2025 09:53:42 +0800
Subject: [PATCH] 人员新增证书资料时,文件无法选择上传,且下载时页面无响应

---
 src/api/system/dict/type.js |   15 +++++++--------
 1 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/src/api/system/dict/type.js b/src/api/system/dict/type.js
index 481d76e..a0254ba 100644
--- a/src/api/system/dict/type.js
+++ b/src/api/system/dict/type.js
@@ -3,7 +3,7 @@
 // 鏌ヨ瀛楀吀绫诲瀷鍒楄〃
 export function listType(query) {
   return request({
-    url: '/enum/selectEnumList',
+    url: '/system/dict/type/list',
     method: 'get',
     params: query
   })
@@ -20,7 +20,7 @@
 // 鏂板瀛楀吀绫诲瀷
 export function addType(data) {
   return request({
-    url: '/enum/addEnum',
+    url: '/system/dict/type',
     method: 'post',
     data: data
   })
@@ -29,18 +29,17 @@
 // 淇敼瀛楀吀绫诲瀷
 export function updateType(data) {
   return request({
-    url: '/enum/upEnum',
-    method: 'post',
+    url: '/system/dict/type',
+    method: 'put',
     data: data
   })
 }
 
 // 鍒犻櫎瀛楀吀绫诲瀷
-export function delType(data) {
+export function delType(dictId) {
   return request({
-    url: '/enum/delEnum',
-    method: 'post',
-    data: data
+    url: '/system/dict/type/' + dictId,
+    method: 'delete'
   })
 }
 

--
Gitblit v1.9.3