fix: 备案号添加

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

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

Loading…
Cancel
Save