校园-江西科技师范大学-前端
shuishen
2023-12-05 30f4204ca6fb295d0f3d9cae41fbb4e62321beb4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * @Author: Morpheus
 * @Date: 2021-05-09 15:17:44
 * @Last Modified by: liu
 * @Last Modified time: 2022-01-14 17:35:21
 */
// 党政机构
import request from "@/router/axios";
 
export const getActivity = (params) => {
  return request({
    url: `blade-hd/hd/list`,
    method: "get",
  });
};
 
export const getdetail = (id) => {
  return request({
    url: `blade-hd/hd/detail?id=` + id,
    method: "get",
  });
};