mirror of
https://github.com/yangjian102621/geekai.git
synced 2026-05-06 17:54:29 +08:00
stylus 语法换成 saas 语法
This commit is contained in:
@@ -1,7 +1,12 @@
|
||||
<template>
|
||||
<div class="right flex-center">
|
||||
<div class="logo">
|
||||
<el-image :src="logo" alt="" style="max-width: 300px; max-height: 300px" class="rounded-full" />
|
||||
<el-image
|
||||
:src="logo"
|
||||
alt=""
|
||||
style="max-width: 300px; max-height: 300px"
|
||||
class="rounded-full"
|
||||
/>
|
||||
</div>
|
||||
<div>welcome</div>
|
||||
<footer-bar />
|
||||
@@ -9,42 +14,43 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import FooterBar from "@/components/FooterBar.vue";
|
||||
import { getSystemInfo } from "@/store/cache";
|
||||
import { ref } from "vue";
|
||||
import FooterBar from '@/components/FooterBar.vue'
|
||||
import { getSystemInfo } from '@/store/cache'
|
||||
import { ref } from 'vue'
|
||||
|
||||
const logo = ref("");
|
||||
const title = ref("");
|
||||
const logo = ref('')
|
||||
const title = ref('')
|
||||
|
||||
getSystemInfo()
|
||||
.then((res) => {
|
||||
logo.value = res.data.logo;
|
||||
title.value = res.data.title;
|
||||
logo.value = res.data.logo
|
||||
title.value = res.data.title
|
||||
})
|
||||
.catch((err) => {
|
||||
console.log(err);
|
||||
logo.value = "/images/logo.png";
|
||||
title.value = "Geek-AI";
|
||||
});
|
||||
console.log(err)
|
||||
logo.value = '/images/logo.png'
|
||||
title.value = 'Geek-AI'
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="stylus" scoped>
|
||||
.right{
|
||||
font-size: 40px
|
||||
font-weight: bold
|
||||
color:#fff
|
||||
flex-direction: column
|
||||
background-image url("~@/assets/img/login-bg.png")
|
||||
background-size cover
|
||||
background-position center
|
||||
<style lang="scss" scoped>
|
||||
.right {
|
||||
font-size: 40px;
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
flex-direction: column;
|
||||
background-image: url('~@/assets/img/login-bg.png');
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
width: 50%;
|
||||
min-height: 100vh
|
||||
max-height: 100vh
|
||||
min-height: 100vh;
|
||||
max-height: 100vh;
|
||||
background-repeat: no-repeat;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
z-index: 1;
|
||||
:deep(.foot-container){
|
||||
|
||||
:deep(.foot-container) {
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
width: 100%;
|
||||
@@ -53,21 +59,23 @@ getSystemInfo()
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
|
||||
.footer{
|
||||
.footer {
|
||||
a,
|
||||
span{
|
||||
color: var(--text-fff)
|
||||
span {
|
||||
color: var(--text-fff);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.logo{
|
||||
|
||||
.logo {
|
||||
margin-bottom: 26px;
|
||||
width: 200px
|
||||
height: 200px
|
||||
background: #fff
|
||||
border-radius: 50%
|
||||
img{
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
background: #fff;
|
||||
border-radius: 50%;
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
object-fit: cover;
|
||||
height: 100%;
|
||||
|
||||
Reference in New Issue
Block a user