|
@@ -7,7 +7,7 @@
|
|
|
@push('css')
|
|
|
<link href="{{ theme_asset('mobile/css/members.css') }}" rel="stylesheet">
|
|
|
<style>
|
|
|
- .outpout{
|
|
|
+ .output{
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
align-items: center;
|
|
@@ -52,11 +52,11 @@
|
|
|
userEmail: encrypt.decrypt(userinfo.email)
|
|
|
};
|
|
|
$.post("{{route($sub_site.'mobile.login_mzt')}}",data,function(res){
|
|
|
- console.log(res.url)
|
|
|
- if(res.status){
|
|
|
- window.location.href = res.url;
|
|
|
+
|
|
|
+ if(res.data.status){
|
|
|
+ window.location.href = res.data.url;
|
|
|
}else{
|
|
|
- console.log(res.msg)
|
|
|
+ console.log(res.data.msg)
|
|
|
}
|
|
|
});
|
|
|
|