diff --git a/manager/src/config/index.js b/manager/src/config/index.js index 95414e80..6b74f240 100644 --- a/manager/src/config/index.js +++ b/manager/src/config/index.js @@ -17,10 +17,10 @@ export default { * @description api请求基础路径 */ api_dev: { - common: 'http://127.0.0.1:8890', - buyer: 'http://127.0.0.1:8888', - seller: 'http://127.0.0.1:8889', - manager: 'http://127.0.0.1:8887' + common: 'http://192.168.0.103:8890', + buyer: 'https://buyer-api.pickmall.cn', + seller: 'https://store-api.pickmall.cn', + manager: 'http://192.168.0.103:8887' }, api_prod: { common: 'https://common-api.pickmall.cn', diff --git a/manager/src/views/sys/message/sms.vue b/manager/src/views/sys/message/sms.vue index a70028b8..71f09635 100644 --- a/manager/src/views/sys/message/sms.vue +++ b/manager/src/views/sys/message/sms.vue @@ -710,7 +710,7 @@ export default { //发送短信 sendSms() { this.$refs.smsForm.validate((valid) => { - const mobile = JSON.stringify(this.alreadyCheck); + const mobile = this.alreadyCheck; this.smsForm.mobile = mobile; if (valid) { API_Setting.sendSms(this.smsForm).then((res) => {