Browse Source

解决发送验证码的bug

wzy 4 months ago
parent
commit
78f2e7742a
2 changed files with 4 additions and 4 deletions
  1. 3 3
      src/api/account.js
  2. 1 1
      src/components/GraphicVerificationCode/index.vue

+ 3 - 3
src/api/account.js

@@ -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
   })

+ 1 - 1
src/components/GraphicVerificationCode/index.vue

@@ -100,7 +100,7 @@ export default {
         } else {
           _api = getCode
         }
-        const res = await _api({ phone: this.phone, x,y })
+        const res = await _api(this.phone,{ phone: this.phone, x,y })
         this.$message({
           message: '发送成功,请注意查看手机短信',
           type: 'success'