1
mayisheng
2022-08-15 81f54040c2cb65537c6c6e1db8358a39a57dea0d
src/api/mobile/hd/hd.js
@@ -4,19 +4,19 @@
 * @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",
  });
    return request({
        url: `blade-hd/hd/list`,
        method: "get",
    });
};
export const getdetail = (id) => {
  return request({
    url: `blade-hd/hd/detail?id=` + id,
    method: "get",
  });
    return request({
        url: `blade-hd/hd/detail?id=` + id,
        method: "get",
    });
};