You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
483 B

import { fetch } from '../../../utils/util';
export type ResponseType = Promise<any>;
export const URL = '/api/captcha.jpg';
/**
* @desc getCaptcha
*/
export function request(
options?: WechatMiniprogram.RequestOption,
): ResponseType {
let url = '/api/captcha.jpg';
const fetchOption = Object.assign(
{
url: url,
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
},
options,
);
return fetch(fetchOption);
}