描述:修改

This commit is contained in:
SelfRidicule 2024-08-30 14:09:56 +08:00
parent 6dad90bebf
commit 188cafccc1
3 changed files with 30 additions and 18 deletions

BIN
src/assets/body-bg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 467 KiB

View File

@ -15,16 +15,16 @@
<router-view /> <router-view />
<div class='footer'> <!-- <div class='footer'>-->
<div class='links'> <!-- <div class='links'>-->
<a href='_self'>帮助</a> <!-- <a href='_self'>帮助</a>-->
<a href='_self'>隐私</a> <!-- <a href='_self'>隐私</a>-->
<a href='_self'>条款</a> <!-- <a href='_self'>条款</a>-->
</div> <!-- </div>-->
<div class='copyright'> <!-- <div class='copyright'>-->
<!-- <a target='_blank' href='https://beian.miit.gov.cn'>浙ICP备2021888888号</a>--> <!--&lt;!&ndash; <a target='_blank' href='https://beian.miit.gov.cn'>浙ICP备2021888888号</a>&ndash;&gt;-->
</div> <!-- </div>-->
</div> <!-- </div>-->
</div> </div>
</div> </div>
</template> </template>
@ -45,6 +45,7 @@ export default {
</script> </script>
<style lang='less' scoped> <style lang='less' scoped>
#userLayout.user-layout-wrapper { #userLayout.user-layout-wrapper {
height: 100%; height: 100%;
@ -59,18 +60,26 @@ export default {
.container { .container {
width: 100%; width: 100%;
min-height: 100%; height: 100%;
background: #f0f2f5 url(~@/assets/background.svg) no-repeat 50%; background: no-repeat left/contain url(~@/assets/body-bg.png),
background-size: 100%; linear-gradient(0deg, rgba(23,59,199,1) 0%, rgba(55,90,219,1) 100%);
padding: 110px 0 144px;
position: relative; position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-end;
padding-right: 50px;
a { a {
text-decoration: none; text-decoration: none;
} }
.top { .top {
width: 600px;
text-align: center; text-align: center;
margin-top: -150px;
.header { .header {
height: 44px; height: 44px;
@ -88,7 +97,7 @@ export default {
.title { .title {
font-size: 33px; font-size: 33px;
color: rgba(0, 0, 0, .85); color: white;
font-family: Avenir, 'Helvetica Neue', Arial, Helvetica, sans-serif; font-family: Avenir, 'Helvetica Neue', Arial, Helvetica, sans-serif;
font-weight: 600; font-weight: 600;
} }
@ -105,8 +114,9 @@ export default {
.main { .main {
min-width: 260px; min-width: 260px;
width: 368px; width: 600px;
margin: 0 auto; padding: 0 100px;
//margin: 0 auto;
} }
.footer { .footer {

View File

@ -73,7 +73,9 @@
</a-tabs> </a-tabs>
<a-form-item> <a-form-item>
<a-checkbox v-decorator="['rememberMe', { valuePropName: 'checked' }]">自动登录</a-checkbox> <a-checkbox v-decorator="['rememberMe', { valuePropName: 'checked' }]">
<span style='color: white;'>自动登录</span>
</a-checkbox>
<router-link class="register" style="float: right;" :to="{ name: 'register' }">注册账户</router-link> <router-link class="register" style="float: right;" :to="{ name: 'register' }">注册账户</router-link>
</a-form-item> </a-form-item>