Browse Source

Merge branch 'pre-production'

master
pref_mail@163.com 2 months ago
parent
commit
9f53941354
  1. BIN
      public/img/Qrxcx.png
  2. 1
      src/css/common.css
  3. 1
      src/css/login.css
  4. 15
      src/page/index/logo.vue
  5. 3
      src/page/login/aiqa.vue
  6. 79
      src/page/login/index.vue
  7. 2
      src/styles/login.scss
  8. 2
      src/views/wel/index.vue

BIN
public/img/Qrxcx.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

After

Width:  |  Height:  |  Size: 80 KiB

1
src/css/common.css

@ -1812,6 +1812,7 @@ table {
float: left; float: left;
width: 50%; width: 50%;
position: relative; position: relative;
} }
.login-left .img { .login-left .img {

1
src/css/login.css

@ -36,6 +36,7 @@
float: left; float: left;
width: 50%; width: 50%;
position: relative; position: relative;
} }
.login-left .img { .login-left .img {

15
src/page/index/logo.vue

@ -1,6 +1,6 @@
<template> <template>
<div class="avue-logo"> <div class="avue-logo">
<div class="logo-x"> <div class="logo-x" @click="handleGoIndex">
<div class="logo-img"> <div class="logo-img">
<img src="../../../public/img/p-logo.png" /> <img src="../../../public/img/p-logo.png" />
</div> </div>
@ -15,7 +15,6 @@
<span class="avue-logo_title" key="1">{{ website.indexTitle }} </span> <span class="avue-logo_title" key="1">{{ website.indexTitle }} </span>
</template> </template>
</transition-group> </transition-group>
</div> </div>
</div> </div>
</template> </template>
@ -28,11 +27,15 @@ export default {
data() { data() {
return {}; return {};
}, },
created() { }, created() {},
computed: { computed: {
...mapGetters(['isCollapse']), ...mapGetters(['isCollapse']),
}, },
methods: {}, methods: {
handleGoIndex() {
this.$router.push('/wel/index');
},
},
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
@ -40,7 +43,7 @@ export default {
height: 100%; height: 100%;
display: flex; display: flex;
align-items: center; align-items: center;
margin:0 10px; margin: 0 10px;
img { img {
width: 40px; width: 40px;
height: 40px; height: 40px;
@ -52,7 +55,7 @@ export default {
height: 100%; height: 100%;
background-color: #fff; background-color: #fff;
} }
.avue-logo{ .avue-logo {
color: #000000; color: #000000;
} }
</style> </style>

3
src/page/login/aiqa.vue

@ -564,9 +564,8 @@ AiData(); //初始化AI机器人
} }
.right { .right {
flex: 1;
height: 100%; height: 100%;
width: 34%;
.el-tabs { .el-tabs {
height: 100%; height: 100%;

79
src/page/login/index.vue

@ -1,18 +1,22 @@
<template> <template>
<div class="login-container" ref="login" @keyup.enter="handleLogin"> <div class="login-container" ref="login" @keyup.enter="handleLogin">
<div class="login-weaper animated bounceInDown"> <div class="login-weaper animated bounceInDown">
<div class="top"> <!-- 横幅顶部 -->
<!-- <div class="top">
<img src="https://www.v6g.cn/IMAGE/top.png" /> <img src="https://www.v6g.cn/IMAGE/top.png" />
</div> </div> -->
<div class="login-left"> <div class="login-left">
<div class="login-time"> <div class="login-time">
{{ time }} {{ time }}
</div> </div>
<div class="left"> <!-- 对联左 -->
<!-- <div class="left">
<img src="https://www.v6g.cn/IMAGE/left.png" /> <img src="https://www.v6g.cn/IMAGE/left.png" />
</div> </div> -->
<!-- 本地图片 -->
<img src="../../../public/img/indexbg.png" /> <!-- <img src="../../../public/img/indexbg.png" /> -->
<!-- 线上图片 -->
<img src="https://www.v6g.cn/IMAGE/indexbg.png" />
<!-- <p class="title">{{ $t('login.info') }}</p> --> <!-- <p class="title">{{ $t('login.info') }}</p> -->
<!-- <img class="img" src="/img/logo.png" alt="" /> --> <!-- <img class="img" src="/img/logo.png" alt="" /> -->
@ -37,9 +41,10 @@
<!-- <a :href="website.ssoUrl + website.redirectUri">{{ $t('login.ssoLogin') }}</a> --> <!-- <a :href="website.ssoUrl + website.redirectUri">{{ $t('login.ssoLogin') }}</a> -->
</div> </div>
</div> </div>
<div class="right"> <!-- 对联右 -->
<!-- <div class="right">
<img src="https://www.v6g.cn/IMAGE/right.png" /> <img src="https://www.v6g.cn/IMAGE/right.png" />
</div> </div> -->
</div> </div>
</div> </div>
<div class="index_footer"> <div class="index_footer">
@ -182,48 +187,70 @@ export default {
width: 130px; width: 130px;
height: 60px; height: 60px;
} }
span{
margin-left: 10px; span {
} margin-left: 10px;
}
} }
.left{
.left {
position: absolute; position: absolute;
left: 0; left: 0;
width: 80px; width: 80px;
height: 100%; height: 100%;
mask: linear-gradient(to right, #000000, #ffffffb0); mask: linear-gradient(to right, #000000, #ffffffb0);
img{ img {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
} }
.right{
.right {
position: absolute; position: absolute;
right: 0; right: 0;
width: 80px; width: 80px;
height: 100%; height: 100%;
mask: linear-gradient(to left, #000000, #ffffffb0); mask: linear-gradient(to left, #000000, #ffffffb0);
img{
img {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
} }
.login-weaper{
.login-weaper {
position: relative; position: relative;
} }
.top{
.top {
position: absolute; position: absolute;
top: -18%; top: -18%;
left: 35%; left: 35%;
width: 30%; width: 30%;
height: 70px; height: 70px;
z-index: 1; z-index: 1;
overflow: hidden; overflow: hidden;
border-radius: 15px; border-radius: 15px;
img{
img {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
} }
.login-left {
/* 新增 */
box-sizing: border-box !important;
border: 1px solid #ebebeb !important;
background: #ffffff5c;
box-shadow: -1px -5px 8px #00000003;
backdrop-filter: blur(6px);
img {
width: 78%;
height: 100%;
}
}
</style> </style>

2
src/styles/login.scss

@ -6,7 +6,7 @@
height: 100%; height: 100%;
margin: 0 auto; margin: 0 auto;
// background-image: url('/img/bg/bg.jpg'); // background-image: url('/img/bg/bg.jpg');
background-image: url('https://www.v6g.cn/IMAGE/fm2.png'); background-image: url('https://www.v6g.cn/IMAGE/kg2.png');
background-size: 100% 100%; background-size: 100% 100%;
} }

2
src/views/wel/index.vue

@ -109,6 +109,7 @@ onUnmounted(() => {
img { img {
width: 300px; width: 300px;
height: 300px; height: 300px;
margin-right: 20px;
} }
.content { .content {
display: flex; display: flex;
@ -161,7 +162,6 @@ onUnmounted(() => {
.time { .time {
font-size: 16px; font-size: 16px;
font-weight: bold; font-weight: bold;
} }
.category { .category {
font-size: 16px; font-size: 16px;

Loading…
Cancel
Save