From a079b51dedafb805f9269826e24208ce28b43884 Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期二, 26 三月 2024 18:01:43 +0800
Subject: [PATCH] 卡片图片预览

---
 src/api/platform/people.js |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/api/platform/people.js b/src/api/platform/people.js
index 92d797d..efc0d1f 100644
--- a/src/api/platform/people.js
+++ b/src/api/platform/people.js
@@ -3,7 +3,7 @@
 // 鏌ヨ杩愮淮浜哄憳鍒楄〃
 export function listPeople(query) {
   return request({
-    url: '/system/yw-people/page',
+    url: '/yw-people/page',
     method: 'get',
     params: query
   })
@@ -12,7 +12,7 @@
 // 鏌ヨ杩愮淮浜哄憳璇︾粏
 export function getPeople(id) {
   return request({
-    url: '/system/yw-people/' + id,
+    url: '/yw-people/' + id,
     method: 'get'
   })
 }
@@ -20,7 +20,7 @@
 // 鏂板杩愮淮浜哄憳
 export function addPeople(data) {
   return request({
-    url: '/system/yw-people',
+    url: '/yw-people',
     method: 'post',
     data: data
   })
@@ -29,7 +29,7 @@
 // 淇敼杩愮淮浜哄憳
 export function updatePeople(data) {
   return request({
-    url: '/system/yw-people',
+    url: '/yw-people',
     method: 'put',
     data: data
   })
@@ -38,7 +38,7 @@
 // 鍒犻櫎杩愮淮浜哄憳
 export function delPeople(id) {
   return request({
-    url: '/system/yw-people/' + id,
+    url: '/yw-people/' + id,
     method: 'delete'
   })
 }

--
Gitblit v1.8.0