|
@@ -53,7 +53,10 @@
|
|
class="content-abstract-module"
|
|
class="content-abstract-module"
|
|
:beforeLeavePage="beforeLeavePage"
|
|
:beforeLeavePage="beforeLeavePage"
|
|
/>
|
|
/>
|
|
- <section class="content-abstract-other bg-white" v-if="!IsSunPublishContent">
|
|
|
|
|
|
+ <section
|
|
|
|
+ class="content-abstract-other bg-white"
|
|
|
|
+ v-if="!IsSunPublishContent"
|
|
|
|
+ >
|
|
<ContentAbstractEntList
|
|
<ContentAbstractEntList
|
|
v-if="!IsCustomTopNet"
|
|
v-if="!IsCustomTopNet"
|
|
class="content-abstract-ent-list-module"
|
|
class="content-abstract-ent-list-module"
|
|
@@ -141,7 +144,10 @@
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="j-footer article-content-footer">
|
|
<div class="j-footer article-content-footer">
|
|
- <TabActions :beforeLeavePage="beforeLeavePage" v-if="showTabActions" />
|
|
|
|
|
|
+ <TabActions
|
|
|
|
+ :beforeLeavePage="beforeLeavePage"
|
|
|
|
+ v-if="showTabActions"
|
|
|
|
+ />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</van-skeleton>
|
|
</van-skeleton>
|
|
@@ -352,12 +358,12 @@ export default {
|
|
if (this.IsSunPublishContent) {
|
|
if (this.IsSunPublishContent) {
|
|
return {
|
|
return {
|
|
show: this.content.isCanRead, // 是否展示全部内容
|
|
show: this.content.isCanRead, // 是否展示全部内容
|
|
- showContentModule: this.hasPowerToReadSunPublishContent,
|
|
|
|
|
|
+ showContentModule: this.hasPowerToReadSunPublishContent
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
return {
|
|
return {
|
|
show: this.content.isCanRead,
|
|
show: this.content.isCanRead,
|
|
- showContentModule: true,
|
|
|
|
|
|
+ showContentModule: true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
@@ -377,12 +383,14 @@ export default {
|
|
return this.mainModel.moduleShow
|
|
return this.mainModel.moduleShow
|
|
},
|
|
},
|
|
advancedModuleShow() {
|
|
advancedModuleShow() {
|
|
- const { tbService, customerRecommend, timeline, zbRecommend } = this.expandModel.moduleShow
|
|
|
|
|
|
+ const { tbService, customerRecommend, timeline, zbRecommend } =
|
|
|
|
+ this.expandModel.moduleShow
|
|
return Object.assign({}, this.expandModel.moduleShow, {
|
|
return Object.assign({}, this.expandModel.moduleShow, {
|
|
- tbService: (this.IsCustomTopNet || this.IsSunPublishContent) ? false : tbService,
|
|
|
|
|
|
+ tbService:
|
|
|
|
+ this.IsCustomTopNet || this.IsSunPublishContent ? false : tbService,
|
|
customerRecommend: this.IsSunPublishContent ? false : customerRecommend,
|
|
customerRecommend: this.IsSunPublishContent ? false : customerRecommend,
|
|
timeline: this.IsSunPublishContent ? false : timeline,
|
|
timeline: this.IsSunPublishContent ? false : timeline,
|
|
- zbRecommend: this.IsSunPublishContent ? false : zbRecommend,
|
|
|
|
|
|
+ zbRecommend: this.IsSunPublishContent ? false : zbRecommend
|
|
})
|
|
})
|
|
},
|
|
},
|
|
// 客户推荐模块是否展示
|
|
// 客户推荐模块是否展示
|
|
@@ -740,7 +748,9 @@ export default {
|
|
.replace(/ /g, '')
|
|
.replace(/ /g, '')
|
|
if (shareType === 1) {
|
|
if (shareType === 1) {
|
|
// 分享给微信好友
|
|
// 分享给微信好友
|
|
- link = location.pathname.replace(import.meta.env.VITE_APP_BASE_URL, '')
|
|
|
|
|
|
+ link = location.pathname
|
|
|
|
+ .replace(import.meta.env.VITE_APP_BASE_URL, '')
|
|
|
|
+ .replace('/jyapp', '')
|
|
if (location.search) {
|
|
if (location.search) {
|
|
link += `${location.search}&source=app_infocontentshare&from=${
|
|
link += `${location.search}&source=app_infocontentshare&from=${
|
|
this.shareInfoRes.userId || ''
|
|
this.shareInfoRes.userId || ''
|