|
@@ -121,6 +121,7 @@
|
|
|
import { getAction } from '@/api/manage'
|
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
|
|
import JEllipsis from "@/components/jeecg/JEllipsis";
|
|
|
+ import { colAuthFilter } from "@/utils/authFilter"
|
|
|
|
|
|
export default {
|
|
|
name: "BaseScheduleSetList",
|
|
@@ -204,6 +205,12 @@
|
|
|
},
|
|
|
}
|
|
|
},
|
|
|
+ created() {
|
|
|
+ this.disableMixinCreated=true;
|
|
|
+ this.columns = colAuthFilter(this.columns,'scheduleSet:');
|
|
|
+ this.loadData();
|
|
|
+ this.initDictConfig();
|
|
|
+ },
|
|
|
computed: {
|
|
|
importExcelUrl: function () {
|
|
|
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
|