| 123456789101112131415161718192021 |
- import { http } from '@/utils/http/axios';
- export function getAlgoInfo() {
- return http.request({
- url: '/algo/getAlgoList',
- method: 'get',
- });
- }
- export function algoInfoModify(algoId: number, pushLinkPrompt: string, pushStatement: string) {
- return http.request({
- url: '/article/add',
- method: 'post',
- data: {
- algoId,
- pushLinkPrompt,
- pushStatement,
- },
- });
- }
|