|
|
@ -73,10 +73,8 @@ const onEdit = (targetKey: number, action: string) => { |
|
|
|
v-if="isUIAllowed('csvImport')" |
|
|
|
v-if="isUIAllowed('csvImport')" |
|
|
|
key="quick-import-csv" |
|
|
|
key="quick-import-csv" |
|
|
|
v-t="['a:actions:import-csv']" |
|
|
|
v-t="['a:actions:import-csv']" |
|
|
|
@click=" |
|
|
|
@click="fileImportDialog = true" |
|
|
|
fileImportDialog = true |
|
|
|
importType="csv" |
|
|
|
importType = 'csv' |
|
|
|
|
|
|
|
" |
|
|
|
|
|
|
|
> |
|
|
|
> |
|
|
|
<span> |
|
|
|
<span> |
|
|
|
<MdiCsvIcon class="text-primary mdi-icons" /> |
|
|
|
<MdiCsvIcon class="text-primary mdi-icons" /> |
|
|
@ -88,10 +86,8 @@ const onEdit = (targetKey: number, action: string) => { |
|
|
|
v-if="isUIAllowed('jsonImport')" |
|
|
|
v-if="isUIAllowed('jsonImport')" |
|
|
|
key="quick-import-json" |
|
|
|
key="quick-import-json" |
|
|
|
v-t="['a:actions:import-json']" |
|
|
|
v-t="['a:actions:import-json']" |
|
|
|
@click=" |
|
|
|
@click="fileImportDialog = true" |
|
|
|
fileImportDialog = true |
|
|
|
importType="json" |
|
|
|
importType = 'json' |
|
|
|
|
|
|
|
" |
|
|
|
|
|
|
|
> |
|
|
|
> |
|
|
|
<span> |
|
|
|
<span> |
|
|
|
<MdiJSONIcon class="text-primary mdi-icons" /> |
|
|
|
<MdiJSONIcon class="text-primary mdi-icons" /> |
|
|
@ -103,10 +99,8 @@ const onEdit = (targetKey: number, action: string) => { |
|
|
|
v-if="isUIAllowed('excelImport')" |
|
|
|
v-if="isUIAllowed('excelImport')" |
|
|
|
key="quick-import-excel" |
|
|
|
key="quick-import-excel" |
|
|
|
v-t="['a:actions:import-excel']" |
|
|
|
v-t="['a:actions:import-excel']" |
|
|
|
@click=" |
|
|
|
@click="fileImportDialog = true" |
|
|
|
fileImportDialog = true |
|
|
|
importType="excel" |
|
|
|
importType = 'excel' |
|
|
|
|
|
|
|
" |
|
|
|
|
|
|
|
> |
|
|
|
> |
|
|
|
<span> |
|
|
|
<span> |
|
|
|
<MdiExcelIcon class="text-primary mdi-icons" /> |
|
|
|
<MdiExcelIcon class="text-primary mdi-icons" /> |
|
|
|