Browse Source

生产环境配置 医生流程修改

pzc 4 years ago
parent
commit
5379249b0f
2 changed files with 2 additions and 2 deletions
  1. 1 1
      .env.production
  2. 1 1
      src/views/doctorRegister/doctorFlow/doctorFlow.vue

+ 1 - 1
.env.production

@@ -2,6 +2,6 @@ VUE_APP_Name='生产环境'
 VUE_APP_Host='https://ue.360lj.com'
 VUE_APP_DoctorUserLoginUrl='http://mem.360lj.com/ym/ymallWechat/code?identity=1&redirectCode=doctorHome'
 VUE_APP_PartnerUserLoginUrl='http://mem.360lj.com/ym/ymallWechat/code?identity=2&redirectCode=partnerHome'
-VUE_APP_PatientUserLoginUrl='https://ue.360lj.com/api/Home/Login?identity=0&backurl=https://ue.360lj.com/dist/PatientUser'
+VUE_APP_PatientUserLoginUrl='https://mem.360lj.com/ym/ymallWechat/code?identity=0&redirectCode=PatientUser'
 VUE_APP_Url='https://mem.360lj.com/ym'
 VUE_APP_DoctorAPIUrl = 'https://mem.360lj.com/ym'

+ 1 - 1
src/views/doctorRegister/doctorFlow/doctorFlow.vue

@@ -61,7 +61,7 @@ export default {
       this.registerParams.partnerID = partnerID
 
       const {data: response} = await reqDoctorSubmit(this.registerParams)
-      if(response.success!==1) return this.$toast(response.messages)
+      if(response.success!==1) return this.$toast(response.message)
       this.$router.push('/doctorMine')
     },