mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
chore: compress bg images
This commit is contained in:
parent
d55925bccd
commit
94a75603c3
BIN
web/src/assets/img/login-bg.jpg
Normal file
BIN
web/src/assets/img/login-bg.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 74 KiB |
Binary file not shown.
Before Width: | Height: | Size: 337 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.6 MiB |
BIN
web/src/assets/img/reg-bg.jpg
Normal file
BIN
web/src/assets/img/reg-bg.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 166 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.5 MiB |
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-dialog
|
<el-dialog
|
||||||
v-model="props.show"
|
v-model="$props.show"
|
||||||
:close-on-click-modal="false"
|
:close-on-click-modal="false"
|
||||||
:show-close="true"
|
:show-close="true"
|
||||||
:before-close="close"
|
:before-close="close"
|
||||||
|
13
web/src/components/FooterBar.vue
Normal file
13
web/src/components/FooterBar.vue
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<template>
|
||||||
|
<footer>
|
||||||
|
Powered by [ChatGPT-Plus-V3](https://github.com/yangjian102621/chatgpt-plus)
|
||||||
|
Copyright|极客学长
|
||||||
|
</footer>
|
||||||
|
</template>
|
||||||
|
<script setup>
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="stylus">
|
||||||
|
|
||||||
|
</style>
|
@ -49,7 +49,7 @@ import {setLoginUser} from "@/utils/storage";
|
|||||||
import {useRouter} from "vue-router";
|
import {useRouter} from "vue-router";
|
||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const title = ref('ChatGPT Plus 用户登录');
|
const title = ref('ChatGPT-PLUS 用户登录');
|
||||||
const username = ref(process.env.VUE_APP_USER);
|
const username = ref(process.env.VUE_APP_USER);
|
||||||
const password = ref(process.env.VUE_APP_PASS);
|
const password = ref(process.env.VUE_APP_PASS);
|
||||||
|
|
||||||
@ -89,7 +89,7 @@ const login = function () {
|
|||||||
top 0
|
top 0
|
||||||
bottom 0
|
bottom 0
|
||||||
background-color #313237
|
background-color #313237
|
||||||
background-image url("~@/assets/img/login-bg.png")
|
background-image url("~@/assets/img/login-bg.jpg")
|
||||||
background-size cover
|
background-size cover
|
||||||
background-position center
|
background-position center
|
||||||
background-repeat repeat-y
|
background-repeat repeat-y
|
||||||
|
@ -55,6 +55,8 @@
|
|||||||
</el-form>
|
</el-form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<footer-bar />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -66,9 +68,10 @@ import {Lock, UserFilled} from "@element-plus/icons-vue";
|
|||||||
import {httpPost} from "@/utils/http";
|
import {httpPost} from "@/utils/http";
|
||||||
import {ElMessage} from "element-plus";
|
import {ElMessage} from "element-plus";
|
||||||
import {useRouter} from "vue-router";
|
import {useRouter} from "vue-router";
|
||||||
|
import FooterBar from "@/components/FooterBar.vue";
|
||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const title = ref('ChatGPT Plus 用户注册');
|
const title = ref('ChatGPT-PLUS 用户注册');
|
||||||
const formData = ref({
|
const formData = ref({
|
||||||
username: '',
|
username: '',
|
||||||
password: '',
|
password: '',
|
||||||
@ -116,7 +119,7 @@ const validateMobile = function (mobile) {
|
|||||||
top 0
|
top 0
|
||||||
bottom 0
|
bottom 0
|
||||||
background-color #091519
|
background-color #091519
|
||||||
background-image url("~@/assets/img/reg-bg.png")
|
background-image url("~@/assets/img/reg-bg.jpg")
|
||||||
background-size cover
|
background-size cover
|
||||||
background-position center
|
background-position center
|
||||||
background-repeat no-repeat
|
background-repeat no-repeat
|
||||||
|
Loading…
Reference in New Issue
Block a user