|
@@ -10,6 +10,8 @@ import OrdinaryModel from './login/OrdinaryModel.vue';
|
|
|
import EmailModel from './login/EmailModel.vue';
|
|
|
import ForgetPassModel from './login/ForgetPassModel.vue';
|
|
|
|
|
|
+import logoImg from '@/assets/imgs/logo_icon.png'
|
|
|
+
|
|
|
const router=useRouter()
|
|
|
|
|
|
//登陆模式 ordinaryModel账号密码 mobileModel手机号 emailModel邮箱
|
|
@@ -139,17 +141,30 @@ function userLogin(params,values){
|
|
|
|
|
|
let recordInformation=ref([])
|
|
|
|
|
|
-function getRecordInfo(){
|
|
|
- _apiLogin.getICPLicense().then(res=>{
|
|
|
+// function getRecordInfo(){
|
|
|
+// _apiLogin.getICPgetBaseInfoLicense().then(res=>{
|
|
|
+// if(res.Ret == 200){
|
|
|
+// // 两个空格以上截一段
|
|
|
+// recordInformation.value = res.Data.ConfVal.split(/\s{2,}/)
|
|
|
+// }
|
|
|
+// })
|
|
|
+
|
|
|
+// }
|
|
|
+const logo=ref('')
|
|
|
+function getBaseInfo(){
|
|
|
+ _apiLogin.getBaseInfo().then(res=>{
|
|
|
if(res.Ret == 200){
|
|
|
- // 两个空格以上截一段
|
|
|
- recordInformation.value = res.Data.ConfVal.split(/\s{2,}/)
|
|
|
+ logo.value=res.Data.LogoMobile?res.Data.LogoMobile.ConfVal:''
|
|
|
+ // 备案信息两个空格以上截一段
|
|
|
+ recordInformation.value = res.Data.Icp?res.Data.Icp.ConfVal.split(/\s{2,}/):''
|
|
|
+
|
|
|
}
|
|
|
})
|
|
|
-
|
|
|
}
|
|
|
|
|
|
-getRecordInfo();//获取备案信息
|
|
|
+// getRecordInfo();//获取备案信息
|
|
|
+getBaseInfo()//获取基础信息
|
|
|
+
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
@@ -157,7 +172,7 @@ getRecordInfo();//获取备案信息
|
|
|
<div class="login-page">
|
|
|
<van-form class="form-box" ref="loginForm" v-if="activeModel!=='forgetPassModel'">
|
|
|
<div class="logo-wrap">
|
|
|
- <img class="logo" src="@/assets/imgs/logo_icon.png" alt="">
|
|
|
+ <img class="logo" :src="logo || logoImg" alt="">
|
|
|
<div class="title">Bind on account,</div>
|
|
|
<div class="sub-title">sign in to continue</div>
|
|
|
</div>
|