import request from '@/utils/request' /* * @Author : liu.q [916000612@qq.com] * @Date : 2019-06-25 11:42 * @Description :获取验证码 */ export function getVerify(param) { return request({ // url: globalConf.baseUrl + '/v1/base/web/getVerify', url: globalConf.baseUrl + '/captcha/jigsaw', method: 'get', params: param }) } /* * @Author : liu.q [916000612@qq.com] * @Date : 2019-06-25 11:42 * @Description :校验验证码 */ export function checkVerify(param) { return request({ url: globalConf.baseUrl + '/captcha/jigsaw_validate', method: 'post', params: param }) }