|
|
@@ -108,7 +108,7 @@ Vue.mixin({
|
|
|
return {
|
|
|
title: this.shareTitle || '云飞智控',
|
|
|
path: this.sharePath || '/pages/index/index',
|
|
|
- imageUrl: this.shareImage || '/static/logo.png'
|
|
|
+ imageUrl: this.shareImage || ''
|
|
|
}
|
|
|
},
|
|
|
|
|
|
@@ -116,7 +116,7 @@ Vue.mixin({
|
|
|
return {
|
|
|
title: this.timelineTitle || '云飞智控',
|
|
|
query: this.timelineQuery || '',
|
|
|
- imageUrl: this.timelineImage || '/static/logo.png'
|
|
|
+ imageUrl: this.timelineImage || ''
|
|
|
}
|
|
|
},
|
|
|
// 如果需要,也可以在created中赋值,但上面这样直接赋值也可以,因为mixin的data会在每个组件创建时合并
|