This commit is contained in:
BianLzhaoMin 2025-09-12 16:51:14 +08:00
parent 553ce1daab
commit 8bab6d1166
7 changed files with 10 additions and 6 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 368 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 513 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 862 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

View File

@ -3,7 +3,11 @@
<div class="header-content"> <div class="header-content">
<div class="header-left"> <div class="header-left">
<div class="logo-section" @click="handleLogoClick"> <div class="logo-section" @click="handleLogoClick">
<img :src="logoUrl" alt="Logo" class="logo" /> <img
src="../../../assets/images/productCenter/logo.png"
alt="Logo"
class="logo"
/>
<span class="platform-title">{{ platformTitle }}</span> <span class="platform-title">{{ platformTitle }}</span>
</div> </div>
</div> </div>
@ -68,22 +72,22 @@ export default {
{ {
label: '产品中心', label: '产品中心',
routePath: 'productCenter', routePath: 'productCenter',
icon: '/img/psp/productCenter/products.png', icon: require('../../../assets/images/productCenter/products.png'),
}, },
{ {
label: '公共组件', label: '公共组件',
routePath: 'commonCom', routePath: 'commonCom',
icon: '/img/psp/productCenter/components.png', icon: require('../../../assets/images/productCenter/components.png'),
}, },
{ {
label: '宣传物料', label: '宣传物料',
routePath: 'proMaterials', routePath: 'proMaterials',
icon: '/img/psp/productCenter/materials.png', icon: require('../../../assets/images/productCenter/materials.png'),
}, },
{ {
label: '文档中心', label: '文档中心',
routePath: 'docCenter', routePath: 'docCenter',
icon: '/img/psp/productCenter/docs.png', icon: require('../../../assets/images/productCenter/docs.png'),
}, },
], ],
} }
@ -117,7 +121,7 @@ export default {
<style scoped> <style scoped>
.header { .header {
background-image: url('/img/psp/productCenter/topbg.png'); background-image: url('../../../assets/images/productCenter/topbg.png');
color: white; color: white;
padding: 0; padding: 0;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);