mayisheng
2022-08-06 55a073e6dba5d3c7cd72f3699593cb547f7e9cf8
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",
    });
};