|
@@ -28,15 +28,15 @@
|
|
<template v-if="column.key === 'showStyle.size'">
|
|
<template v-if="column.key === 'showStyle.size'">
|
|
{{ get(ModuleSizeMap, record.showStyle?.size) }}
|
|
{{ get(ModuleSizeMap, record.showStyle?.size) }}
|
|
</template>
|
|
</template>
|
|
- <template v-if="column.key === 'showStyle.version'">
|
|
|
|
|
|
+ <!-- <template v-if="column.key === 'showStyle.version'">
|
|
{{ get(ModuleVersionMap, record.showStyle?.version) }}
|
|
{{ get(ModuleVersionMap, record.showStyle?.version) }}
|
|
- </template>
|
|
|
|
|
|
+ </template> -->
|
|
<template v-if="column.key === 'showStyle.position'">
|
|
<template v-if="column.key === 'showStyle.position'">
|
|
{{ get(ModulePositionMap, record.showStyle?.position) }}
|
|
{{ get(ModulePositionMap, record.showStyle?.position) }}
|
|
</template>
|
|
</template>
|
|
- <template v-if="column.key === 'showStyle.charttype'">
|
|
|
|
|
|
+ <!-- <template v-if="column.key === 'showStyle.charttype'">
|
|
{{ get(ModuleChartTypeMap, record.showStyle?.charttype) }}
|
|
{{ get(ModuleChartTypeMap, record.showStyle?.charttype) }}
|
|
- </template>
|
|
|
|
|
|
+ </template> -->
|
|
</template>
|
|
</template>
|
|
</NormalTable>
|
|
</NormalTable>
|
|
</div>
|
|
</div>
|
|
@@ -47,7 +47,7 @@
|
|
import { ref } from 'vue';
|
|
import { ref } from 'vue';
|
|
import NormalTable from '../comment/NormalTable.vue';
|
|
import NormalTable from '../comment/NormalTable.vue';
|
|
import { list, deleteById, saveOrUpdate } from './configuration.api';
|
|
import { list, deleteById, saveOrUpdate } from './configuration.api';
|
|
- import { ModuleVersionMap, ModuleChartTypeMap, ModulePositionMap, ModuleSizeMap } from './options';
|
|
|
|
|
|
+ import { ModulePositionMap, ModuleSizeMap } from './options';
|
|
import { searchFormSchema, columns, formSchema } from './configuration.data';
|
|
import { searchFormSchema, columns, formSchema } from './configuration.data';
|
|
import { get } from '../../home/billboard/utils';
|
|
import { get } from '../../home/billboard/utils';
|
|
|
|
|