|
@@ -31,7 +31,7 @@
|
|
|
>{{ tag.label }}</span
|
|
|
>
|
|
|
</div>
|
|
|
- <div class="sub-info-line" v-if="!IsSunPublishContent">
|
|
|
+ <div class="sub-info-line">
|
|
|
<span class="info-publish-time">{{ content.time }}</span>
|
|
|
<span v-if="cbPersonText" class="info-canbiao-persons">
|
|
|
参标人:{{ cbPersonText }}
|
|
@@ -116,6 +116,9 @@ export default {
|
|
|
}),
|
|
|
|
|
|
cbPersonText() {
|
|
|
+ if (this.IsSunPublishContent) {
|
|
|
+ return ''
|
|
|
+ }
|
|
|
const { inBiddingPersonList: bList } = this.otherModel
|
|
|
if (Array.isArray(bList) && bList.length > 0) {
|
|
|
const list = bList.map((b) => b.trim()).filter((b) => !!b)
|
|
@@ -129,6 +132,9 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
showRenMaiButton() {
|
|
|
+ if (this.IsSunPublishContent) {
|
|
|
+ return ''
|
|
|
+ }
|
|
|
return articleTypeArr.includes(this.content?._ob?.topType)
|
|
|
},
|
|
|
collectionTags() {
|