123456789101112131415161718 |
- import request from '../../utils/request'
- export function getComments(data) {
- return request({
- url: '/comments/getComments',
- method: 'post',
- data
- })
- }
- export function updateCommentStatus(id, deleted) {
- return request({
- url: '/comments/updateCommentStatus',
- method: 'get',
- params: { id, deleted }
- })
- }
|