|
@@ -45,9 +45,9 @@ export function bankAdd(data) {
|
|
|
}
|
|
|
|
|
|
// 获取短信验证码
|
|
|
-export function getCode(data) {
|
|
|
+export function getCode(phone,data) {
|
|
|
return request({
|
|
|
- url: '/business/getCode',
|
|
|
+ url: `/business/getCode?phone=${phone}`,
|
|
|
method: 'post',
|
|
|
data
|
|
|
})
|
|
@@ -56,7 +56,7 @@ export function getCode(data) {
|
|
|
// 获取验证码
|
|
|
export function getVerificationImageCaptchaApi(params) {
|
|
|
return request({
|
|
|
- url: '/captcha/get/verification/image',
|
|
|
+ url: `/captcha/get/verification/image`,
|
|
|
method: 'get',
|
|
|
params
|
|
|
})
|