|
@@ -6,7 +6,7 @@
|
|
|
<span class="text">
|
|
|
转档后的文件支持在云端保留24小时,<span v-if="userInfo?.subscriberType === 1">会员尊享5G容量,</span>请在24小时内下载文件至本地永久保存
|
|
|
</span>
|
|
|
- <span v-if="userInfo.memberInfo.subscriberType === 1" class="vip tip">
|
|
|
+ <span v-if="userInfo?.subscriberType === 1" class="vip tip">
|
|
|
<img src="http://cn-file.17pdf.com/website/common/ic_info.svg" alt="">
|
|
|
<div class="tip-text">
|
|
|
若已有文件大小超出5G,将按转档时间计算(从最近一次转档往过去推算),即保留最近的5G容量文件,超出部分文件将不再保留
|
|
@@ -36,7 +36,7 @@ class="mt-20px text-[#4D4D4D] text-16px font-600 inline-flex items-center leadin
|
|
|
<a class="text-[#ff4f4f] no-underline leading-normal" @click="handlerBuy('ticket')">充值</a>
|
|
|
</span>
|
|
|
<div class="need-volume float-right right-48px text-16px text-[#666] leading-48px mr-20px">
|
|
|
- 所需券:<span class="text-[#0dd299] text-16px" :class="{'text-red-500': requiredCoupon > userInfo.memberInfo.points}">{{ requiredCoupon }}券</span> / 剩余券:<span class="text-[#0dd299] text-16px">{{ userInfo.memberInfo.points }}券</span>
|
|
|
+ 所需券:<span class="text-[#0dd299] text-16px" :class="{'text-red-500': requiredCoupon > userInfo?.points}">{{ requiredCoupon }}券</span> / 剩余券:<span class="text-[#0dd299] text-16px">{{ userInfo?.points }}券</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="transfer-panel">
|
|
@@ -70,7 +70,7 @@ class="mt-20px text-[#4D4D4D] text-16px font-600 inline-flex items-center leadin
|
|
|
<div class="explorer-caption max-w-260px truncate block text-[#777]" title="test.pdf">{{ item.name }}</div>
|
|
|
</td>
|
|
|
<td class="file-details-cell text-[#999]">{{ getfilesize(item.size) }}</td>
|
|
|
- <td class="file-details-cell points">{{ userInfo.memberInfo.flag === 1 ? 0 : item.price }}</td>
|
|
|
+ <td class="file-details-cell points">{{ userInfo.flag === 1 ? 0 : item.price }}</td>
|
|
|
<td class="file-details-cell select w-106px">
|
|
|
<select v-if="item.status !== 6" v-model="item.output" class="transfer-select appearance-none" @change="changeOutput(item, index)">
|
|
|
<option value="png">PNG</option>
|
|
@@ -420,7 +420,7 @@ export default {
|
|
|
// 转档第一步,根据文件列表创建任务和插入文件信息
|
|
|
createFileMission () {
|
|
|
// if (this.fileList.length === 0) return
|
|
|
- const points = this.userInfo.memberInfo.points
|
|
|
+ const points = this.userInfo.points
|
|
|
if (this.requiredCoupon > points) {
|
|
|
alert('券数不足,请充值')
|
|
|
return
|