|
@@ -31,10 +31,12 @@ import { dictListDict } from '@/api/dataDictionary.js'
|
|
|
import { zfireParamList, zfireParamSave, zfireParamDelete } from '@/api/zfireParam.js'
|
|
|
import SelExportColumnList from './sel-export-column-list.vue'
|
|
|
import selectData from './selectData.js'
|
|
|
+import operation_mixin from '@/components/template/operation_mixin.js'
|
|
|
export default {
|
|
|
components: {
|
|
|
SelExportColumnList
|
|
|
},
|
|
|
+ mixins: [operation_mixin],
|
|
|
props: {
|
|
|
ellipsis: {
|
|
|
type: Boolean,
|
|
@@ -145,12 +147,10 @@ export default {
|
|
|
evens: this.exportList
|
|
|
? [
|
|
|
[
|
|
|
- {
|
|
|
- isRole: this.$restrict('export'),
|
|
|
- name: '导出',
|
|
|
+ this.optionsEvensAuth("export", {
|
|
|
click: this.export,
|
|
|
loading: false
|
|
|
- }
|
|
|
+ })
|
|
|
]
|
|
|
]
|
|
|
: [],
|