123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320 |
- <template>
- <div class="page">
- <div class="page-top flex flex-col justify-center items-center">
- <!-- <img class="logo" :src="supplierInfo.logo" /> -->
- <div class="name mt-2" v-text="supplierInfo.shopName"></div>
- </div>
- <div class="page-content">
- <keep-alive>
- <div class="list">
- <div
- class="section flex flex-col justify-center items-center mt-6 mb-6"
- v-for="item in list"
- :key="item.id"
- @click="toDetail(item)"
- @mouseover="onMouseover(item)"
- @mouseleave="onMouselevel(item)"
- >
- <div class="icon-image" :class="'item' + item.id"></div>
- <div class="name mt-4" v-text="item.name"></div>
- </div>
- </div>
- </keep-alive>
- </div>
- </div>
- </template>
- <script>
- import { mapGetters } from 'vuex'
- import { toAuthorization } from '~/utils'
- import { isWeChat } from '~/utils/validator'
- export default {
- name: 'NormalHomePage',
- data() {
- return {
- list: [],
- }
- },
- computed: {
- ...mapGetters([
- 'supplierInfo',
- 'authUserId',
- 'appId',
- 'routePrefix',
- 'accountType',
- ]),
- },
- created() {
- this.initEntryItems()
- },
- beforeDestroy() {
- this.$removeStorage(this.routePrefix, 'login_redicret')
- },
- methods: {
- // 初始化入口图标
- initEntryItems() {
- this.list = [
- {
- id: 0,
- name: '正品授权申请入口',
- path: '/form/club-register',
- active: false,
- },
- {
- id: 1,
- name: '正品授权',
- path: '/approve',
- active: false,
- },
- {
- id: 2,
- name: '资料库',
- path: '/database/article',
- active: false,
- },
- {
- id: 3,
- name: '意见反馈',
- path: '/feedback',
- active: false,
- },
- ]
- },
- toDetail(item) {
- const hasLogin = this.$store.getters.accessToken
- // 保存登录重定向路由
- this.$setStorage(
- this.routePrefix,
- 'login_redicret',
- this.routePrefix + item.path
- )
- if (item.id > 1 && !hasLogin) {
- // 在微信浏览器中使用微信授权登录
- if (isWeChat() && this.appId && this.accountType === 2) {
- const payload = {
- authUserId: this.authUserId,
- routePrefix: this.routePrefix,
- }
- return toAuthorization(this.appId, payload)
- }
- this.$toast({ message: '请先登录', duration: 1000 })
- this.$store.commit('app/SHOW_LOGIN')
- return
- }
- if (item.id === 0) {
- const url = this.routePrefix + item.path
- this.$router.push(url)
- } else {
- const url = this.routePrefix + item.path
- this.$router.push(url)
- }
- },
- onMouseover(item) {
- const isPc = this.$store.getters.isPc
- if (!isPc) return
- item.active = true
- },
- onMouselevel(item) {
- const isPc = this.$store.getters.isPc
- if (!isPc) return
- item.active = false
- },
- },
- }
- </script>
- <style scoped lang="scss">
- // pc 端
- @media screen and (min-width: 768px) {
- .page-top {
- height: 360px;
- @include themify($themes) {
- background: themed('pc-banner-home');
- background-size: auto 360px;
- }
- .logo {
- display: block;
- width: 120px;
- height: 120px;
- border-radius: 50%;
- background: #fff;
- }
- .name {
- font-size: 30px;
- color: #fff;
- }
- }
- .page-content {
- width: 1200px;
- margin: 0 auto;
- overflow: hidden;
- .list {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .section {
- width: 284px;
- height: 260px;
- margin-left: auto;
- margin-right: auto;
- background-color: #fff;
- transition: all 0.4s;
- cursor: pointer;
- border-radius: 4px;
- .icon-image {
- width: 86px;
- height: 86px;
- background-size: 86px 86px;
- background-repeat: no-repeat;
- background-position: center;
- &.item0 {
- @include themify($themes) {
- background-image: themed('pc-icon-home-edit');
- }
- }
- &.item1 {
- @include themify($themes) {
- background-image: themed('pc-icon-home-approve');
- }
- }
- &.item2 {
- @include themify($themes) {
- background-image: themed('pc-icon-home-doc');
- }
- }
- &.item3 {
- @include themify($themes) {
- background-image: themed('pc-icon-home-feedback');
- }
- }
- }
- &:hover {
- transform: translateY(-10px);
- @include themify($themes) {
- background-color: themed('color');
- }
- .icon-image {
- &.item0 {
- background-image: url(~assets/theme-images/common/pc-icon-edit-active.png) !important;
- }
- &.item1 {
- background-image: url(~assets/theme-images/common/pc-icon-approve-active.png) !important;
- }
- &.item2 {
- background-image: url(~assets/theme-images/common/pc-icon-doc-active.png) !important;
- }
- &.item3 {
- background-image: url(~assets/theme-images/common/pc-icon-feedback-active.png) !important;
- }
- }
- .name {
- color: #fff;
- }
- }
- .icon {
- width: 86px;
- height: 86px;
- }
- .name {
- font-size: 24px;
- color: #404040;
- }
- }
- }
- }
- // 移动 端
- @media screen and (max-width: 768px) {
- .page-top {
- height: 46vw;
- @include themify($themes) {
- background: themed('h5-banner-home');
- background-size: auto 46vw;
- }
- .logo {
- display: block;
- width: 14.8vw;
- height: 14.8vw;
- border-radius: 50%;
- background: #fff;
- }
- .name {
- font-size: 4vw;
- color: #fff;
- }
- }
- .page-content {
- .section {
- width: 85.6vw;
- height: 58vw;
- margin-left: auto;
- margin-right: auto;
- box-shadow: 0px 0.4vw 2vw rgba(0, 6, 32, 0.08);
- border-radius: 4px;
- .icon {
- width: 20vw;
- height: 20vw;
- }
- .name {
- font-size: 4.8vw;
- color: #404040;
- }
- .icon-image {
- width: 86px;
- height: 86px;
- background-size: 86px 86px;
- background-repeat: no-repeat;
- background-position: center;
- &.item0 {
- @include themify($themes) {
- background-image: themed('h5-icon-home-edit');
- }
- }
- &.item1 {
- @include themify($themes) {
- background-image: themed('h5-icon-home-approve');
- }
- }
- &.item2 {
- @include themify($themes) {
- background-image: themed('h5-icon-home-doc');
- }
- }
- &.item3 {
- @include themify($themes) {
- background-image: themed('h5-icon-home-feedback');
- }
- }
- }
- }
- }
- }
- </style>
|