|
@@ -4,9 +4,10 @@
|
|
<el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
|
|
<el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
|
|
<div class="left">
|
|
<div class="left">
|
|
<div class="left_1" @click="toHome">
|
|
<div class="left_1" @click="toHome">
|
|
- <el-image class="image" v-if="configInfo && configInfo.logoUrl && configInfo.logoUrl.length > 0" :src="getUrl(configInfo.logoUrl)" fit="fill" />
|
|
|
|
|
|
+ <el-image class="image" :src="logo" fit="fill" />
|
|
|
|
+ <!-- <el-image class="image" v-if="configInfo && configInfo.logoUrl && configInfo.logoUrl.length > 0" :src="getUrl(configInfo.logoUrl)" fit="fill" />
|
|
<el-image class="image" v-else :src="siteInfo.logoUrl" fit="fill" />
|
|
<el-image class="image" v-else :src="siteInfo.logoUrl" fit="fill" />
|
|
- <div class="left_title">{{ configInfo.zhTitle || siteInfo.zhTitle }}</div>
|
|
|
|
|
|
+ <div class="left_title">{{ configInfo.zhTitle || siteInfo.zhTitle }}</div> -->
|
|
</div>
|
|
</div>
|
|
<div class="left_2">
|
|
<div class="left_2">
|
|
<template v-for="item in menusList" :key="item.id">
|
|
<template v-for="item in menusList" :key="item.id">
|
|
@@ -45,7 +46,8 @@
|
|
import QRCodeVue from 'qrcode.vue'
|
|
import QRCodeVue from 'qrcode.vue'
|
|
import { get } from 'lodash-es'
|
|
import { get } from 'lodash-es'
|
|
import { LoginOutlined } from '@ant-design/icons-vue'
|
|
import { LoginOutlined } from '@ant-design/icons-vue'
|
|
-import { siteInfo } from '@/layout/site'
|
|
|
|
|
|
+// 图片引入
|
|
|
|
+import logo from '/images/logohome.png'
|
|
// 接口
|
|
// 接口
|
|
import { DesignStore } from '@/store/api/platform/design'
|
|
import { DesignStore } from '@/store/api/platform/design'
|
|
const designStore = DesignStore()
|
|
const designStore = DesignStore()
|
|
@@ -103,9 +105,6 @@ const toOut = () => {
|
|
const toHome = () => {
|
|
const toHome = () => {
|
|
router.push({ path: `/` })
|
|
router.push({ path: `/` })
|
|
}
|
|
}
|
|
-const getUrl = (item) => {
|
|
|
|
- if (item && item.length > 0) return `${import.meta.env.VITE_APP_HOST}${item[0].uri}`
|
|
|
|
-}
|
|
|
|
watch(
|
|
watch(
|
|
route,
|
|
route,
|
|
(newVal) => {
|
|
(newVal) => {
|
|
@@ -138,8 +137,8 @@ watch(
|
|
flex-direction: column;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
align-items: center;
|
|
.image {
|
|
.image {
|
|
- height: 60px;
|
|
|
|
- width: 220px;
|
|
|
|
|
|
+ height: 40px;
|
|
|
|
+ width: 100%;
|
|
}
|
|
}
|
|
.left_title {
|
|
.left_title {
|
|
padding: 10px 0 0 0;
|
|
padding: 10px 0 0 0;
|