From b1adf4175b8027813358391edcbd440886724523 Mon Sep 17 00:00:00 2001
From: zhouwenxuan <1175765986@qq.com>
Date: 星期二, 20 二月 2024 17:30:14 +0800
Subject: [PATCH] bug修改
---
src/api/home/homePage.js | 33 ++++++++++++++++++++++++++++++---
1 files changed, 30 insertions(+), 3 deletions(-)
diff --git a/src/api/home/homePage.js b/src/api/home/homePage.js
index eba3b5d..20ec8e8 100644
--- a/src/api/home/homePage.js
+++ b/src/api/home/homePage.js
@@ -3,7 +3,16 @@
// 获取分页
export function getNotice(params) {
return request({
- url: '/system/notice/noticeList',
+ url: '/notice/noticeList',
+ method: 'get',
+ params: params
+ })
+}
+
+// 获取详情
+export function getNoticeDetails(params) {
+ return request({
+ url: '/notice/getNoticeById',
method: 'get',
params: params
})
@@ -12,7 +21,16 @@
// 获取分页
export function getLaws(params) {
return request({
- url: '/system/law/lawList',
+ url: '/law/lawList',
+ method: 'get',
+ params: params
+ })
+}
+
+// 获取详情
+export function getLawsDetails(params) {
+ return request({
+ url: '/law/getLawById',
method: 'get',
params: params
})
@@ -21,7 +39,16 @@
// 获取分页
export function getPublish(params) {
return request({
- url: '/system/agency/agencyList',
+ url: '/agency/agencyList',
+ method: 'get',
+ params: params
+ })
+}
+
+// 获取详情
+export function getPublishDetails(params) {
+ return request({
+ url: '/agency/getAgencyById',
method: 'get',
params: params
})
--
Gitblit v1.9.2