This commit is contained in:
1378012178@qq.com 2025-05-08 16:23:33 +08:00
commit 00737978c8
7 changed files with 8 additions and 11 deletions

BIN
public/resource/img/bj.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 KiB

View File

@ -3,7 +3,7 @@
* @Description: logo component * @Description: logo component
--> -->
<template> <template>
<div class="anticon advisoryClass" :class="getAppLogoClass" @click="goHome" style="background-image: url('/src/assets/images/bj.png');text-align: center;"> <div class="anticon" :class="getAppLogoClass" @click="goHome" style="background-image: url('../resource/img/bj.png');text-align: center;">
<img src="../../../assets/images/logo2.png" style="width:100%" v-show="showTitle"/> <img src="../../../assets/images/logo2.png" style="width:100%" v-show="showTitle"/>
<div class="ml-2 truncate md:opacity-100" :class="getTitleClass" v-show="!showTitle"> <div class="ml-2 truncate md:opacity-100" :class="getTitleClass" v-show="!showTitle">
<img src="../../../assets/images/logo.png" style="width:100%"/> <img src="../../../assets/images/logo.png" style="width:100%"/>
@ -92,7 +92,4 @@
} }
} }
.advisoryClass{
background-image: url(/@/assets/images/bj.png);
}
</style> </style>

View File

@ -1,5 +1,5 @@
<template> <template>
<Header :class="getHeaderClass" style="background-image: url('/src/assets/images/bj.png');"> <Header :class="getHeaderClass" style="background-image: url('../resource/img/bj.png');">
<!-- left start --> <!-- left start -->
<div :class="`${prefixCls}-left`" > <div :class="`${prefixCls}-left`" >
<!-- logo --> <!-- logo -->

View File

@ -4,7 +4,7 @@
<LayoutHeader fixed v-if="getShowFullHeaderRef" /> <LayoutHeader fixed v-if="getShowFullHeaderRef" />
<Layout :class="[layoutClass]"> <Layout :class="[layoutClass]">
<LayoutSideBar v-if="getShowSidebar || getIsMobile" /> <LayoutSideBar v-if="getShowSidebar || getIsMobile" />
<Layout :class="`${prefixCls}-main`" style="background-image: url('/src/assets/images/bj.png');"> <Layout :class="`${prefixCls}-main`" style="background-image: url('../resource/img/bj.png');">
<LayoutMultipleHeader /> <LayoutMultipleHeader />
<LayoutContent /> <LayoutContent />
<LayoutFooter /> <LayoutFooter />

View File

@ -165,7 +165,7 @@
if(headPath){ if(headPath){
return getFileAccessHttpUrl(headPath); return getFileAccessHttpUrl(headPath);
}else{ }else{
return '../../../../../public/resource/img/logo.png'; return '../resource/img/logo.png';
} }
} }

View File

@ -153,7 +153,7 @@
if(headPath){ if(headPath){
return getFileAccessHttpUrl(headPath); return getFileAccessHttpUrl(headPath);
}else{ }else{
return '../../../../../public/resource/img/logo.png'; return '../resource/img/logo.png';
} }
} }
/** /**

View File

@ -60,7 +60,7 @@
<a-row> <a-row>
<a-col :span="6" style="padding: 0 10px 0 0;"> <a-col :span="6" style="padding: 0 10px 0 0;">
<div style="height:729px;background:white;padding: 10px;border-radius: 5px; "> <div style="height:729px;background:white;padding: 10px;border-radius: 5px; ">
<a-tabs v-model:activeKey="activeKey" tabPosition="left" type="card" style="height:600px;"> <a-tabs v-model:activeKey="activeKey" tabPosition="left" type="card" style="height:700px;">
<a-tab-pane :key="key" v-for="(item,key) in treeData"> <a-tab-pane :key="key" v-for="(item,key) in treeData">
<!-- 一级分类 --> <!-- 一级分类 -->
<template #tab> <template #tab>
@ -74,7 +74,7 @@
mode="inline" mode="inline"
> >
<template v-for="(item2,key2) in item.children" > <template v-for="(item2,key2) in item.children" >
<a-sub-menu v-if="item2.children.length>0" :key="`sub`+key2" style="background-image: url('/src/assets/images/bj.png');text-align:center;border-radius:5px;"> <a-sub-menu v-if="item2.children.length>0" :key="`sub`+key2" style="background-image: url('../resource/img/bj.png');text-align:center;border-radius:5px;">
<template #title> <template #title>
<div> <div>
<span><img src="/src/assets/images/logo.png" /></span><span style="margin-left: 10px;">{{item2.title}}</span> <span><img src="/src/assets/images/logo.png" /></span><span style="margin-left: 10px;">{{item2.title}}</span>
@ -84,7 +84,7 @@
<div @click="onSelect(item3)"><span style="font-size: 18px;">·</span> <span style="margin-left: 10px;">{{item3.title}}</span></div> <div @click="onSelect(item3)"><span style="font-size: 18px;">·</span> <span style="margin-left: 10px;">{{item3.title}}</span></div>
</a-menu-item> </a-menu-item>
</a-sub-menu> </a-sub-menu>
<a-menu-item v-if="item2.children.length==0" :key="`sub`+key2" style="background-image: url('/src/assets/images/bj.png');text-align:center;border-radius:5px;"> <a-menu-item v-if="item2.children.length==0" :key="`sub`+key2" style="background-image: url('../resource/img/bj.png');text-align:center;border-radius:5px;">
<div @click="onSelect(item2)"> <div @click="onSelect(item2)">
<span><img src="/src/assets/images/logo.png" /></span><span style="margin-left: 10px;">{{item2.title}}</span> <span><img src="/src/assets/images/logo.png" /></span><span style="margin-left: 10px;">{{item2.title}}</span>
</div> </div>