footbar modify

This commit is contained in:
simple321vip
2022-09-20 16:45:35 +08:00
parent 75f6a06e38
commit 938ceae375
2 changed files with 26 additions and 8 deletions
+25 -7
View File
@@ -14,11 +14,13 @@
</el-main>
<el-footer>
<span>
本网站不涉及色情赌博毒品和政治宗教等内容暂时为个人学习用途
考虑到法律风险针对有敏感词汇还设有过滤功能所以暂时不对外提供一切功能
<br />
再次重申本网站只作为学习网站
管祥玮的个人网站 ©Copyright 2019-2021
</span>
<span @click="openSiteQuery">辽ICP备2022003637号-2</span>
<div>
<el-avatar @click="openGithub" src="https://github.githubassets.com/favicons/favicon.svg" />
</div>
</el-footer>
</el-container>
</el-container>
@@ -26,9 +28,21 @@
</template>
<script setup lang='ts'>
import MainApp from '../layout/MainApp.vue';
import NavBar from "../layout/NavBar.vue";
import SideBar from "../layout/SideBar.vue";
import MainApp from '../layout/MainApp.vue'
import NavBar from "../layout/NavBar.vue"
import SideBar from "../layout/SideBar.vue"
const openGithub = () => {
let href = 'https://github.com/simple321vip'
window.open(href, '_blank')
}
const openSiteQuery = () => {
let href = 'https://beian.miit.gov.cn/#/Integrated/index'
window.open(href, '_blank')
}
</script>
<style scoped>
@@ -69,4 +83,8 @@ body > .el-container {
.el-container:nth-child(7) .el-aside {
line-height: 320px;
} */
.el-footer {
display: flex;
justify-content: space-around;
}
</style>
+1 -1
View File
@@ -19,7 +19,7 @@
</el-form-item>
<el-form-item label="" prop="setting">
<el-select v-model="ruleForm.setting.interval" placeholder="select a interval">
<el-option label="interval:1DAILY" value=24 />
<el-option label="interval:1DAILY" value=1440 />
<el-option label="interval:4HOUR" value=240 />
<el-option label="interval:1HOUR" value=60 />
<el-option label="interval:30MIN" value=30 />