123456789101112131415161718192021222324252627 |
- import request from '../utils/axios';
- export function ajcaptchaCheck(data) {
- return request.post("safety/check", data, {
- noAuth: true
- });
- }
- export function getAjcaptcha(data) {
- return request.post("safety/get", data, {
- noAuth: true
- });
- }
|