|
@@ -2,6 +2,8 @@
|
|
|
<div class="foot-mark-box">
|
|
|
<div>
|
|
|
<div class="hover" @click="handleJumpFiling">© 陕ICP备2024033180号-1</div>
|
|
|
+ <div class="hover" @click="watchLicense">增值电信业务经营许可证:陕B2-20240203</div>
|
|
|
+
|
|
|
<div class="case-cont" @click="handleJumpCase">陕公网安备61019102000586号</div>
|
|
|
<div>服务邮箱:citp@changan-inkasso.com</div>
|
|
|
<div>服务电话:029-86689192</div>
|
|
@@ -23,6 +25,11 @@ export default {
|
|
|
components: {
|
|
|
RegisterProtocal: () => import('@/views/login/components/RegisterProtocal')
|
|
|
},
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ licenseImgUrl: require('@/assets/license/license.jpg')
|
|
|
+ }
|
|
|
+ },
|
|
|
methods: {
|
|
|
handleJumpFiling() {
|
|
|
window.open('https://beian.miit.gov.cn/')
|
|
@@ -30,6 +37,9 @@ export default {
|
|
|
handleJumpCase() {
|
|
|
window.open('https://beian.mps.gov.cn/#/query/webSearch?code=61019102000586')
|
|
|
},
|
|
|
+ watchLicense() {
|
|
|
+ window.open(this.licenseImgUrl, '_blank')
|
|
|
+ },
|
|
|
aboutClick() {
|
|
|
this.$router.push('/login/aboutUs')
|
|
|
},
|
|
@@ -53,12 +63,12 @@ export default {
|
|
|
& > div:first-child {
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
- margin-right: 40px;
|
|
|
+ margin-right: 20px;
|
|
|
line-height: 50px;
|
|
|
font-size: 14px;
|
|
|
cursor: pointer;
|
|
|
& > div {
|
|
|
- margin-right: 40px;
|
|
|
+ margin-right: 20px;
|
|
|
}
|
|
|
}
|
|
|
div.hover:hover {
|