|
@@ -24,12 +24,8 @@
|
|
|
</div>
|
|
|
<!-- 申请跳转按钮 -->
|
|
|
<div class="entranceBtn">
|
|
|
- <div
|
|
|
- class="btnContainer"
|
|
|
- v-for="item in pcBtnList"
|
|
|
- :key="item.value"
|
|
|
- @click="goToApplication(type = item.type)"
|
|
|
- >
|
|
|
+ <div class="btnContainer" v-for="item in pcBtnList" :key="item.value"
|
|
|
+ @click="goToApplication(type = item.type)">
|
|
|
<img :src="item.img" alt="">
|
|
|
<span>{{ item.label }}</span>
|
|
|
</div>
|
|
@@ -57,9 +53,7 @@
|
|
|
</div>
|
|
|
<div class="wapCent">
|
|
|
<div class="wapCentBox">
|
|
|
- <div class="wapItemBox"
|
|
|
- v-for="item in mbBtnList"
|
|
|
- :key="item.value">
|
|
|
+ <div class="wapItemBox" v-for="item in mbBtnList" :key="item.value">
|
|
|
<span>
|
|
|
<img :src="item.img">{{ item.label }}
|
|
|
</span>
|
|
@@ -76,7 +70,7 @@ import { Decrypt } from '@/util/secret.js'
|
|
|
import Cookie from 'js-cookie'
|
|
|
export default {
|
|
|
name: 'login',
|
|
|
- data () {
|
|
|
+ data() {
|
|
|
return {
|
|
|
userName: '',
|
|
|
// newPcBtnList: [
|
|
@@ -161,9 +155,15 @@ export default {
|
|
|
]
|
|
|
}
|
|
|
},
|
|
|
- created () {
|
|
|
+ created() {
|
|
|
+ localStorage.removeItem('INVITATION_CODE')
|
|
|
if (this.userName === '') {
|
|
|
let data = this.getQueryString('user')
|
|
|
+ const invitationCode = this.getQueryString('code')
|
|
|
+ if (invitationCode) {
|
|
|
+ localStorage.setItem('INVITATION_CODE', invitationCode)
|
|
|
+ }
|
|
|
+
|
|
|
if (data !== '' && data !== undefined) {
|
|
|
let user = Decrypt(data)
|
|
|
console.log(user, 'token')
|
|
@@ -177,45 +177,45 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
- goToApplication (type) {
|
|
|
+ goToApplication(type) {
|
|
|
if (type === 'IndividualBusiness') {
|
|
|
- this.$router.push({path: '/individualBusiness'})
|
|
|
+ this.$router.push({ path: '/individualBusiness' })
|
|
|
}
|
|
|
if (type === 'personal') {
|
|
|
- this.$router.push({path: '/personal'})
|
|
|
+ this.$router.push({ path: '/personal' })
|
|
|
}
|
|
|
if (type === 'enterprisesApply') {
|
|
|
- this.$router.push({path: '/enterprisesApply'})
|
|
|
+ this.$router.push({ path: '/enterprisesApply' })
|
|
|
}
|
|
|
if (type === 'organization') {
|
|
|
- this.$router.push({path: '/organization'})
|
|
|
+ this.$router.push({ path: '/organization' })
|
|
|
}
|
|
|
if (type === 'planner') {
|
|
|
- this.$router.push({path: '/planner'})
|
|
|
+ this.$router.push({ path: '/planner' })
|
|
|
}
|
|
|
if (type === 'SubsidiaryCompany') {
|
|
|
- this.$router.push({path: '/SubsidiaryCompany'})
|
|
|
+ this.$router.push({ path: '/SubsidiaryCompany' })
|
|
|
}
|
|
|
if (type === 'mUinitBusiness') {
|
|
|
- this.$router.push({path: '/mUinitBusiness'})
|
|
|
+ this.$router.push({ path: '/mUinitBusiness' })
|
|
|
}
|
|
|
if (type === 'mEnterprise') {
|
|
|
- this.$router.push({path: '/mEnterprise'})
|
|
|
+ this.$router.push({ path: '/mEnterprise' })
|
|
|
}
|
|
|
if (type === 'mPersonal') {
|
|
|
- this.$router.push({path: '/mPersonal'})
|
|
|
+ this.$router.push({ path: '/mPersonal' })
|
|
|
}
|
|
|
if (type === 'mOtherOrg') {
|
|
|
- this.$router.push({path: '/mOtherOrg'})
|
|
|
+ this.$router.push({ path: '/mOtherOrg' })
|
|
|
}
|
|
|
if (type === 'mPlanner') {
|
|
|
- this.$router.push({path: '/mPlanner'})
|
|
|
+ this.$router.push({ path: '/mPlanner' })
|
|
|
}
|
|
|
if (type === 'mSubsidiaryCompany') {
|
|
|
- this.$router.push({path: '/mSubsidiaryCompany'})
|
|
|
+ this.$router.push({ path: '/mSubsidiaryCompany' })
|
|
|
}
|
|
|
},
|
|
|
- getQueryString (name) {
|
|
|
+ getQueryString(name) {
|
|
|
const reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)', 'i')
|
|
|
const urlObj = window.location
|
|
|
const url = window.location.href
|
|
@@ -237,11 +237,13 @@ export default {
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
|
border-radius: 10px;
|
|
|
+
|
|
|
.smallImg {
|
|
|
width: 55px !important;
|
|
|
height: 55px !important;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.login {
|
|
|
height: 100%;
|
|
|
min-height: 870px;
|
|
@@ -250,24 +252,29 @@ export default {
|
|
|
background-image: url('../../assets/images/background.webp');
|
|
|
background-repeat: no-repeat;
|
|
|
background-size: 100% 100%;
|
|
|
+
|
|
|
.loginTop {
|
|
|
background-color: #333333;
|
|
|
position: relative;
|
|
|
z-index: 999;
|
|
|
+
|
|
|
.loginLogo {
|
|
|
height: 50px;
|
|
|
color: #fff;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
|
+
|
|
|
img {
|
|
|
width: 180px;
|
|
|
margin-right: 30px;
|
|
|
}
|
|
|
+
|
|
|
span {
|
|
|
font-size: 18px;
|
|
|
color: $fontColor;
|
|
|
}
|
|
|
+
|
|
|
.loginImgBox {
|
|
|
width: 51px;
|
|
|
height: 40px;
|
|
@@ -275,17 +282,21 @@ export default {
|
|
|
display: flex;
|
|
|
margin-right: 20px;
|
|
|
cursor: pointer;
|
|
|
+
|
|
|
img {
|
|
|
width: 100%;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.leftBox {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
font-weight: 400;
|
|
|
}
|
|
|
+
|
|
|
.rightBox {
|
|
|
font-size: 16px;
|
|
|
+
|
|
|
span {
|
|
|
color: #C5AA7B;
|
|
|
padding-left: 10px;
|
|
@@ -294,20 +305,23 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.loginCent {
|
|
|
margin-top: 100px;
|
|
|
font-family: Microsoft YaHei;
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
align-items: center;
|
|
|
+
|
|
|
.entrance {
|
|
|
- .entranceInfo{
|
|
|
- img{
|
|
|
+ .entranceInfo {
|
|
|
+ img {
|
|
|
display: block;
|
|
|
width: 480px;
|
|
|
margin: auto;
|
|
|
}
|
|
|
- p{
|
|
|
+
|
|
|
+ p {
|
|
|
margin: 30px 0;
|
|
|
font-size: 16px;
|
|
|
text-align: center;
|
|
@@ -315,21 +329,25 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.entranceBtn {
|
|
|
width: 700px;
|
|
|
display: grid;
|
|
|
grid-template-columns: repeat(2, 2fr);
|
|
|
justify-items: center;
|
|
|
margin-bottom: 18px;
|
|
|
- .btnContainer{
|
|
|
+
|
|
|
+ .btnContainer {
|
|
|
width: 80px;
|
|
|
cursor: pointer;
|
|
|
- img{
|
|
|
+
|
|
|
+ img {
|
|
|
display: block;
|
|
|
width: 80px;
|
|
|
height: 80px;
|
|
|
}
|
|
|
- span{
|
|
|
+
|
|
|
+ span {
|
|
|
display: block;
|
|
|
margin-top: 18px;
|
|
|
text-align: center;
|
|
@@ -338,9 +356,11 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.wap {
|
|
|
display: none;
|
|
|
}
|
|
|
+
|
|
|
.pc {
|
|
|
height: 100%;
|
|
|
display: flex;
|
|
@@ -348,10 +368,12 @@ export default {
|
|
|
min-height: 768px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
@media screen and (max-width: 750px) {
|
|
|
.warp {
|
|
|
width: 100%;
|
|
|
}
|
|
|
+
|
|
|
.login {
|
|
|
background: #F8F8F8;
|
|
|
position: relative;
|
|
@@ -371,21 +393,25 @@ export default {
|
|
|
font-size: 18px;
|
|
|
text-align: center;
|
|
|
}
|
|
|
+
|
|
|
.wapBan {
|
|
|
width: 100%;
|
|
|
background: url("../../assets/images/mb-background.png") no-repeat top center;
|
|
|
background-size: contain;
|
|
|
height: 300px;
|
|
|
}
|
|
|
+
|
|
|
.wapCent {
|
|
|
position: absolute;
|
|
|
top: 25%;
|
|
|
width: 100%;
|
|
|
+
|
|
|
.wapCentBox {
|
|
|
width: 94%;
|
|
|
margin: -50px auto 0 auto;
|
|
|
padding: 5%;
|
|
|
background: #FFFFFF;
|
|
|
+
|
|
|
// box-shadow: 0px 1px 32px 2px #F4F4F4;
|
|
|
// border-radius: 10px;
|
|
|
.wapItemBox {
|
|
@@ -395,19 +421,23 @@ export default {
|
|
|
justify-content: space-between;
|
|
|
width: 100%;
|
|
|
border-bottom: 1px solid #F6F4F7;
|
|
|
- >>> .el-button--primary {
|
|
|
+
|
|
|
+ >>>.el-button--primary {
|
|
|
width: 80px;
|
|
|
color: #FFEBC4;
|
|
|
background-color: #333333;
|
|
|
border-radius: 0;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.wapItemBox:last-child {
|
|
|
border-bottom: none;
|
|
|
}
|
|
|
+
|
|
|
span {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
+
|
|
|
img {
|
|
|
width: 35px;
|
|
|
height: 35px;
|