|
@@ -136,6 +136,7 @@
|
|
|
import InterlockDataReportModal from './modules/InterlockDataReportModal'
|
|
|
import {filterMultiDictText} from '@/components/dict/JDictSelectUtil'
|
|
|
import { downFiles_info } from '@api/api'
|
|
|
+ import { colAuthFilter } from "@/utils/authFilter"
|
|
|
|
|
|
export default {
|
|
|
name: 'InterlockDataReportList',
|
|
@@ -188,6 +189,7 @@
|
|
|
dataIndex: 'action',
|
|
|
align:"center",
|
|
|
fixed:"right",
|
|
|
+ auth: 'history:action',
|
|
|
width:147,
|
|
|
scopedSlots: { customRender: 'action' }
|
|
|
}
|
|
@@ -205,7 +207,12 @@
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
- this.getSuperFieldList();
|
|
|
+ this.disableMixinCreated=true;
|
|
|
+ this.columns = colAuthFilter(this.columns,'history:');
|
|
|
+ this.loadData();
|
|
|
+ this.initDictConfig();
|
|
|
+
|
|
|
+ this.getSuperFieldList();
|
|
|
},
|
|
|
computed: {
|
|
|
importExcelUrl: function(){
|