welcome.ts 383 B

1234567891011121314
  1. /*
  2. * @Author:
  3. * @Date: 2023-03-01 19:20:44
  4. * @LastEditors: Please set LastEditors
  5. * @LastEditTime: 2024-01-03 16:48:54
  6. * @Description: kxs files
  7. * @filePath:
  8. */
  9. import { http } from "@/utils/http";
  10. import { dataResult } from "@/api/apiResult";
  11. /** 列表数据 */
  12. export const noticelist = (data?: object): dataResult => {
  13. return http.request("get", "/list ", { data });
  14. };