mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-24 10:26:36 +08:00
11 lines
223 B
TypeScript
11 lines
223 B
TypeScript
|
|
import myaxios from '@/utils/myaxios'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
operate(data:any) {
|
||
|
|
return myaxios({
|
||
|
|
url: `/agree/operate`,
|
||
|
|
method: 'get',
|
||
|
|
params: {articleId:data}
|
||
|
|
})
|
||
|
|
},
|
||
|
|
}
|