/** */ import { request } from '../../utils/request' /** * 获取通知消息 */ export const getMyNotify = (userId: string): Promise<any> => { let url = `/mobile/notify/${userId}` return request({ url: url, method: 'GET' }) }