ASEMiniProgram/api/notification.js

11 lines
190 B
JavaScript
Raw Normal View History

2021-03-31 18:15:01 +00:00
import request from '../utils/request.js'
export const getNotificationNow = () => {
return request({
url: "/notification/byTimeNow",
method: "get",
data: {
}
})
}