mirror of
https://github.com/dataease/dataease.git
synced 2026-05-19 18:38:16 +08:00
@@ -896,34 +896,6 @@ onMounted(() => {
|
||||
<template #append>%</template>
|
||||
</el-input>
|
||||
</el-form-item>
|
||||
<!-- <el-form-item
|
||||
v-if="showProperty('showSummary')"
|
||||
class="form-item"
|
||||
:class="'form-item-' + themes"
|
||||
>
|
||||
<el-checkbox
|
||||
size="small"
|
||||
:effect="themes"
|
||||
v-model="state.basicStyleForm.showSummary"
|
||||
@change="changeBasicStyle('showSummary')"
|
||||
>
|
||||
{{ t('chart.table_show_summary') }}
|
||||
</el-checkbox>
|
||||
</el-form-item>
|
||||
<el-form-item
|
||||
v-if="showProperty('summaryLabel') && state.basicStyleForm.showSummary"
|
||||
:label="t('chart.table_summary_label')"
|
||||
:class="'form-item-' + themes"
|
||||
class="form-item"
|
||||
>
|
||||
<el-input
|
||||
v-model="state.basicStyleForm.summaryLabel"
|
||||
type="text"
|
||||
:effect="themes"
|
||||
:max-length="10"
|
||||
@blur="changeBasicStyle('summaryLabel')"
|
||||
/>
|
||||
</el-form-item>-->
|
||||
<el-form-item v-if="showProperty('autoWrap')" class="form-item" :class="'form-item-' + themes">
|
||||
<el-checkbox
|
||||
size="small"
|
||||
|
||||
@@ -58,7 +58,9 @@ function getAxisList() {
|
||||
}
|
||||
|
||||
const computedAxis = computed(() => {
|
||||
return getAxisList()
|
||||
const l = getAxisList()
|
||||
console.log(l)
|
||||
return l
|
||||
})
|
||||
const summaryTypes = [
|
||||
{ key: 'sum', name: t('chart.sum') },
|
||||
@@ -151,7 +153,7 @@ onMounted(() => {
|
||||
v-for="c in computedAxis"
|
||||
:key="c.dataeaseName"
|
||||
:value="c.dataeaseName"
|
||||
:label="c.chartShowName ?? c.description"
|
||||
:label="c.chartShowName ?? c.name"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
||||
Reference in New Issue
Block a user