From 3451f5695d6fb65eeac2f4eedd9bf8cdd16a6d79 Mon Sep 17 00:00:00 2001
From: zhouwenxuan <1175765986@qq.com>
Date: 星期五, 01 十二月 2023 17:21:12 +0800
Subject: [PATCH] 评价类型、业务范围

---
 src/api/home/homePage.js |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/src/api/home/homePage.js b/src/api/home/homePage.js
index eba3b5d..4a7e564 100644
--- a/src/api/home/homePage.js
+++ b/src/api/home/homePage.js
@@ -9,6 +9,15 @@
     })
 }
 
+// 获取详情
+export function getNoticeDetails(params) {
+    return request({
+        url: '/system/notice/getNoticeById',
+        method: 'get',
+        params: params
+    })
+}
+
 // 获取分页
 export function getLaws(params) {
     return request({
@@ -18,6 +27,15 @@
     })
 }
 
+// 获取详情
+export function getLawsDetails(params) {
+    return request({
+        url: '/system/law/getLawById',
+        method: 'get',
+        params: params
+    })
+}
+
 // 获取分页
 export function getPublish(params) {
     return request({
@@ -25,4 +43,13 @@
         method: 'get',
         params: params
     })
+}
+
+// 获取详情
+export function getPublishDetails(params) {
+    return request({
+        url: '/system/agency/getAgencyById',
+        method: 'get',
+        params: params
+    })
 }
\ No newline at end of file

--
Gitblit v1.9.2