6 lines
184 B
TypeScript
6 lines
184 B
TypeScript
|
|
import { get } from "@/utils/request";
|
||
|
|
|
||
|
|
// 根据ID获取消息推送详情
|
||
|
|
export const xxtsFindByIdApi = async (params: any) => {
|
||
|
|
return await get("/api/xxts/findById", params);
|
||
|
|
};
|