Browse Source

跳转备案页面

newStyle
douzhuo 2 years ago
parent
commit
423149a285
2 changed files with 22 additions and 3 deletions
  1. +11
    -3
      src/page/login/index.vue
  2. +11
    -0
      src/styles/login.scss

+ 11
- 3
src/page/login/index.vue View File

@@ -33,9 +33,12 @@


</div> </div>
</div> </div>
<!-- <div class="login-copyright">
{{ website.copyright}}
</div> -->

<div class="login-copyright">
<span class="lcopyrights" @click="toBeian('https://beian.miit.gov.cn/#/Integrated/index')">
京ICP备19050974号-2
</span>
</div>
<top-color v-show="false" /> <top-color v-show="false" />
</div> </div>
</template> </template>
@@ -100,6 +103,10 @@ export default {
...mapGetters(['website', 'tagWel']) ...mapGetters(['website', 'tagWel'])
}, },
methods: { methods: {
toBeian(path) {
window.open(path, "_blank")
},

handleCommand (command) { handleCommand (command) {
setStore({ name: 'tenantId', content: command }) setStore({ name: 'tenantId', content: command })
}, },
@@ -143,4 +150,5 @@ export default {


<style lang="scss"> <style lang="scss">
@import "@/styles/login.scss"; @import "@/styles/login.scss";

</style> </style>

+ 11
- 0
src/styles/login.scss View File

@@ -2,8 +2,18 @@
color: #999; color: #999;
width: 100%; width: 100%;
position: fixed; position: fixed;
z-index: 5;
bottom: 30px; bottom: 30px;
text-align: center; text-align: center;

.lcopyrights {
cursor: pointer;
}
.lcopyrights:hover {
color: #409eff;
font-weight: bold;
}
} }


.login-container { .login-container {
@@ -217,3 +227,4 @@
text-indent: 5px; text-indent: 5px;
text-align: center; text-align: center;
} }


Loading…
Cancel
Save