|
@@ -1,11 +1,11 @@
|
|
|
<template>
|
|
|
<!-- 审批管理列表页 -->
|
|
|
<div class="approve-list-wrap approve-page-wrap" v-if="isETAApprove || IsBIApprove">
|
|
|
- <!-- <div class="head-tab">
|
|
|
+ <div class="head-tab">
|
|
|
<el-radio-group v-model="activeMainTab" style="margin-bottom: 10px;" @input="handleMainClick">
|
|
|
<el-radio-button v-for="item in mainTabs" :key="item.name" :label="item.name">{{ item.label }}</el-radio-button>
|
|
|
</el-radio-group>
|
|
|
- </div> -->
|
|
|
+ </div>
|
|
|
<div class="head-tab">
|
|
|
<el-tabs v-model="activeTab" @tab-click="handleClick">
|
|
|
<el-tab-pane :label="$t('AprrovalPage.be_processed_tab')" name="pending"></el-tab-pane>
|
|
@@ -15,10 +15,12 @@
|
|
|
</div>
|
|
|
<div class="approve-list">
|
|
|
<div class="select-box">
|
|
|
- <el-cascader v-model="classify"
|
|
|
- :placeholder="activeMainTab == 'report' ? $t('AprrovalPage.associated_report_ipt') : $t('AprrovalPage.select_associated_Kanban_tip')" clearable
|
|
|
- :options="activeMainTab == 'report' ? classifyTree : biClassifyTree"
|
|
|
- :props="activeMainTab == 'report' ? {value:'ClassifyId',label:'ClassifyName',children:'Children'} : {value:'BiDashboardClassifyId',label:'BiDashboardClassifyName',children:'Children'}"
|
|
|
+ <el-cascader
|
|
|
+ v-if="['bi','standpoint'].includes(activeMainTab)"
|
|
|
+ v-model="classify"
|
|
|
+ :placeholder="activeMainTab == 'bi' ? $t('AprrovalPage.select_associated_Kanban_tip') : '请选择关联分类'" clearable
|
|
|
+ :options="activeMainTab == 'bi' ? biClassifyTree : standpointTree"
|
|
|
+ :props="activeMainTab == 'bi' ? {value:'BiDashboardClassifyId',label:'BiDashboardClassifyName',children:'Children'} : {value:'ClassifyId',label:'ClassifyName',children:'Child'}"
|
|
|
@change="handleCurrentChange(1)">
|
|
|
</el-cascader>
|
|
|
<div class="select-time-box">
|
|
@@ -56,7 +58,7 @@
|
|
|
</el-select>
|
|
|
|
|
|
<el-input v-model="keyword" prefix-icon="el-icon-search" clearable @input="handleCurrentChange(1)"
|
|
|
- :placeholder="activeMainTab == 'report'?$t('AprrovalPage.report_title_ipt'):$t('AprrovalPage.enter_Kanban_name_tip')" style="width:260px;margin-left: auto;"></el-input>
|
|
|
+ :placeholder="searchPhLabel" style="width:260px;margin-left: auto;"></el-input>
|
|
|
</div>
|
|
|
<div class="list-box">
|
|
|
<el-table
|
|
@@ -85,23 +87,25 @@
|
|
|
<el-table-column :label="$t('Table.column_operations')" align="center">
|
|
|
<template slot-scope="{row}">
|
|
|
<template v-if="activeTab==='pending'">
|
|
|
- <el-button type="text" style="padding:0;" @click="toApproveDetail(row,'approve')"
|
|
|
- v-if="permissionBtn.isShowBtn('approvePermission','reportApprove_approve')">{{$t('AprrovalPage.approve_table')}}</el-button>
|
|
|
+ <el-button type="text" style="padding:0;" @click="toApproveDetail(row,'approve')"
|
|
|
+ v-if="isShowApprove">{{$t('AprrovalPage.approve_table')}}</el-button>
|
|
|
</template>
|
|
|
<template v-if="activeTab==='processed'">
|
|
|
- <el-button type="text" style="padding:0;" @click="toApproveDetail(row,'detail')">{{$t('AprrovalPage.details_table')}}</el-button>
|
|
|
+ <el-button type="text" style="padding:0;" @click="toApproveDetail(row,'detail')"
|
|
|
+ v-if="isShowDetail">{{$t('AprrovalPage.details_table')}}</el-button>
|
|
|
<el-button type="text" style="padding:0" @click="handleShowDetail(row)"
|
|
|
- v-if="row.State===3&&permissionBtn.isShowBtn('approvePermission','reportApprove_rejectreason')">{{$t('AprrovalPage.rejection_table')}}</el-button>
|
|
|
+ v-if="isShowRejectReason(row)">{{$t('AprrovalPage.rejection_table')}}</el-button>
|
|
|
<!-- 下载长图 下载pdf按钮 -->
|
|
|
<el-button type="text" style="padding:0" v-if="row.DetailPdfUrl&&permissionBtn.isShowBtn('approvePermission','reportApprove_download_pdf')" @click="downloadPdfImg(row,1)">{{$t('ReportManage.smart_btn.download_pdf')}}</el-button>
|
|
|
<el-button type="text" style="padding:0" v-if="row.DetailImgUrl&&permissionBtn.isShowBtn('approvePermission','reportApprove_download_img')" @click="downloadPdfImg(row,2)">{{$t('ReportManage.smart_btn.download_long_image')}}</el-button>
|
|
|
</template>
|
|
|
<template v-if="activeTab==='originate'">
|
|
|
- <el-button type="text" style="padding:0;" @click="toApproveDetail(row,'myself')">{{$t('AprrovalPage.details_table')}}</el-button>
|
|
|
+ <el-button type="text" style="padding:0;" @click="toApproveDetail(row,'myself')"
|
|
|
+ v-if="isShowDetail">{{$t('AprrovalPage.details_table')}}</el-button>
|
|
|
<el-button type="text" style="padding:0;" @click="cancelApprove(row)"
|
|
|
- v-if="row.State!==4&&permissionBtn.isShowBtn('approvePermission','reportApprove_repeal')">{{$t('AprrovalPage.cancel_table')}}</el-button>
|
|
|
+ v-if="isShowRepeal(row)">{{$t('AprrovalPage.cancel_table')}}</el-button>
|
|
|
<el-button type="text" style="padding:0" @click="handleShowDetail(row)"
|
|
|
- v-if="row.State===3&&permissionBtn.isShowBtn('approvePermission','reportApprove_rejectreason')">{{$t('AprrovalPage.rejection_table')}}</el-button>
|
|
|
+ v-if="isShowRejectReason(row)">{{$t('AprrovalPage.rejection_table')}}</el-button>
|
|
|
</template>
|
|
|
</template>
|
|
|
|
|
@@ -144,7 +148,9 @@ import {
|
|
|
biapprove_pending_columns,
|
|
|
biapprove_processed_columns,
|
|
|
biapprove_originate_columns,
|
|
|
-
|
|
|
+ standponit_approve_pending_columns,
|
|
|
+ standpoint_approve_processed_columns,
|
|
|
+ standpoint_approve_originate_columns,
|
|
|
} from './config/tableConfig'
|
|
|
const columnsMap = {
|
|
|
'pending_report':approve_pending_columns,
|
|
@@ -153,6 +159,9 @@ const columnsMap = {
|
|
|
'pending_bi':biapprove_pending_columns,
|
|
|
'processed_bi':biapprove_processed_columns,
|
|
|
'originate_bi':biapprove_originate_columns,
|
|
|
+ 'pending_standpoint':standponit_approve_pending_columns,
|
|
|
+ 'processed_standpoint':standpoint_approve_processed_columns,
|
|
|
+ 'originate_standpoint':standpoint_approve_originate_columns,
|
|
|
}
|
|
|
const tabMap = {
|
|
|
'pending':1,
|
|
@@ -187,30 +196,51 @@ export default {
|
|
|
isDetailDialogShow: false,
|
|
|
};
|
|
|
},
|
|
|
- methods: {
|
|
|
- handleReportClassifyId(){
|
|
|
- const ids = {
|
|
|
- ClassifyFirstId:0,
|
|
|
- ClassifySecondId:0,
|
|
|
- ClassifyThirdld:0,
|
|
|
- }
|
|
|
- if(this.classify.length === 2){
|
|
|
- ids.ClassifyFirstId = this.classify[this.classify.length-1]||0;
|
|
|
- ids.ClassifySecondId = 0;
|
|
|
- ids.ClassifyThirdld = 0;
|
|
|
- } else if(this.classify.length === 3){
|
|
|
- ids.ClassifyFirstId = this.classify[this.classify.length-2]||0
|
|
|
- ids.ClassifySecondId = this.classify[this.classify.length-1]||0
|
|
|
- ids.ClassifyThirdld = 0;
|
|
|
- } else { //分类最多只有三级
|
|
|
- ids.ClassifyFirstId = this.classify.length > 1 ? this.classify[this.classify.length-3]||0 : 0;
|
|
|
- ids.ClassifySecondId = this.classify.length > 1 ? this.classify[this.classify.length-2]||0 : 0;
|
|
|
- ids.ClassifyThirdld = this.classify.length > 1 ? this.classify[this.classify.length-1]||0 : 0;
|
|
|
- }
|
|
|
+ computed:{
|
|
|
+ isShowApprove(){
|
|
|
+ const auths = {
|
|
|
+ bi:'reportApprove_approve',
|
|
|
+ standpoint:'standpointApprove_approve',
|
|
|
+ };
|
|
|
+ return Object.keys(auths).includes(this.activeMainTab) ? this.isShowBtn(auths[this.activeMainTab]) : true
|
|
|
+ },
|
|
|
+ isShowDetail(){
|
|
|
+ const auths = {
|
|
|
+ bi:'reportApprove_detail',
|
|
|
+ standpoint:'standpointApprove_detail',
|
|
|
+ };
|
|
|
+ return Object.keys(auths).includes(this.activeMainTab) ? this.isShowBtn(auths[this.activeMainTab]) : true
|
|
|
+ },
|
|
|
|
|
|
- return ids
|
|
|
+ searchPhLabel() {
|
|
|
+ const phLabel = {
|
|
|
+ 'edb': '指标Id/名称',
|
|
|
+ 'chart': '图表名称',
|
|
|
+ 'bi': this.$t('AprrovalPage.enter_Kanban_name_tip'),
|
|
|
+ 'standpoint':'请输入标题'
|
|
|
+ }
|
|
|
+ return phLabel[this.activeMainTab] && phLabel[this.activeMainTab];
|
|
|
+ },
|
|
|
+
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ isShowRepeal(row){
|
|
|
+ const auths = {
|
|
|
+ bi:'reportApprove_repeal',
|
|
|
+ standpoint:'standpointApprove_cancel',
|
|
|
+ };
|
|
|
+ const valid = Object.keys(auths).includes(this.activeMainTab) ? this.isShowBtn(auths[this.activeMainTab]) : true;
|
|
|
+ return ((row.State !==4 && ['bi','standpoint'].includes(this.activeMainTab)) || [2,4].includes(this.activeMainTab)) && valid
|
|
|
+ },
|
|
|
+ isShowRejectReason(row){
|
|
|
+ const auths = {
|
|
|
+ bi:'reportApprove_rejectreason',
|
|
|
+ standpoint:'standpointApprove_rejectReason',
|
|
|
+ };
|
|
|
+ const valid = Object.keys(auths).includes(this.activeMainTab) ? this.isShowBtn(auths[this.activeMainTab]) : true;
|
|
|
+ return row.State===3 && valid;
|
|
|
},
|
|
|
- getTableData(){
|
|
|
+ async getTableData(){
|
|
|
this.tableLoading = true
|
|
|
this.tableData=[]
|
|
|
const baseParams = {
|
|
@@ -219,24 +249,8 @@ export default {
|
|
|
CurrentIndex:this.page,
|
|
|
Keyword:this.keyword,
|
|
|
}
|
|
|
- const selectParams = {
|
|
|
- //关联报告
|
|
|
- ReportType:this.classify[0]||0,
|
|
|
- ClassifyFirstId:this.handleReportClassifyId().ClassifyFirstId||0,
|
|
|
- ClassifySecondId:this.handleReportClassifyId().ClassifySecondId||0,
|
|
|
- ClassifyThirdld:this.handleReportClassifyId().ClassifyThirdld||0,
|
|
|
- //时间
|
|
|
- TimeType:this.timeType,
|
|
|
- StartTime:this.timeDate?this.timeDate[0]||'':'',
|
|
|
- EndTime:this.timeDate?this.timeDate[1]||'':'',
|
|
|
- //排序
|
|
|
- SortRule:this.SortRule,
|
|
|
- SortField:this.SortField,
|
|
|
- //处理状态
|
|
|
- ApproveState:this.ApproveState,
|
|
|
- }
|
|
|
const biApproveParams = {
|
|
|
- ClassifyId:this.classify[0] || 0,
|
|
|
+ ClassifyId:this.classify[this.classify.length - 1] || 0,
|
|
|
TimeType:this.timeType,
|
|
|
StartTime:this.timeDate?this.timeDate[0]||'':'',
|
|
|
EndTime:this.timeDate?this.timeDate[1]||'':'',
|
|
@@ -244,30 +258,20 @@ export default {
|
|
|
SortField:this.SortField,
|
|
|
ApproveState:this.ApproveState,
|
|
|
}
|
|
|
-
|
|
|
- if(this.activeMainTab == 'report'){
|
|
|
- approveInterence.getApproveList({
|
|
|
- ...baseParams,
|
|
|
- ...selectParams
|
|
|
- }).then(res=>{
|
|
|
- this.tableLoading=false
|
|
|
- if(res.Ret!==200) return
|
|
|
- const {List=[],Paging={}} = res.Data||{}
|
|
|
- this.tableData = List||[]
|
|
|
- this.total = Paging.Totals||0
|
|
|
- }).catch(err=>{this.tableLoading=false})
|
|
|
- } else {
|
|
|
- approveInterence.getBiApproveList({
|
|
|
+ let res = null;
|
|
|
+ if(['bi','standpoint'].includes(this.activeMainTab)){
|
|
|
+ let requestApi = this.activeMainTab == 'bi' ? approveInterence.getBiApproveList : approveInterence.getKnowledgeApproveList;
|
|
|
+ res = await requestApi({
|
|
|
...baseParams,
|
|
|
...biApproveParams,
|
|
|
- }).then(res=>{
|
|
|
- this.tableLoading=false
|
|
|
- if(res.Ret!==200) return
|
|
|
- const {List=[],Paging={}} = res.Data||{}
|
|
|
- this.tableData = List||[]
|
|
|
- this.total = Paging.Totals||0
|
|
|
- }).catch(err=>{this.tableLoading=false})
|
|
|
+ })
|
|
|
+
|
|
|
}
|
|
|
+ this.tableLoading=false
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ const {List=[],Paging={}} = res.Data||{}
|
|
|
+ this.tableData = List||[]
|
|
|
+ this.total = Paging.Totals||0
|
|
|
|
|
|
},
|
|
|
handleCurrentChange(page) {
|
|
@@ -291,7 +295,8 @@ export default {
|
|
|
this.classify = '';
|
|
|
this.keyword = '';
|
|
|
this.activeTab = 'pending';
|
|
|
- tabName == 'report' ? this.getClassifyTree() : this.getBIClassifyTree();
|
|
|
+ this.activeMainTab == 'bi' && this.getBIClassifyTree();
|
|
|
+ this.activeMainTab == 'standpoint' && this.getStandpointClassifyTree();
|
|
|
this.handleClick()
|
|
|
},
|
|
|
handleClick() {
|
|
@@ -309,18 +314,26 @@ export default {
|
|
|
this.isDetailDialogShow = true;
|
|
|
},
|
|
|
toApproveDetail(data,type){
|
|
|
+ const ids = {
|
|
|
+ bi:'BiApproveId',
|
|
|
+ standpoint:'KnowledgeResourceApproveId',
|
|
|
+ }
|
|
|
this.$router.push({
|
|
|
path:'/approveDetail',
|
|
|
query:{
|
|
|
mainType:this.activeMainTab,
|
|
|
type,
|
|
|
- approveId:this.activeMainTab == 'report' ? data.ReportApproveId : data.BiApproveId,
|
|
|
+ approveId:Object.keys(ids).includes(this.activeMainTab) ? data[ids[this.activeMainTab]] : data.DataApproveId,
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
cancelApprove(item){
|
|
|
- let req = this.activeMainTab == 'report' ? approveInterence.cancelApprove({ReportApproveId:Number(item.ReportApproveId)})
|
|
|
- : approveInterence.cancelBiApprove({BiApproveId:Number(item.BiApproveId)});
|
|
|
+ const reqs = {
|
|
|
+ bi:{fn:approveInterence.cancelBiApprove,params:{BiApproveId:Number(item.BiApproveId)}},
|
|
|
+ standpoint:{fn:approveInterence.cancelKnowledgeApprove,params:{KnowledgeResourceApproveId:item.KnowledgeResourceApproveId}},
|
|
|
+ }
|
|
|
+ let req = Object.keys(reqs).includes(this.activeMainTab) ? reqs[this.activeMainTab].fn(reqs[this.activeMainTab].params)
|
|
|
+ : approveInterence.cancelPublicApprove({ DataApproveId: item.DataApproveId })
|
|
|
req.then(res=>{
|
|
|
if(res.Ret!==200) return
|
|
|
this.$message.success(this.$t('AprrovalPage.revoke_success') )
|
|
@@ -329,23 +342,6 @@ export default {
|
|
|
},
|
|
|
// 语言切换
|
|
|
getContentMenuOptText(e){
|
|
|
- if(e==='报告标题') return this.$t('AprrovalPage.report_title_lable')
|
|
|
- if(e==='关联报告') return this.$t('AprrovalPage.associated_report_lable')
|
|
|
- if(e==='提交人') return this.$t('AprrovalPage.submitter_lable')
|
|
|
- if(e==='提交时间') return this.$t('AprrovalPage.submission_time_lable')
|
|
|
- if(e==='审批状态') return this.$t('AprrovalPage.approval_status_lable')
|
|
|
- if(e==='处理时间') return this.$t('AprrovalPage.processing_time_lable')
|
|
|
- if(e==='处理结果') return this.$t('AprrovalPage.processing_result_lable')
|
|
|
- if(e==='审批时间') return this.$t('AprrovalPage.approval_time')
|
|
|
- if(e==='BI看板名称') return this.$t('AprrovalPage.kanban_name')
|
|
|
- if(e==='关联分类') return this.$t('AprrovalPage.associative_classification')
|
|
|
- if(e==='关联看板') return this.$t('AprrovalPage.association_kanban')
|
|
|
- if(e==='处理状态') return this.$t('AprrovalPage.processing_state')
|
|
|
- if(e==='已通过') return this.$t('AprrovalPage.approved_option')
|
|
|
- if(e==='已驳回') return this.$t('AprrovalPage.rejected_option')
|
|
|
- if(e==='已撤销') return this.$t('AprrovalPage.revoked_option')
|
|
|
- if(e==='待审批') return this.$t('AprrovalPage.awaiting_approval_option')
|
|
|
- if(e==='已同意') return this.$t('AprrovalPage.agreed_option')
|
|
|
return e
|
|
|
},
|
|
|
downloadPdfImg(row,type){
|
|
@@ -356,19 +352,20 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
afterGetBaseConfig(){ //执行完reportApproveConfig中getBaseConfig之后执行 mounted之后执行
|
|
|
- // if(this.isETAApprove)
|
|
|
- // this.mainTabs.push({
|
|
|
- // label:this.$t('AprrovalPage.research_approval_btn'),
|
|
|
- // name:'report'
|
|
|
- // });
|
|
|
if(this.IsBIApprove)
|
|
|
this.mainTabs.push({
|
|
|
label:this.$t('SystemManage.BaseConfig.bIDashboard_approval'),
|
|
|
name:'bi'
|
|
|
});
|
|
|
+
|
|
|
+ this.mainTabs.push({
|
|
|
+ label:'观点审批',
|
|
|
+ name:'standpoint'
|
|
|
+ });
|
|
|
+
|
|
|
this.activeMainTab = this.mainTabs.length > 0 ? this.mainTabs[0].name : '';
|
|
|
if(!this.mainTabs.length) return;
|
|
|
- const {formType='approve',mainType='report'} = this.$route.query
|
|
|
+ const {formType='approve',mainType='bi'} = this.$route.query
|
|
|
|
|
|
if(mainType) {
|
|
|
let valid = this.mainTabs.find(_ => mainType == _.name);
|
|
@@ -383,12 +380,15 @@ export default {
|
|
|
}
|
|
|
this.activeTab = formTypeMap[formType]||'pending'
|
|
|
this.tableColumns = columnsMap[`${this.activeTab}_${this.activeMainTab}`] || approve_pending_columns;
|
|
|
+
|
|
|
+ this.activeMainTab == 'bi' && this.getBIClassifyTree();
|
|
|
+ this.activeMainTab == 'standpoint' && this.getStandpointClassifyTree();
|
|
|
this.getTableData()
|
|
|
},
|
|
|
- },
|
|
|
- mounted(){
|
|
|
- // this.getClassifyTree();
|
|
|
- this.getBIClassifyTree();
|
|
|
+ isShowBtn(code){
|
|
|
+ const {approvePermission,checkPermissionBtn}=this.permissionBtn;
|
|
|
+ return checkPermissionBtn(approvePermission[code])
|
|
|
+ },
|
|
|
},
|
|
|
components: { RejectDialog }
|
|
|
};
|