YZProjectCloud/yanzhu-ui-vue3/src/views/index.vue

83 lines
1.4 KiB
Vue
Raw Normal View History

2024-08-17 12:11:19 +08:00
<template>
2025-05-13 01:06:27 +08:00
<div class="app-container home"></div>
2024-08-17 12:11:19 +08:00
</template>
<script setup name="Index">
2025-05-13 01:06:27 +08:00
import request from '@/utils/request'
2024-08-24 11:53:56 +08:00
const version = ref('3.6.3')
2024-08-17 12:11:19 +08:00
function goTarget(url) {
2025-05-13 01:06:27 +08:00
window.open(url, '__blank')
2024-08-17 12:11:19 +08:00
}
2025-05-13 01:06:27 +08:00
request.get('/manage/api/menu/list').then((d) => {
2025-05-31 13:21:41 +08:00
console.log('服务就绪')
2025-05-13 01:06:27 +08:00
})
2024-08-17 12:11:19 +08:00
</script>
<style scoped lang="scss">
.home {
2025-05-13 01:06:27 +08:00
blockquote {
padding: 10px 20px;
margin: 0 0 20px;
font-size: 17.5px;
border-left: 5px solid #eee;
}
2025-04-04 00:25:29 +08:00
2025-05-13 01:06:27 +08:00
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #eee;
}
2025-04-04 00:25:29 +08:00
2025-05-13 01:06:27 +08:00
.col-item {
margin-bottom: 20px;
}
2024-08-17 12:11:19 +08:00
2025-05-13 01:06:27 +08:00
ul {
padding: 0;
margin: 0;
}
2024-08-17 12:11:19 +08:00
2025-05-13 01:06:27 +08:00
font-family: 'open sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 13px;
color: #676a6c;
overflow-x: hidden;
2024-08-17 12:11:19 +08:00
2025-05-13 01:06:27 +08:00
ul {
list-style-type: none;
}
2024-08-17 12:11:19 +08:00
2025-05-13 01:06:27 +08:00
h4 {
margin-top: 0px;
}
2024-08-17 12:11:19 +08:00
2025-05-13 01:06:27 +08:00
h2 {
margin-top: 10px;
font-size: 26px;
font-weight: 100;
}
2024-08-17 12:11:19 +08:00
2025-05-13 01:06:27 +08:00
p {
margin-top: 10px;
2024-08-17 12:11:19 +08:00
2025-05-13 01:06:27 +08:00
b {
font-weight: 700;
}
2024-08-17 12:11:19 +08:00
}
2025-05-13 01:06:27 +08:00
.update-log {
ol {
display: block;
list-style-type: decimal;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0;
margin-inline-end: 0;
padding-inline-start: 40px;
}
2024-08-17 12:11:19 +08:00
}
}
</style>