Authored by 郭成尧

'品牌名称是否显示判断'

@@ -20,6 +20,7 @@ @@ -20,6 +20,7 @@
20 display: none; 20 display: none;
21 } 21 }
22 } 22 }
  23 +
23 .top-change { 24 .top-change {
24 .header { 25 .header {
25 background-color: #fff; 26 background-color: #fff;
@@ -51,15 +52,15 @@ @@ -51,15 +52,15 @@
51 computed: { 52 computed: {
52 topClass() { 53 topClass() {
53 return { 54 return {
54 - "top-change": this.topChange || !this.shareData.isBlkShop,  
55 - "top-box": true 55 + 'top-change': this.topChange || !this.shareData.isBlkShop,
  56 + 'top-box': true
56 }; 57 };
57 }, 58 },
58 title() { 59 title() {
59 let result = ''; 60 let result = '';
60 61
61 - if (this.shareData.isBlkShop) {  
62 - result = this.shareData.brandName 62 + if (!this.shareData.isBlkShop) {
  63 + result = this.shareData.brandName;
63 } 64 }
64 65
65 return result; 66 return result;