11 lines
190 B
JavaScript
11 lines
190 B
JavaScript
|
import request from '../utils/request.js'
|
||
|
|
||
|
export const getNotificationNow = () => {
|
||
|
return request({
|
||
|
url: "/notification/byTimeNow",
|
||
|
method: "get",
|
||
|
data: {
|
||
|
|
||
|
}
|
||
|
})
|
||
|
}
|