|
@@ -9,8 +9,27 @@ import { useRouter } from 'vue-router';
|
|
|
import { useWindowSize } from '@vueuse/core'
|
|
|
import {useCachedViewsStore} from '@/store/modules/cachedViews'
|
|
|
import {reportFrequencyOpts} from './utils/config'
|
|
|
+import {reportManageBtn,useAuthBtn} from '@/hooks/useAuthBtn'
|
|
|
const cachedViewsStore=useCachedViewsStore()
|
|
|
|
|
|
+const {checkAuthBtn} = useAuthBtn()
|
|
|
+
|
|
|
+//添加按钮和添加选项
|
|
|
+const isAddReportBtnShow = computed(()=>{
|
|
|
+ return checkAuthBtn(reportManageBtn.reportManage_reportAdd)||checkAuthBtn(reportManageBtn.reportManage_dayWeekReportAdd)
|
|
|
+})
|
|
|
+
|
|
|
+const addReportActions = computed(()=>{
|
|
|
+ let arr = []
|
|
|
+ if(checkAuthBtn(reportManageBtn.reportManage_reportAdd)){
|
|
|
+ arr.push({name:'研报'})
|
|
|
+ }
|
|
|
+ if(checkAuthBtn(reportManageBtn.reportManage_dayWeekReportAdd)){
|
|
|
+ arr.push({name:'晨报/周报'})
|
|
|
+ }
|
|
|
+ return arr.reverse()
|
|
|
+})
|
|
|
+
|
|
|
const { width, height } = useWindowSize()
|
|
|
|
|
|
const router=useRouter()
|
|
@@ -210,6 +229,8 @@ function handleConfirmClassify({firstClassify,secondClassify}){
|
|
|
// 跳转详情
|
|
|
function goDetail(item){
|
|
|
console.log(item);
|
|
|
+ //若没有预览权限,则不跳转
|
|
|
+ if(!checkAuthBtn(reportManageBtn.reportManage_reportView)) return
|
|
|
router.push({
|
|
|
path:"/report/preview",
|
|
|
query:{
|
|
@@ -227,6 +248,18 @@ async function onLongPressItem(e){
|
|
|
showToast(`${e.Editor}正在编辑中,不可操作!`)
|
|
|
return
|
|
|
}
|
|
|
+ //检验权限,如果该状态下无可操作项,则长按不弹出
|
|
|
+ let checkState = false
|
|
|
+ if(e.State===1){ //编辑、发布、删除
|
|
|
+ checkState = checkAuthBtn(reportManageBtn.reportManage_reportEdit)
|
|
|
+ ||checkAuthBtn(reportManageBtn.reportManage_publish)
|
|
|
+ ||checkAuthBtn(reportManageBtn.reportManage_reportDel)
|
|
|
+ }
|
|
|
+ if(e.State===2){ //推送消息、取消发布
|
|
|
+ checkState = checkAuthBtn(reportManageBtn.reportManage_sendMsg)
|
|
|
+ ||checkAuthBtn(reportManageBtn.reportManage_cancelPublish)
|
|
|
+ }
|
|
|
+ if(!checkState) return
|
|
|
activeItem.value=e
|
|
|
showReportItemOpt.value=true
|
|
|
}
|
|
@@ -438,7 +471,7 @@ async function handleReportEdit(e){
|
|
|
</div>
|
|
|
</div>
|
|
|
</van-dropdown-item>
|
|
|
- <van-dropdown-item title="推送状态" ref="statusDropMenuIns">
|
|
|
+ <van-dropdown-item title="推送状态" ref="statusDropMenuIns" v-if="checkAuthBtn(reportManageBtn.reportManage_sendMsg)">
|
|
|
<div class="report-status-box">
|
|
|
<ul>
|
|
|
<li
|
|
@@ -507,7 +540,7 @@ async function handleReportEdit(e){
|
|
|
</div>
|
|
|
<div class="read-count">
|
|
|
<span>PV:{{item.Pv}}</span>
|
|
|
- <span>UV:{{item.Uv}}</span>
|
|
|
+ <span v-permission="reportManageBtn.reportManage_reportList_uv">UV:{{item.Uv}}</span>
|
|
|
</div>
|
|
|
<div class="status">
|
|
|
<span v-if="item.State===1">未发布</span>
|
|
@@ -520,7 +553,7 @@ async function handleReportEdit(e){
|
|
|
</div>
|
|
|
|
|
|
<!-- 添加报告按钮 -->
|
|
|
- <div class="add-report-btn" @click="showAddReportPop=true">
|
|
|
+ <div class="add-report-btn" @click="showAddReportPop=true" v-if="isAddReportBtnShow">
|
|
|
<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>
|
|
@@ -532,14 +565,7 @@ async function handleReportEdit(e){
|
|
|
v-model:show="showAddReportPop"
|
|
|
cancel-text="取消"
|
|
|
close-on-click-action
|
|
|
- :actions="[
|
|
|
- {
|
|
|
- name:'研报'
|
|
|
- },
|
|
|
- {
|
|
|
- name:'晨报/周报'
|
|
|
- }
|
|
|
- ]"
|
|
|
+ :actions="addReportActions"
|
|
|
@select="handleSelectAddReportType"
|
|
|
>
|
|
|
</van-action-sheet>
|
|
@@ -554,13 +580,13 @@ async function handleReportEdit(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)">编辑</div>
|
|
|
- <div class="item" @click="handleReportPublish(activeItem)">发布</div>
|
|
|
- <div class="item" @click="handleReportDel(activeItem)">删除</div>
|
|
|
+ <div class="item" @click="handleReportEdit(activeItem)" v-permission="reportManageBtn.reportManage_reportEdit">编辑</div>
|
|
|
+ <div class="item" @click="handleReportPublish(activeItem)" v-permission="reportManageBtn.reportManage_publish">发布</div>
|
|
|
+ <div class="item" @click="handleReportDel(activeItem)" v-permission="reportManageBtn.reportManage_reportDel">删除</div>
|
|
|
</template>
|
|
|
<template v-if="activeItem.State==2">
|
|
|
- <div class="item" @click="handldReportMsgSend(activeItem)" v-if="activeItem.MsgIsSend==0">推送消息</div>
|
|
|
- <div class="item" @click="handleReportPublishCancle(activeItem)">取消发布</div>
|
|
|
+ <div class="item" @click="handldReportMsgSend(activeItem)" v-if="activeItem.MsgIsSend==0&&checkAuthBtn(reportManageBtn.reportManage_sendMsg)">推送消息</div>
|
|
|
+ <div class="item" @click="handleReportPublishCancle(activeItem)" v-permission="reportManageBtn.reportManage_cancelPublish">取消发布</div>
|
|
|
</template>
|
|
|
</div>
|
|
|
</van-action-sheet>
|