|
@@ -455,19 +455,19 @@ export default class extends Vue {
|
|
|
get guideText () {
|
|
|
// P620需求:1、未购买预览时,引流文案
|
|
|
// 或者,购买豆丁文件加载时错误后,最多预览5页,最后的引流文案
|
|
|
- let btnText = '下载文档阅读全文'
|
|
|
+ let btnText = '下载文档,阅读全文'
|
|
|
if (this.isvipFree && this.buyed === 0 && this.isviper) { // 会员免费 未下载 会员
|
|
|
- btnText = '下载文档阅读全文'
|
|
|
+ btnText = '下载文档,阅读全文'
|
|
|
} else if ((this.power.freeDownload === 2 || this.power.freeDownload === 0) && this.isvipFree && this.buyed === 0 && !this.isviper) {
|
|
|
btnText = '使用免费下载特权阅读全文'
|
|
|
} else if (this.isvipFree && this.buyed === 0 && !this.isviper && this.power.freeDownload === 1) { // 会员免费 未下载 不是会员 使用过免费下载次数
|
|
|
- btnText = '开通文库会员免费阅读全文'
|
|
|
+ btnText = '开通文库会员,免费阅读全文'
|
|
|
} else if (this.boutique && this.buyed === 0 && this.isviper) {
|
|
|
- btnText = '下载文档阅读全文'
|
|
|
+ btnText = '下载文档,阅读全文'
|
|
|
} else if (this.boutique && this.buyed === 0 && !this.isviper) {
|
|
|
- btnText = `开通文库会员${this.detailData.docMemberDiscount}折下载文档阅读全文`
|
|
|
+ btnText = `开通文库会员,享${this.detailData.docMemberDiscount}折优惠阅读全文`
|
|
|
} else if (this.buyed === 1 && this.showfileType !== 'pdf') {
|
|
|
- btnText = '下载文档阅读全文'
|
|
|
+ btnText = '下载文档,阅读全文'
|
|
|
} if (this.buyed === 1 && this.showfileType === 'pdf') {
|
|
|
btnText = ''
|
|
|
}
|