/* * @Author: * @Date: 2023-03-01 19:20:44 * @LastEditors: Please set LastEditors * @LastEditTime: 2024-01-03 16:48:54 * @Description: kxs files * @filePath: */ import { http } from "@/utils/http"; import { dataResult } from "@/api/apiResult"; /** 列表数据 */ export const noticelist = (data?: object): dataResult => { return http.request("get", "/list ", { data }); };