index.uts 258 B

1234567891011121314
  1. /**
  2. */
  3. import { request } from '../../utils/request'
  4. /**
  5. * 获取通知消息
  6. */
  7. export const getMyNotify = (userId: string): Promise<any> => {
  8. let url = `/mobile/notify/${userId}`
  9. return request({
  10. url: url,
  11. method: 'GET'
  12. })
  13. }