feat:去除多余job

This commit is contained in:
陈淳
2023-12-14 15:53:42 +08:00
parent 10a608c0af
commit 209eb019d3
81 changed files with 12806 additions and 7 deletions

View File

@@ -0,0 +1,22 @@
import myaxios from '@/utils/request'
export function getListByDiscussId(discussId,data){
return myaxios({
url: `/comment/discuss-id/${discussId}`,
method: 'get',
params:data
})
};
export function add(data){
return myaxios({
url: `/comment`,
method: 'post',
data:data
})
};
export function del(ids){
return myaxios({
url: `/comment/${ids}`,
method: 'delete'
})
};