|
@@ -699,7 +699,7 @@ onMounted(async ()=>{
|
|
|
<template v-if="[2,6].includes(activeItem.State)">
|
|
|
<div class="item" v-if="checkAuthBtn(reportManageBtn.reportManage_cancelPublish)&&activeItem.State===2&&activeItem.HasAuth"
|
|
|
@click="handleReportPublishCancle(activeItem)">撤销</div> <!-- 实际上是取消发布 -->
|
|
|
- <div class="item" v-if="checkAuthBtn(reportManageBtn.reportManage_cancelPublish)&&activeItem.State===6"
|
|
|
+ <div class="item" v-if="checkAuthBtn(reportManageBtn.reportManage_cancelPublish)&&activeItem.State===6&&activeItem.HasAuth"
|
|
|
@click="handleReportCancel(activeItem)">撤销</div>
|
|
|
<div class="item" v-if="checkAuthBtn(reportManageBtn.reportManage_exportPdf) && activeItem.DetailPdfUrl"
|
|
|
@click="downloadPdfImg(activeItem,1)">下载pdf</div>
|
|
@@ -714,8 +714,8 @@ onMounted(async ()=>{
|
|
|
</template>
|
|
|
|
|
|
|
|
|
- <div class="item" v-if="checkAuthBtn(reportManageBtn.reportManage_audioUpload)"
|
|
|
- @click="handleShowUploadAudio(activeItem)&&activeItem.HasAuth">音频上传</div>
|
|
|
+ <div class="item" v-if="checkAuthBtn(reportManageBtn.reportManage_audioUpload)&&activeItem.HasAuth"
|
|
|
+ @click="handleShowUploadAudio(activeItem)">音频上传</div>
|
|
|
<div class="item" v-if="checkAuthBtn(reportManageBtn.reportManage_audioDownload)&&(activeItem.VideoUrl || activeItem.ChapterVideoList.length>0)"
|
|
|
@click="handleDownloadAudio(activeItem)">音频下载</div>
|
|
|
|