You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

466 lines
14 KiB
Vue

<template>
<span>
<el-tag
v-if="!hasDataPermission('manage', param.privileges)"
size="small"
class="item-axis"
:type="item.groupType === 'q' ? 'success' : ''"
>
<span style="float: left">
<svg-icon
v-if="item.deType === 0"
icon-class="field_text"
class="field-icon-text"
/>
<svg-icon
v-if="item.deType === 1"
icon-class="field_time"
class="field-icon-time"
/>
<svg-icon
v-if="item.deType === 2 || item.deType === 3"
icon-class="field_value"
class="field-icon-value"
/>
<svg-icon
v-if="item.deType === 5"
icon-class="field_location"
class="field-icon-location"
/>
<svg-icon
v-if="chart.type === 'chart-mix' && item.chartType === 'bar'"
icon-class="bar"
class-name="field-icon-sort"
/>
<svg-icon
v-if="chart.type === 'chart-mix' && item.chartType === 'line'"
icon-class="line"
class-name="field-icon-sort"
/>
<svg-icon
v-if="chart.type === 'chart-mix' && item.chartType === 'scatter'"
icon-class="scatter"
class-name="field-icon-sort"
/>
<svg-icon
v-if="item.sort === 'asc'"
icon-class="sort-asc"
class-name="field-icon-sort"
/>
<svg-icon
v-if="item.sort === 'desc'"
icon-class="sort-desc"
class-name="field-icon-sort"
/>
</span>
<span class="item-span-style" :title="item.name">{{ item.name }}</span>
<span
v-if="chart.type !== 'table-info' && item.summary"
class="summary-span"
>{{ $t('chart.' + item.summary) }}</span>
</el-tag>
<el-dropdown v-else trigger="click" size="mini" @command="clickItem">
<span class="el-dropdown-link">
<el-tag
size="small"
class="item-axis"
:type="item.groupType === 'q' ? 'success' : ''"
>
<span style="float: left">
<svg-icon
v-if="item.deType === 0"
icon-class="field_text"
class="field-icon-text"
/>
<svg-icon
v-if="item.deType === 1"
icon-class="field_time"
class="field-icon-time"
/>
<svg-icon
v-if="item.deType === 2 || item.deType === 3"
icon-class="field_value"
class="field-icon-value"
/>
<svg-icon
v-if="item.deType === 5"
icon-class="field_location"
class="field-icon-location"
/>
<svg-icon
v-if="chart.type === 'chart-mix' && item.chartType === 'bar'"
icon-class="bar"
class-name="field-icon-sort"
/>
<svg-icon
v-if="chart.type === 'chart-mix' && item.chartType === 'line'"
icon-class="line"
class-name="field-icon-sort"
/>
<svg-icon
v-if="chart.type === 'chart-mix' && item.chartType === 'scatter'"
icon-class="scatter"
class-name="field-icon-sort"
/>
<svg-icon
v-if="item.sort === 'asc'"
icon-class="sort-asc"
class-name="field-icon-sort"
/>
<svg-icon
v-if="item.sort === 'desc'"
icon-class="sort-desc"
class-name="field-icon-sort"
/>
</span>
<span class="item-span-style" :title="item.name">{{
item.name
}}</span>
<span
v-if="chart.type !== 'table-info' && item.summary"
class="summary-span"
>{{ $t('chart.' + item.summary) }}</span>
<i
class="el-icon-arrow-down el-icon--right"
style="position: absolute; top: 6px; right: 10px"
/>
</el-tag>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item v-show="chart.type === 'chart-mix'">
<el-dropdown
placement="right-start"
size="mini"
style="width: 100%"
@command="switchChartType"
>
<span class="el-dropdown-link inner-dropdown-menu">
<span>
<i class="el-icon-s-data" />
<span>{{ $t('chart.chart_type') }}</span>
</span>
<i class="el-icon-arrow-right el-icon--right" />
</span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item :command="beforeSwitch('bar')">{{
$t('chart.chart_bar')
}}</el-dropdown-item>
<el-dropdown-item :command="beforeSwitch('line')">{{
$t('chart.chart_line')
}}</el-dropdown-item>
<el-dropdown-item :command="beforeSwitch('scatter')">{{
$t('chart.chart_scatter')
}}</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</el-dropdown-item>
<el-dropdown-item
v-show="chart.type !== 'table-info'"
:divided="chart.type === 'chart-mix'"
>
<el-dropdown
placement="right-start"
size="mini"
style="width: 100%"
@command="summary"
>
<span class="el-dropdown-link inner-dropdown-menu">
<span>
<i class="el-icon-notebook-2" />
<span>{{ $t('chart.summary') }}</span>
<span
class="summary-span-item"
>({{ $t('chart.' + item.summary) }})</span>
</span>
<i class="el-icon-arrow-right el-icon--right" />
</span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item
v-if="
item.id === 'count' ||
item.deType === 0 ||
item.deType === 1
"
:command="beforeSummary('count')"
>{{ $t('chart.count') }}</el-dropdown-item>
<el-dropdown-item
v-if="
item.id !== 'count' &&
item.deType !== 0 &&
item.deType !== 1
"
:command="beforeSummary('sum')"
>{{ $t('chart.sum') }}</el-dropdown-item>
<el-dropdown-item
v-if="
item.id !== 'count' &&
item.deType !== 0 &&
item.deType !== 1
"
:command="beforeSummary('avg')"
>{{ $t('chart.avg') }}</el-dropdown-item>
<el-dropdown-item
v-if="
item.id !== 'count' &&
item.deType !== 0 &&
item.deType !== 1
"
:command="beforeSummary('max')"
>{{ $t('chart.max') }}</el-dropdown-item>
<el-dropdown-item
v-if="
item.id !== 'count' &&
item.deType !== 0 &&
item.deType !== 1
"
:command="beforeSummary('min')"
>{{ $t('chart.min') }}</el-dropdown-item>
<el-dropdown-item
v-if="
item.id !== 'count' &&
item.deType !== 0 &&
item.deType !== 1
"
:command="beforeSummary('stddev_pop')"
>{{ $t('chart.stddev_pop') }}</el-dropdown-item>
<el-dropdown-item
v-if="
item.id !== 'count' &&
item.deType !== 0 &&
item.deType !== 1
"
:command="beforeSummary('var_pop')"
>{{ $t('chart.var_pop') }}</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</el-dropdown-item>
<!-- 快速计算先隐藏-->
<!-- <el-dropdown-item v-if="item.id !== 'count'">-->
<!-- <el-dropdown placement="right-start" size="mini" style="width: 100%" @command="quickCalc">-->
<!-- <span class="el-dropdown-link inner-dropdown-menu">-->
<!-- <span>-->
<!-- <i class="el-icon-s-grid" />-->
<!-- <span>{{ $t('chart.quick_calc') }}</span>-->
<!-- <span class="summary-span-item">(无)</span>-->
<!-- </span>-->
<!-- <i class="el-icon-arrow-right el-icon&#45;&#45;right" />-->
<!-- </span>-->
<!-- <el-dropdown-menu slot="dropdown">-->
<!-- <el-dropdown-item :command="beforeQuickCalc('none')">无</el-dropdown-item>-->
<!-- </el-dropdown-menu>-->
<!-- </el-dropdown>-->
<!-- </el-dropdown-item>-->
<el-dropdown-item :divided="chart.type !== 'table-info'">
<el-dropdown
placement="right-start"
size="mini"
style="width: 100%"
@command="sort"
>
<span class="el-dropdown-link inner-dropdown-menu">
<span>
<i class="el-icon-sort" />
<span>{{ $t('chart.sort') }}</span>
<span
class="summary-span-item"
>({{ $t('chart.' + item.sort) }})</span>
</span>
<i class="el-icon-arrow-right el-icon--right" />
</span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item :command="beforeSort('none')">{{
$t('chart.none')
}}</el-dropdown-item>
<el-dropdown-item :command="beforeSort('asc')">{{
$t('chart.asc')
}}</el-dropdown-item>
<el-dropdown-item :command="beforeSort('desc')">{{
$t('chart.desc')
}}</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</el-dropdown-item>
<el-dropdown-item
icon="el-icon-files"
:command="beforeClickItem('filter')"
>
<span>{{ $t('chart.filter') }}...</span>
</el-dropdown-item>
<el-dropdown-item
icon="el-icon-edit-outline"
divided
:command="beforeClickItem('rename')"
>
<span>{{ $t('chart.show_name_set') }}</span>
</el-dropdown-item>
<el-dropdown-item
icon="el-icon-delete"
divided
:command="beforeClickItem('remove')"
>
<span>{{ $t('chart.delete') }}</span>
</el-dropdown-item>
</el-dropdown-menu>
</span>
</el-dropdown>
</span>
</template>
<script>
export default {
name: 'QuotaExtItem',
props: {
param: {
type: Object,
required: true
},
item: {
type: Object,
required: true
},
index: {
type: Number,
required: true
},
chart: {
type: Object,
required: true
}
},
data() {
return {}
},
mounted() {},
methods: {
clickItem(param) {
if (!param) {
return
}
switch (param.type) {
case 'rename':
this.showRename()
break
case 'remove':
this.removeItem()
break
case 'filter':
this.editFilter()
break
default:
break
}
},
beforeClickItem(type) {
return {
type: type
}
},
summary(param) {
// console.log(param)
this.item.summary = param.type
this.$emit('onQuotaItemChange', this.item)
},
beforeSummary(type) {
return {
type: type
}
},
switchChartType(param) {
// console.log(param)
this.item.chartType = param.type
this.$emit('onQuotaItemChange', this.item)
},
beforeSwitch(type) {
return {
type: type
}
},
quickCalc(param) {},
beforeQuickCalc(type) {
return {
type: type
}
},
sort(param) {
// console.log(param)
this.item.sort = param.type
this.$emit('onQuotaItemChange', this.item)
},
beforeSort(type) {
return {
type: type
}
},
showRename() {
this.item.index = this.index
this.item.renameType = 'quotaExt'
this.$emit('onNameEdit', this.item)
},
removeItem() {
this.item.index = this.index
this.item.removeType = 'quotaExt'
this.$emit('onQuotaItemRemove', this.item)
},
editFilter() {
this.item.index = this.index
this.item.filterType = 'quotaExt'
this.$emit('editItemFilter', this.item)
}
}
}
</script>
<style scoped>
.item-axis {
padding: 1px 6px;
margin: 0 3px 2px 3px;
text-align: left;
height: 24px;
line-height: 22px;
display: flex;
border-radius: 4px;
box-sizing: border-box;
white-space: nowrap;
width: 159px;
}
.item-axis:hover {
background-color: #fdfdfd;
cursor: pointer;
}
span {
font-size: 12px;
}
.summary-span-item {
margin-left: 4px;
color: #878d9f;
}
.summary-span {
margin-left: 4px;
color: #878d9f;
position: absolute;
right: 30px;
}
.inner-dropdown-menu {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
.item-span-style {
display: inline-block;
width: 70px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
</style>