|
@@ -172,7 +172,7 @@
|
|
this.$nextTick(function() {
|
|
this.$nextTick(function() {
|
|
if (!verifyCheack('.codeMsgButton')) { return false; }
|
|
if (!verifyCheack('.codeMsgButton')) { return false; }
|
|
UserApi.getRegisterMobileCode(params,function (response) {
|
|
UserApi.getRegisterMobileCode(params,function (response) {
|
|
- if(response.code == 0){
|
|
|
|
|
|
+ if(response.code === 0){
|
|
_self.isCodeModel = false;
|
|
_self.isCodeModel = false;
|
|
CAIMEI.dialog('验证短信已发送',false,function () {});
|
|
CAIMEI.dialog('验证短信已发送',false,function () {});
|
|
var TIME_COUNT = 60;
|
|
var TIME_COUNT = 60;
|
|
@@ -309,7 +309,12 @@
|
|
this.isCodeModel = false;
|
|
this.isCodeModel = false;
|
|
},
|
|
},
|
|
clubLoginIndex:function(){// 跳过升级直接去个人中心
|
|
clubLoginIndex:function(){// 跳过升级直接去个人中心
|
|
- window.location.href = '/user/dashboard.html';
|
|
|
|
|
|
+ const partnerShopId = CAIMEI.Storage.getItem('partnerShopId')
|
|
|
|
+ if(partnerShopId){
|
|
|
|
+ window.location.href=`/supplier-${partnerShopId}.html`
|
|
|
|
+ }else{
|
|
|
|
+ window.location.href = '/user/dashboard.html';
|
|
|
|
+ }
|
|
},
|
|
},
|
|
mainProAdd: function(){
|
|
mainProAdd: function(){
|
|
var _self = this;
|
|
var _self = this;
|