|
@@ -1,11 +1,10 @@
|
|
<script setup name="ReportEdit">
|
|
<script setup name="ReportEdit">
|
|
import {ref,onMounted,onUnmounted} from 'vue'
|
|
import {ref,onMounted,onUnmounted} from 'vue'
|
|
import {useInitFroalaEditor} from '@/hooks/useFroalaEditor'
|
|
import {useInitFroalaEditor} from '@/hooks/useFroalaEditor'
|
|
-import EditReportBaseInfo from './components/EditReportBaseInfo.vue'
|
|
|
|
|
|
+// import EditReportBaseInfo from './components/EditReportBaseInfo.vue'
|
|
import ReportInsertContent from './components/reportInsert/Index.vue'
|
|
import ReportInsertContent from './components/reportInsert/Index.vue'
|
|
import ReportPublishTimeSet from './components/ReportPublishTimeSet.vue'
|
|
import ReportPublishTimeSet from './components/ReportPublishTimeSet.vue'
|
|
import apiReport from '@/api/report'
|
|
import apiReport from '@/api/report'
|
|
-import apiChart from '@/api/chart'
|
|
|
|
import {getSystemInfo} from '@/api/common'
|
|
import {getSystemInfo} from '@/api/common'
|
|
import moment from 'moment'
|
|
import moment from 'moment'
|
|
import { showToast,showDialog } from 'vant'
|
|
import { showToast,showDialog } from 'vant'
|
|
@@ -16,6 +15,7 @@ import {reportManageBtn,useAuthBtn} from '@/hooks/useAuthBtn'
|
|
import {useReportApprove} from '@/hooks/useReportApprove'
|
|
import {useReportApprove} from '@/hooks/useReportApprove'
|
|
import {Base64} from 'js-base64'
|
|
import {Base64} from 'js-base64'
|
|
import AddReportBaseInfoV2 from './components/AddReportBaseInfoV2.vue'
|
|
import AddReportBaseInfoV2 from './components/AddReportBaseInfoV2.vue'
|
|
|
|
+import { useReportHandles } from './hooks/useReport'
|
|
|
|
|
|
const cachedViewsStore=useCachedViewsStore()
|
|
const cachedViewsStore=useCachedViewsStore()
|
|
const publicSettingStore = usePublicSettingStore()
|
|
const publicSettingStore = usePublicSettingStore()
|
|
@@ -27,6 +27,8 @@ const {checkAuthBtn} = useAuthBtn()
|
|
const {lastFocusPosition,initFroalaEditor,imgUploadFlag,frolaEditorContentChange}=useInitFroalaEditor()
|
|
const {lastFocusPosition,initFroalaEditor,imgUploadFlag,frolaEditorContentChange}=useInitFroalaEditor()
|
|
let reportContentEditorIns=null//报告内容编辑器实例
|
|
let reportContentEditorIns=null//报告内容编辑器实例
|
|
|
|
|
|
|
|
+const { handleRefresh,handleSubmitReport } = useReportHandles()
|
|
|
|
+
|
|
let autoSaveTimer=null
|
|
let autoSaveTimer=null
|
|
// 水印
|
|
// 水印
|
|
const waterMarkStr=ref('')
|
|
const waterMarkStr=ref('')
|
|
@@ -46,16 +48,23 @@ onUnmounted(()=>{
|
|
})
|
|
})
|
|
|
|
|
|
// 自动保存报告
|
|
// 自动保存报告
|
|
-async function autoSaveReportContent(){
|
|
|
|
|
|
+async function autoSaveReportContent(type="auto"){
|
|
if(!imgUploadFlag.value)return
|
|
if(!imgUploadFlag.value)return
|
|
//如果富文本中有未上传完成的图片,去除这个dom
|
|
//如果富文本中有未上传完成的图片,去除这个dom
|
|
$('.fr-element').find('img.fr-uploading').length&&$('.fr-element').find('img.fr-uploading').remove()
|
|
$('.fr-element').find('img.fr-uploading').length&&$('.fr-element').find('img.fr-uploading').remove()
|
|
- const res=await apiReport.reportContentSave({
|
|
|
|
- ReportId:Number(route.query.id),
|
|
|
|
- Content:$('.fr-element').html(),
|
|
|
|
- NoChange:frolaEditorContentChange.value?0:1
|
|
|
|
|
|
+ return new Promise(async (resolve,reject)=>{
|
|
|
|
+ const res=await apiReport.reportContentSave({
|
|
|
|
+ ReportId:Number(route.query.id),
|
|
|
|
+ Content:$('.fr-element').html(),
|
|
|
|
+ NoChange:frolaEditorContentChange.value?0:1
|
|
|
|
+ })
|
|
|
|
+ if(res.Ret === 200) {
|
|
|
|
+ resolve(true)
|
|
|
|
+ type==='save' && showToast("保存成功");
|
|
|
|
+ frolaEditorContentChange.value=false
|
|
|
|
+ }
|
|
})
|
|
})
|
|
- frolaEditorContentChange.value=false
|
|
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
// 获取报告详情
|
|
// 获取报告详情
|
|
@@ -71,18 +80,21 @@ async function getReportDetail(){
|
|
{
|
|
{
|
|
id:res.Data.ClassifyIdFirst,
|
|
id:res.Data.ClassifyIdFirst,
|
|
text:res.Data.ClassifyNameFirst,
|
|
text:res.Data.ClassifyNameFirst,
|
|
- HasTeleconference:0
|
|
|
|
},
|
|
},
|
|
{
|
|
{
|
|
id:res.Data.ClassifyIdSecond,
|
|
id:res.Data.ClassifyIdSecond,
|
|
text:res.Data.ClassifyNameSecond,
|
|
text:res.Data.ClassifyNameSecond,
|
|
- HasTeleconference:0
|
|
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ id:res.Data.ClassifyIdThird,
|
|
|
|
+ text:res.Data.ClassifyNameThird,
|
|
}
|
|
}
|
|
]
|
|
]
|
|
reportBaseInfoData.author=res.Data.Author ? res.Data.Author.split(',') : ['FICC团队']
|
|
reportBaseInfoData.author=res.Data.Author ? res.Data.Author.split(',') : ['FICC团队']
|
|
reportBaseInfoData.frequency=[res.Data.Frequency]
|
|
reportBaseInfoData.frequency=[res.Data.Frequency]
|
|
reportBaseInfoData.createtime=moment(res.Data.CreateTime).format('YYYY-MM-DD')
|
|
reportBaseInfoData.createtime=moment(res.Data.CreateTime).format('YYYY-MM-DD')
|
|
reportBaseInfoData.title=res.Data.Title
|
|
reportBaseInfoData.title=res.Data.Title
|
|
|
|
+ reportBaseInfoData.abstract=res.Data.Abstract
|
|
reportBaseInfoData.cooperationType=res.Data.CollaborateType
|
|
reportBaseInfoData.cooperationType=res.Data.CollaborateType
|
|
reportBaseInfoData.cooperationUsers=res.Data.GrandAdminList
|
|
reportBaseInfoData.cooperationUsers=res.Data.GrandAdminList
|
|
? res.Data.GrandAdminList.map(_ => ({
|
|
? res.Data.GrandAdminList.map(_ => ({
|
|
@@ -118,28 +130,13 @@ let reportBaseInfoData={
|
|
isPublcPublish: 1
|
|
isPublcPublish: 1
|
|
}
|
|
}
|
|
async function handleReportBaseInfoChange(e){
|
|
async function handleReportBaseInfoChange(e){
|
|
- reportBaseInfoData=e
|
|
|
|
-
|
|
|
|
- //继承报告 覆盖一次
|
|
|
|
- if(e.addType===2&&e.classifyName.length===2){
|
|
|
|
- const res=await apiReport.reportDetailByClassifyId({
|
|
|
|
- ClassifyIdFirst:e.classifyName[0].id,
|
|
|
|
- ClassifyIdSecond:e.classifyName[1].id
|
|
|
|
- })
|
|
|
|
- if(res.Ret===200){
|
|
|
|
- if(res.Data===null){
|
|
|
|
- showToast('此分类暂无报告')
|
|
|
|
- }else{
|
|
|
|
- reportBaseInfoData.author=res.Data.Author ? res.Data.Author.split(',') : ['FICC团队']
|
|
|
|
- reportBaseInfoData.frequency=[res.Data.Frequency]
|
|
|
|
- reportBaseInfoData.createtime=moment().format('YYYY-MM-DD')
|
|
|
|
- reportBaseInfoData.title=res.Data.Title
|
|
|
|
- reportBaseInfoData.abstract=res.Data.Abstract
|
|
|
|
- reportContentEditorIns.html.set(res.Data.Content);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ reportBaseInfoData={
|
|
|
|
+ ...e,
|
|
|
|
+ classifyName:e.classifys,
|
|
|
|
+ createtime:e.time,
|
|
}
|
|
}
|
|
- const classify = e.classifyName.map(i=>i.id)
|
|
|
|
|
|
+
|
|
|
|
+ const classify = e.classifys.map(i=>i.id)
|
|
checkClassifyNameArr(1,classify)
|
|
checkClassifyNameArr(1,classify)
|
|
showReportBaseInfo.value=false
|
|
showReportBaseInfo.value=false
|
|
}
|
|
}
|
|
@@ -203,49 +200,12 @@ onUnmounted(()=>{
|
|
|
|
|
|
// 刷新所有图表
|
|
// 刷新所有图表
|
|
async function handleRefreshAllChart(){
|
|
async function handleRefreshAllChart(){
|
|
- let code_arr = [];
|
|
|
|
- $('iframe').each((k,i) => {
|
|
|
|
- try {
|
|
|
|
- let href = $(i).attr('src');
|
|
|
|
- code_arr.push(href.slice(href.indexOf('code=') + 5));
|
|
|
|
- } catch (err) {
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- if(!code_arr.length) return showToast('请插入图表');
|
|
|
|
-
|
|
|
|
- if(route.query.id) {
|
|
|
|
- let res = await apiChart.getReportrefreshStatus({
|
|
|
|
- Source: 'report',
|
|
|
|
- ReportId: Number(route.query.id),
|
|
|
|
- ReportChapterId: 0
|
|
|
|
- });
|
|
|
|
-
|
|
|
|
- if(!res.Data.RefreshResult) return showToast('图表正在刷新中,请勿重复操作')
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- const res=await apiChart.refreshChartMultiple({ChartInfoCode:code_arr})
|
|
|
|
- if(res.Ret===200){
|
|
|
|
- $('iframe').each((k,i) => {
|
|
|
|
- $(i).attr('src',$(i).attr('src'))
|
|
|
|
- });
|
|
|
|
- showToast(res.Msg)
|
|
|
|
- }
|
|
|
|
|
|
+ handleRefresh({ id: reportData.value.Id,chapterId:reportData.value.ChapterId })
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
-// 发布报告-fb;保存-cg;预览-yl
|
|
|
|
-const showPublishPop=ref(false)
|
|
|
|
-async function handleReportOpt(type){
|
|
|
|
- if(reportBaseInfoData.classifyName.length===0){
|
|
|
|
- showToast('请选择报告分类')
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- if(!reportBaseInfoData.title){
|
|
|
|
- showToast('请填写报告标题')
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- //如果富文本中有未上传完成的图片,去除这个dom
|
|
|
|
- $('.fr-element').find('img.fr-uploading').length&&$('.fr-element').find('img.fr-uploading').remove()
|
|
|
|
|
|
+/* 预览 */
|
|
|
|
+function handlePreviewReport() {
|
|
const params={
|
|
const params={
|
|
ReportId:Number(route.query.id),
|
|
ReportId:Number(route.query.id),
|
|
AddType: reportBaseInfoData.addType,
|
|
AddType: reportBaseInfoData.addType,
|
|
@@ -262,94 +222,72 @@ async function handleReportOpt(type){
|
|
ReportVersion: 2,
|
|
ReportVersion: 2,
|
|
State:1
|
|
State:1
|
|
}
|
|
}
|
|
- console.log(params);
|
|
|
|
- if(type==='yl'){
|
|
|
|
- sessionStorage.setItem('reportPreData',JSON.stringify(params))
|
|
|
|
- const routerEl=router.resolve({
|
|
|
|
- path:'/report/preview',
|
|
|
|
- query:{
|
|
|
|
- id:-1
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- window.open(routerEl.href,'_blank')
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- cachedViewsStore.removeCaches('ReportList')
|
|
|
|
- if(type==='cg'){
|
|
|
|
- // 存草稿
|
|
|
|
- const res=await apiReport.reportEdit(params)
|
|
|
|
- if(res.Ret===200){
|
|
|
|
- showToast('保存成功')
|
|
|
|
|
|
+ sessionStorage.setItem('reportPreData',JSON.stringify(params))
|
|
|
|
+ const routerEl=router.resolve({
|
|
|
|
+ path:'/report/preview',
|
|
|
|
+ query:{
|
|
|
|
+ id:-1
|
|
}
|
|
}
|
|
- }
|
|
|
|
- if(type==='fb'){
|
|
|
|
- // 发布
|
|
|
|
- // const hasTel=reportBaseInfoData.classifyName[1].HasTeleconference
|
|
|
|
- // //有电话会的不提示推送客群
|
|
|
|
- // if(hasTel==1){
|
|
|
|
- // const res=await apiReport.reportEdit(params)
|
|
|
|
- // if(res.Ret===200){
|
|
|
|
- // reportPublish(res.Data.ReportId)
|
|
|
|
- // }
|
|
|
|
- // }else{
|
|
|
|
- // // 显示发布提示弹窗,提示推送客群
|
|
|
|
- // showPublishPop.value=true
|
|
|
|
- // }
|
|
|
|
- if(isApprove.value||!checkAuthBtn(reportManageBtn.reportManage_sendMsg)){
|
|
|
|
- handleConfirmPublish(1)
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- // 没有客群了发布都有二次提示弹窗
|
|
|
|
- showPublishPop.value=true
|
|
|
|
- }
|
|
|
|
- if(type==='dsfb'){
|
|
|
|
- showDSFBTime.value=true
|
|
|
|
- }
|
|
|
|
- if(type==='submit'){
|
|
|
|
- handleReportSubmit(params)
|
|
|
|
- }
|
|
|
|
|
|
+ })
|
|
|
|
+ window.open(routerEl.href,'_blank')
|
|
|
|
+ return
|
|
}
|
|
}
|
|
|
|
|
|
-// 点击发布提示弹窗中的操作按钮
|
|
|
|
-async function handleConfirmPublish(e){
|
|
|
|
- const params={
|
|
|
|
- ReportId:Number(route.query.id),
|
|
|
|
- AddType: reportBaseInfoData.addType,
|
|
|
|
- ClassifyIdFirst: reportBaseInfoData.classifyName[0].id,
|
|
|
|
- ClassifyNameFirst: reportBaseInfoData.classifyName[0].text,
|
|
|
|
- ClassifyIdSecond: reportBaseInfoData.classifyName[1].id,
|
|
|
|
- ClassifyNameSecond: reportBaseInfoData.classifyName[1].text,
|
|
|
|
- Title: reportBaseInfoData.title,
|
|
|
|
- Abstract: reportBaseInfoData.abstract,
|
|
|
|
- Author:reportBaseInfoData.author.join(','),
|
|
|
|
- Frequency: reportBaseInfoData.frequency[0],
|
|
|
|
- Content: $('.fr-element').html(),
|
|
|
|
- CreateTime: reportBaseInfoData.createtime,
|
|
|
|
- ReportVersion: 2,
|
|
|
|
- State:1
|
|
|
|
|
|
+
|
|
|
|
+//发布 定时 提交
|
|
|
|
+async function handlePublishReport(tp) {
|
|
|
|
+ cachedViewsStore.removeCaches('ReportList')
|
|
|
|
+
|
|
|
|
+ const saveRes = await autoSaveReportContent('auto');
|
|
|
|
+ if(!saveRes) return
|
|
|
|
+
|
|
|
|
+ if(tp==='dsfb'){
|
|
|
|
+ showDSFBTime.value=true
|
|
|
|
+ return
|
|
|
|
+ }else if(tp==='submit'){
|
|
|
|
+ handleSubmitReport({id:Number(route.query.id)})
|
|
|
|
+ return
|
|
}
|
|
}
|
|
- const saveRes=await apiReport.reportEdit(params)
|
|
|
|
- if(e===1){//仅发布
|
|
|
|
- reportPublish(saveRes.Data.ReportId,saveRes.Data.ReportCode)
|
|
|
|
- }else if(e===2){
|
|
|
|
- if(reportData.value.MsgIsSend===1) return
|
|
|
|
- const pubRes=await apiReport.reportPublish({ReportIds:saveRes.Data.ReportId.toString(),ReportUrl:generatePdfLinks(saveRes.Data.ReportCode)})
|
|
|
|
- if(pubRes.Ret!==200) return
|
|
|
|
- const msgRes=await apiReport.reportMessageSend({ReportId:saveRes.Data.ReportId})
|
|
|
|
- if(msgRes.Ret!==200) return
|
|
|
|
- router.back()
|
|
|
|
|
|
+
|
|
|
|
+ let sendMsg = reportData.value.MsgIsSend;
|
|
|
|
+ if(sendMsg===1){
|
|
|
|
+ reportPublish({sendMsg: false})
|
|
|
|
+ }else {
|
|
|
|
+ const isPost = checkAuthBtn(reportManageBtn.reportManage_sendMsg)
|
|
|
|
+
|
|
|
|
+ showDialog({
|
|
|
|
+ title: '发布提示',
|
|
|
|
+ showCancelButton: true,
|
|
|
|
+ message: isPost?'发布后,是否推送模板消息?':'是否立即发布报告?',
|
|
|
|
+ confirmButtonText: isPost?'推送':'发布',
|
|
|
|
+ cancelButtonText: isPost?'不推送':'取消',
|
|
|
|
+ }).then(() => {
|
|
|
|
+ reportPublish({sendMsg: isPost?true:false})
|
|
|
|
+ })
|
|
|
|
+ .catch(() => {
|
|
|
|
+ if(isPost) reportPublish({sendMsg: false});
|
|
|
|
+ });
|
|
|
|
+
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-function generatePdfLinks(Code){
|
|
|
|
- return `${publicSettingStore.publicSetting.ReportViewUrl}/reportshare_pdf?code=${Code}&flag=${waterMarkStr.value}`
|
|
|
|
|
|
+
|
|
|
|
+function generatePdfLinks(){
|
|
|
|
+ let code = reportData.value.ReportCode
|
|
|
|
+
|
|
|
|
+ return `${publicSettingStore.publicSetting.ReportViewUrl}/reportshare_pdf?code=${code}&flag=${waterMarkStr.value}`
|
|
}
|
|
}
|
|
|
|
|
|
-async function reportPublish(id,code){
|
|
|
|
- const res=await apiReport.reportPublish({ReportIds:id.toString(),ReportUrl:generatePdfLinks(code)})
|
|
|
|
|
|
+async function reportPublish({sendMsg}){
|
|
|
|
+ const res=await apiReport.reportPublish({ReportIds:String(route.query.id),ReportUrl:generatePdfLinks()})
|
|
if(res.Ret===200){
|
|
if(res.Ret===200){
|
|
|
|
+ sendMsg && apiReport.reportMessageSend({ReportId: Number(route.query.id)})
|
|
|
|
+
|
|
|
|
+ showToast('发布成功')
|
|
console.log('back');
|
|
console.log('back');
|
|
- router.back()
|
|
|
|
|
|
+ setTimeout(() => {
|
|
|
|
+ router.back()
|
|
|
|
+ },1000)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -362,7 +300,7 @@ function onConfirmDSFBTime(time){
|
|
ReportId:reportData.value.Id,
|
|
ReportId:reportData.value.Id,
|
|
PrePublishTime:time,
|
|
PrePublishTime:time,
|
|
PreMsgSend:0,
|
|
PreMsgSend:0,
|
|
- ReportUrl:generatePdfLinks(reportData.value.ReportCode)
|
|
|
|
|
|
+ ReportUrl:generatePdfLinks()
|
|
}).then(res=>{
|
|
}).then(res=>{
|
|
if(res.Ret===200){
|
|
if(res.Ret===200){
|
|
showToast('定时发布成功!')
|
|
showToast('定时发布成功!')
|
|
@@ -386,7 +324,7 @@ function onConfirmDSFBTime(time){
|
|
ReportId:reportData.value.Id,
|
|
ReportId:reportData.value.Id,
|
|
PrePublishTime:time,
|
|
PrePublishTime:time,
|
|
PreMsgSend:0,
|
|
PreMsgSend:0,
|
|
- ReportUrl:generatePdfLinks(reportData.value.ReportCode)
|
|
|
|
|
|
+ ReportUrl:generatePdfLinks()
|
|
}).then(res=>{
|
|
}).then(res=>{
|
|
if(res.Ret===200){
|
|
if(res.Ret===200){
|
|
showToast('定时发布成功!')
|
|
showToast('定时发布成功!')
|
|
@@ -402,7 +340,7 @@ function onConfirmDSFBTime(time){
|
|
ReportId:reportData.value.Id,
|
|
ReportId:reportData.value.Id,
|
|
PrePublishTime:time,
|
|
PrePublishTime:time,
|
|
PreMsgSend:1,
|
|
PreMsgSend:1,
|
|
- ReportUrl:generatePdfLinks(reportData.value.ReportCode)
|
|
|
|
|
|
+ ReportUrl:generatePdfLinks()
|
|
}).then(res=>{
|
|
}).then(res=>{
|
|
if(res.Ret===200){
|
|
if(res.Ret===200){
|
|
showToast('定时发布成功!')
|
|
showToast('定时发布成功!')
|
|
@@ -418,7 +356,7 @@ function onConfirmDSFBTime(time){
|
|
ReportId:reportData.value.Id,
|
|
ReportId:reportData.value.Id,
|
|
PrePublishTime:time,
|
|
PrePublishTime:time,
|
|
PreMsgSend:0,
|
|
PreMsgSend:0,
|
|
- ReportUrl:generatePdfLinks(reportData.value.ReportCode)
|
|
|
|
|
|
+ ReportUrl:generatePdfLinks()
|
|
}).then(res=>{
|
|
}).then(res=>{
|
|
if(res.Ret===200){
|
|
if(res.Ret===200){
|
|
showToast('定时发布成功!')
|
|
showToast('定时发布成功!')
|
|
@@ -430,25 +368,6 @@ function onConfirmDSFBTime(time){
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
-//提交报告
|
|
|
|
-async function handleReportSubmit(params){
|
|
|
|
- const res = await apiReport.reportEdit(params)
|
|
|
|
- if(res.Ret!==200) return
|
|
|
|
- showDialog({
|
|
|
|
- title: '提示',
|
|
|
|
- message: '是否确认提交该报告进入审批流程?',
|
|
|
|
- showCancelButton:true
|
|
|
|
- }).then(()=>{
|
|
|
|
- apiReport.reportCnSubmit({
|
|
|
|
- ReportId:Number(route.query.id)
|
|
|
|
- }).then(res=>{
|
|
|
|
- if(res.Ret!==200) return
|
|
|
|
- showToast('提交成功')
|
|
|
|
- router.back()
|
|
|
|
- })
|
|
|
|
- }).catch(()=>{})
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
const getSystemInfoFun=()=>{
|
|
const getSystemInfoFun=()=>{
|
|
getSystemInfo().then(res=>{
|
|
getSystemInfo().then(res=>{
|
|
if(res.Ret===200){
|
|
if(res.Ret===200){
|
|
@@ -482,26 +401,26 @@ const getSystemInfoFun=()=>{
|
|
<img src="@/assets/imgs/report/icon_refresh.png" alt="">
|
|
<img src="@/assets/imgs/report/icon_refresh.png" alt="">
|
|
<span>刷新</span>
|
|
<span>刷新</span>
|
|
</div>
|
|
</div>
|
|
- <div class="item" @click="handleReportOpt('yl')" v-permission="reportManageBtn.reportManage_reportView">
|
|
|
|
|
|
+ <div class="item" @click="handlePreviewReport" v-permission="reportManageBtn.reportManage_reportView">
|
|
<img src="@/assets/imgs/report/icon_preview.png" alt="">
|
|
<img src="@/assets/imgs/report/icon_preview.png" alt="">
|
|
<span>预览</span>
|
|
<span>预览</span>
|
|
</div>
|
|
</div>
|
|
- <div class="item" @click="handleReportOpt('cg')">
|
|
|
|
|
|
+ <div class="item" @click="autoSaveReportContent('save')">
|
|
<img src="@/assets/imgs/report/icon_save2.png" alt="">
|
|
<img src="@/assets/imgs/report/icon_save2.png" alt="">
|
|
<span>保存</span>
|
|
<span>保存</span>
|
|
</div>
|
|
</div>
|
|
<template v-if="!isApprove||!hasApproveFlow">
|
|
<template v-if="!isApprove||!hasApproveFlow">
|
|
- <div class="item" @click="handleReportOpt('dsfb')" v-permission="reportManageBtn.reportManage_publish">
|
|
|
|
|
|
+ <div class="item" @click="handlePublishReport('dsfb')" v-permission="reportManageBtn.reportManage_publish">
|
|
<img src="@/assets/imgs/report/icon_time.png" alt="">
|
|
<img src="@/assets/imgs/report/icon_time.png" alt="">
|
|
<span>定时发布</span>
|
|
<span>定时发布</span>
|
|
</div>
|
|
</div>
|
|
- <div class="item" @click="handleReportOpt('fb')" v-permission="reportManageBtn.reportManage_publish">
|
|
|
|
|
|
+ <div class="item" @click="handlePublishReport('fb')" v-permission="reportManageBtn.reportManage_publish">
|
|
<img src="@/assets/imgs/report/icon_publish3.png" alt="">
|
|
<img src="@/assets/imgs/report/icon_publish3.png" alt="">
|
|
<span>发布</span>
|
|
<span>发布</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<template v-if="isApprove&&hasApproveFlow">
|
|
<template v-if="isApprove&&hasApproveFlow">
|
|
- <div class="item" @click="handleReportOpt('submit')" v-permission="reportManageBtn.reportManage_publish">
|
|
|
|
|
|
+ <div class="item" @click="handlePublishReport('submit')" v-permission="reportManageBtn.reportManage_publish">
|
|
<img src="@/assets/imgs/report/icon_publish3.png" alt="">
|
|
<img src="@/assets/imgs/report/icon_publish3.png" alt="">
|
|
<span>提交</span>
|
|
<span>提交</span>
|
|
</div>
|
|
</div>
|
|
@@ -521,7 +440,6 @@ const getSystemInfoFun=()=>{
|
|
position="bottom"
|
|
position="bottom"
|
|
:style="{ height: '100%' }"
|
|
:style="{ height: '100%' }"
|
|
>
|
|
>
|
|
- <!-- <EditReportBaseInfo v-if="showReportBaseInfo" :defaultData="reportBaseInfoData" @close="showReportBaseInfo=false" @confirm="handleReportBaseInfoChange"/> -->
|
|
|
|
<AddReportBaseInfoV2
|
|
<AddReportBaseInfoV2
|
|
@close="showReportBaseInfo=false"
|
|
@close="showReportBaseInfo=false"
|
|
:id="Number(route.query.id)"
|
|
:id="Number(route.query.id)"
|
|
@@ -539,20 +457,6 @@ const getSystemInfoFun=()=>{
|
|
<report-insert-content v-if="showReportInsertPop" @insert="handleInsert"/>
|
|
<report-insert-content v-if="showReportInsertPop" @insert="handleInsert"/>
|
|
</van-popup>
|
|
</van-popup>
|
|
|
|
|
|
- <!-- 发布提示 -->
|
|
|
|
- <van-popup
|
|
|
|
- v-model:show="showPublishPop"
|
|
|
|
- >
|
|
|
|
- <div class="publish-report-pop-box">
|
|
|
|
- <div class="title">发布提示</div>
|
|
|
|
- <p class="tips">{{reportData.PrePublishTime?'该报告已设置定时发布,是否立即发布报告并推送模板消息?':'是否立即发布报告,并推送模板消息?'}}</p>
|
|
|
|
- <div class="btns">
|
|
|
|
- <div :class="['btn blue',reportData.MsgIsSend===1?'disabled':'']" @click="handleConfirmPublish(2)">发布&推送</div>
|
|
|
|
- <div class="btn" @click="handleConfirmPublish(1)">仅发布</div>
|
|
|
|
- <div class="btn" @click="showPublishPop=false">取消</div>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- </van-popup>
|
|
|
|
|
|
|
|
<!-- 定时发布选择时间 -->
|
|
<!-- 定时发布选择时间 -->
|
|
<ReportPublishTimeSet v-model="showDSFBTime" :prePublishTime="reportData?.PrePublishTime" @confirm="onConfirmDSFBTime" />
|
|
<ReportPublishTimeSet v-model="showDSFBTime" :prePublishTime="reportData?.PrePublishTime" @confirm="onConfirmDSFBTime" />
|