mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-05 08:46:35 +08:00
11 lines
228 B
JavaScript
11 lines
228 B
JavaScript
import myaxios from '@/utils/request'
|
|
export function operate(discussId){
|
|
if(discussId==undefined)
|
|
{
|
|
return;
|
|
}
|
|
return myaxios({
|
|
url: `/agree/operate/${discussId}`,
|
|
method: 'post'
|
|
})
|
|
}; |