|
|
@@ -1,8 +1,13 @@
|
|
|
<template>
|
|
|
<div class="scope-topbar">
|
|
|
<div class="collapse">
|
|
|
- <img class="avatar" :src="logoUrl | default_avatar" alt="" />
|
|
|
- <div>后台业务管理系统</div>
|
|
|
+ <img class="avatar" :src="logoUrl | default_avatar" alt="商标" />
|
|
|
+ <div>
|
|
|
+ <span v-if="$projectName == 'business'">{{ shopInfo.merchantName }}</span>
|
|
|
+ <span v-else>花卉宝</span>
|
|
|
+ <span class="app-size-32 app-bold"> - </span>
|
|
|
+ <span>后台业务管理系统</span>
|
|
|
+ </div>
|
|
|
<!-- <icon-svg name="icon-menu"></icon-svg> -->
|
|
|
</div>
|
|
|
|
|
|
@@ -48,6 +53,7 @@ export default {
|
|
|
|
|
|
data() {
|
|
|
return {
|
|
|
+ $projectName: this.$projectName,
|
|
|
index: '0'
|
|
|
};
|
|
|
},
|
|
|
@@ -116,8 +122,8 @@ export default {
|
|
|
align-items: center;
|
|
|
height: 50px;
|
|
|
padding: 0 10px;
|
|
|
- // background: #3385FF;
|
|
|
- background: linear-gradient(120deg, $color2 0%, #3385FF 40%);
|
|
|
+ background: #3385FF;
|
|
|
+ // background: linear-gradient(120deg, $color2 0%, #3385FF 40%);
|
|
|
color: #fff;
|
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
|
|
|
|