fix: 备案号添加

master
wx-jincw 5 months ago
parent 567192dd36
commit 706cd977d3

@ -59,7 +59,9 @@
</el-form>
<!-- 底部 -->
<div class="el-login-footer">
<span>Copyright © 2018-2023 德富金服 All Rights Reserved.</span>
<span>{{ copyright }}</span>
<a style="margin-left: 10px;" target="_blank"
@click="openLink">闽ICP备2024059152号-1</a>
</div>
</div>
</template>
@ -113,7 +115,8 @@ export default {
return logoImg;
},
copyright() {
return process.env.VUE_COPYRIGHT || 'Copyright © 2018-2024 泽昇物流 All Rights Reserved.';
const year = new Date().getFullYear();
return `Copyright © ${year} 德富金服 All Rights Reserved.`;
}
},
watch: {
@ -139,6 +142,10 @@ export default {
this.getCookie();
},
methods: {
openLink(e) {
e.preventDefault();
window.open('https://beian.miit.gov.cn/#/Integrated/index', '_blank');
},
getCode() {
getCodeImg().then(res => {
this.captchaEnabled = res.captchaEnabled === undefined ? true : res.captchaEnabled;

Loading…
Cancel
Save