|
@@ -36,7 +36,7 @@
|
|
|
class="content-abstract-module"
|
|
|
:beforeLeavePage="beforeLeavePage"
|
|
|
/>
|
|
|
- <section class="content-abstract-other bg-white">
|
|
|
+ <section class="content-abstract-other bg-white" v-if="!IsSunPublishContent">
|
|
|
<ContentAbstractEntList
|
|
|
v-if="!IsCustomTopNet"
|
|
|
class="content-abstract-ent-list-module"
|
|
@@ -303,6 +303,9 @@ export default {
|
|
|
IsCustomTopNet() {
|
|
|
return this.content.IsCustomTopNet || false
|
|
|
},
|
|
|
+ hasPowerToReadSunPublishContent() {
|
|
|
+ return this.content.hasPowerToReadSunPublishContent || false
|
|
|
+ },
|
|
|
IsSunPublishContent() {
|
|
|
return this.content.IsSunPublishContent || false
|
|
|
},
|
|
@@ -325,8 +328,8 @@ export default {
|
|
|
canReadConf() {
|
|
|
if (this.IsSunPublishContent) {
|
|
|
return {
|
|
|
- show: true, // 是否展示全部内容
|
|
|
- showContentModule: this.content.isCanRead,
|
|
|
+ show: this.content.isCanRead, // 是否展示全部内容
|
|
|
+ showContentModule: this.hasPowerToReadSunPublishContent,
|
|
|
}
|
|
|
} else {
|
|
|
return {
|
|
@@ -386,7 +389,6 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
async created() {
|
|
|
- window.t = this
|
|
|
this.appHeaderActions()
|
|
|
await this.getPageState()
|
|
|
this.initAppWxShare()
|