|
@@ -9,8 +9,9 @@ import { showToast,showDialog,Dialog } from 'vant';
|
|
|
import { useRouter } from 'vue-router';
|
|
|
import { useWindowSize } from '@vueuse/core'
|
|
|
import {useCachedViewsStore} from '@/store/modules/cachedViews'
|
|
|
-
|
|
|
+import {enReportManageBtn,useAuthBtn} from '@/hooks/useAuthBtn'
|
|
|
const cachedViewsStore=useCachedViewsStore()
|
|
|
+const {checkAuthBtn} = useAuthBtn()
|
|
|
|
|
|
const { width, height } = useWindowSize()
|
|
|
|
|
@@ -180,6 +181,8 @@ function handleConfirmClassify({firstClassify,secondClassify}){
|
|
|
|
|
|
// 跳转详情
|
|
|
function goDetail(item){
|
|
|
+ //若没有预览权限,则不跳转
|
|
|
+ if(!checkAuthBtn(enReportManageBtn.enReport_reportView)) return
|
|
|
router.push({
|
|
|
path:"/reportEn/detail",
|
|
|
query:{
|
|
@@ -197,6 +200,18 @@ function onLongPressItem(e){
|
|
|
showToast(`${e.Editor}正在编辑中,不可操作!`)
|
|
|
return
|
|
|
}
|
|
|
+ //检验权限,如果该状态下无可操作项,则长按不弹出
|
|
|
+ let checkState = false
|
|
|
+ if(e.State===1){ //编辑、发布、删除
|
|
|
+ checkState = checkAuthBtn(enReportManageBtn.enReport_reportEdit)
|
|
|
+ ||checkAuthBtn(enReportManageBtn.enReport_publish)
|
|
|
+ ||checkAuthBtn(enReportManageBtn.enReport_reportDel)
|
|
|
+ }
|
|
|
+ if(e.State===2){ //群发邮件/群发日志、取消发布
|
|
|
+ checkState = checkAuthBtn(enReportManageBtn.enReport_sendEmail)
|
|
|
+ ||checkAuthBtn(enReportManageBtn.enReport_cancelPublish)
|
|
|
+ }
|
|
|
+ if(!checkState) return
|
|
|
activeItem.value=e
|
|
|
showReportItemOpt.value=true
|
|
|
}
|
|
@@ -447,7 +462,7 @@ function handleGoEmailLog(e){
|
|
|
</div>
|
|
|
</div>
|
|
|
</van-dropdown-item>
|
|
|
- <van-dropdown-item title="群发状态" ref="statusDropMenuIns">
|
|
|
+ <van-dropdown-item title="群发状态" ref="statusDropMenuIns" v-if="checkAuthBtn(enReportManageBtn.enReport_sendEmail)">
|
|
|
<div class="report-status-box">
|
|
|
<ul>
|
|
|
<li
|
|
@@ -527,7 +542,7 @@ function handleGoEmailLog(e){
|
|
|
</div>
|
|
|
|
|
|
<!-- 添加报告按钮 -->
|
|
|
- <div class="add-report-btn" @click="$router.push('/reportEn/add')">
|
|
|
+ <div class="add-report-btn" @click="$router.push('/reportEn/add')" v-if="checkAuthBtn(enReportManageBtn.enReport_reportAdd)">
|
|
|
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<path d="M12.0499 15.9499V27.5H15.9499V15.9499H27.5V12.0499H15.9499V0.5H12.0499V12.0499H0.5V15.9499H12.0499Z" fill="white"/>
|
|
|
</svg>
|
|
@@ -543,14 +558,14 @@ function handleGoEmailLog(e){
|
|
|
<div class="report-item-action-box" v-if="activeItem">
|
|
|
<!-- <div class="title">{{activeItem.Title}}</div> -->
|
|
|
<template v-if="activeItem.State==1">
|
|
|
- <div class="item" @click="handleReportEdit(activeItem)" v-if="activeItem.CanEdit">编辑</div>
|
|
|
- <div class="item" @click="handleReportPublish(activeItem)">发布</div>
|
|
|
- <div class="item" @click="handleReportDel(activeItem)">删除</div>
|
|
|
+ <div class="item" @click="handleReportEdit(activeItem)" v-if="activeItem.CanEdit&&checkAuthBtn(enReportManageBtn.enReport_reportEdit)">编辑</div>
|
|
|
+ <div class="item" @click="handleReportPublish(activeItem)" v-permission="enReportManageBtn.enReport_publish">发布</div>
|
|
|
+ <div class="item" @click="handleReportDel(activeItem)" v-permission="enReportManageBtn.enReport_reportDel">删除</div>
|
|
|
</template>
|
|
|
<template v-if="activeItem.State==2">
|
|
|
- <div class="item" @click="showSendEmail=true;showReportItemOpt=false" v-if="activeItem.EmailState===0&&activeItem.EmailAuth">群发邮件</div>
|
|
|
- <div class="item" @click="handleGoEmailLog(activeItem)" v-if="activeItem.EmailState===1&&activeItem.EmailAuth">群发日志</div>
|
|
|
- <div class="item" @click="handleReportPublishCancle(activeItem)">取消发布</div>
|
|
|
+ <div class="item" @click="showSendEmail=true;showReportItemOpt=false" v-if="activeItem.EmailState===0&&activeItem.EmailAuth&&checkAuthBtn(enReportManageBtn.enReport_sendEmail)">群发邮件</div>
|
|
|
+ <div class="item" @click="handleGoEmailLog(activeItem)" v-if="activeItem.EmailState===1&&activeItem.EmailAuth&&checkAuthBtn(enReportManageBtn.enReport_sendEmail)">群发日志</div>
|
|
|
+ <div class="item" @click="handleReportPublishCancle(activeItem)" v-permission="enReportManageBtn.enReport_cancelPublish">取消发布</div>
|
|
|
</template>
|
|
|
</div>
|
|
|
</van-action-sheet>
|