浏览代码

解决滑动位置为0bug

wzy 4 月之前
父节点
当前提交
d7e7c0661b
共有 2 个文件被更改,包括 9 次插入8 次删除
  1. 8 7
      src/components/GraphicVerificationCode/index.vue
  2. 1 1
      vue.config.js

+ 8 - 7
src/components/GraphicVerificationCode/index.vue

@@ -58,7 +58,7 @@ export default {
     apiType: {
       type: [String, Number],
       default: 'default' // default, update, privacy
-    }
+    },
   },
   data() {
     return {
@@ -86,7 +86,7 @@ export default {
       this.$emit('input', this.inputCode)
     },
     // 获取验证码
-    async getVerificationCode() {
+    async getVerificationCode(x,y) {
       if (!this.phone) {
         this.$message.error('请填写电话号码')
         return
@@ -100,7 +100,7 @@ export default {
         } else {
           _api = getCode
         }
-        const res = await _api({ phone: this.phone, x: '0', y: '0' })
+        const res = await _api({ phone: this.phone, x,y })
         this.$message({
           message: '发送成功,请注意查看手机短信',
           type: 'success'
@@ -166,6 +166,7 @@ export default {
       this.$emit('success-verify', true)
       this.slideLoading = false
       done()
+      this.getVerificationCode(sliderX, this.slideOptions.sliderY)
       if (!this.codeTimer) {
         this.codeLoading = true
         this.codeCount = 60
@@ -180,10 +181,10 @@ export default {
         }, 1000)
       }
       this.isShowGraphicVerificationDialog = false
-      this.$message({
-        message: '发送成功,请注意查看手机短信',
-        type: 'success'
-      })
+      // this.$message({
+      //   message: '发送成功,请注意查看手机短信',
+      //   type: 'success'
+      // })
       // })
       // .catch(() => {
       //   this.slideLoading = false

+ 1 - 1
vue.config.js

@@ -40,7 +40,7 @@ module.exports = {
     },
     proxy: {
       "/businessapi": {
-        // target: 'http://192.168.0.91:9104',
+        // target: 'http://192.168.0.110:9107',
         target: "https://nsbusinessapitest.tuanfengkeji.cn",
         // target: 'https://nsbusinessapi.tuanfengkeji.cn',
         changeOrigin: true,