bug
BIN
public/favicon.ico
Normal file
|
After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 579 B After Width: | Height: | Size: 508 B |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.4 KiB |
@@ -4,7 +4,7 @@
|
|||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||||
<link rel="icon" href="<%= BASE_URL %>favicon_32.ico">
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||||
<title>TEMU助手</title>
|
<title>TEMU助手</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
BIN
src/assets/images/logo.jpg
Normal file
|
After Width: | Height: | Size: 657 B |
BIN
src/assets/images/logo.png
Normal file
|
After Width: | Height: | Size: 152 KiB |
@@ -2,10 +2,8 @@
|
|||||||
<div class="admin">
|
<div class="admin">
|
||||||
<div class="admin-top">
|
<div class="admin-top">
|
||||||
<div class="logo">
|
<div class="logo">
|
||||||
<!-- <img src="../../assets/images/logo.png" /> -->
|
<img src="../assets/images/logo.png" />
|
||||||
<div>
|
<span>v{{ version }}</span>
|
||||||
<h1>TEMU助手</h1>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="admin-right">
|
<div class="admin-right">
|
||||||
<el-tooltip class="item" effect="dark" content="用户激活" placement="top">
|
<el-tooltip class="item" effect="dark" content="用户激活" placement="top">
|
||||||
@@ -119,6 +117,7 @@
|
|||||||
mallName: this.$store.state.mallName,
|
mallName: this.$store.state.mallName,
|
||||||
code: ''
|
code: ''
|
||||||
},
|
},
|
||||||
|
version: '',
|
||||||
vipType: ["体验会员","月会员","半年会员","年会员","年会员多店通用"]
|
vipType: ["体验会员","月会员","半年会员","年会员","年会员多店通用"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -132,7 +131,7 @@
|
|||||||
} else {
|
} else {
|
||||||
return this.vipType[this.$store.state.userInfo.type] + '/有效期至' + this.$store.state.userInfo.expireTime
|
return this.vipType[this.$store.state.userInfo.type] + '/有效期至' + this.$store.state.userInfo.expireTime
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
return '已过期';
|
return '已过期';
|
||||||
}
|
}
|
||||||
@@ -148,6 +147,9 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
created () {
|
created () {
|
||||||
|
const devVersion = require('../manifest.development.json').version
|
||||||
|
const prodVersion = require('../manifest.production.json').version
|
||||||
|
this.version = process.env.NODE_ENV === 'production' ? prodVersion : devVersion
|
||||||
this.activePath = this.$route.fullPath
|
this.activePath = this.$route.fullPath
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -276,16 +278,16 @@
|
|||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: baseline;
|
||||||
cursor: pointer;
|
|
||||||
|
|
||||||
&:hover {
|
span {
|
||||||
opacity: 0.6;
|
position: relative;
|
||||||
|
bottom: 12px;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
width: 42px;
|
width: 60px;
|
||||||
height: 42px;
|
|
||||||
margin-right: 12px;
|
margin-right: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||