Commit 9e69639a authored by Jenny's avatar Jenny

feat: 横向柱状图点击弹框

parent 9a44378f
<template> <template>
<uni-ec-canvas class="uni-ec-canvas" id="horizontal-bar" ref="horizontalBarCanvas" canvas-id="horizontal-bar-chart" <uni-ec-canvas
:ec="ec"></uni-ec-canvas> class="uni-ec-canvas"
id="horizontal-bar"
ref="horizontalBarCanvas"
canvas-id="horizontal-bar-chart"
:ec="ec"
></uni-ec-canvas>
</template> </template>
<script> <script>
import uniEcCanvas from '@/uni-ec-canvas/uni-ec-canvas' import uniEcCanvas from '@/uni-ec-canvas/uni-ec-canvas'
import echartElementData from '@/mixins/echartElementData.js' import echartElementData from '@/mixins/echartElementData.js'
import { import { DATAZOOM_DEFAULT } from '@/mixins/zoomConfig.js'
DATAZOOM_DEFAULT let chart = null
} from '@/mixins/zoomConfig.js' let lastCount = 0 // 记录datazoom最后一次滑动的数值数量
let chart = null
let lastCount = 0 // 记录datazoom最后一次滑动的数值数量
export default { export default {
name: "HorizontalBar", name: 'HorizontalBar',
mixins: [echartElementData], mixins: [echartElementData],
data() { data() {
return { return {
...@@ -22,7 +25,7 @@ ...@@ -22,7 +25,7 @@
option: {} option: {}
}, },
labelShow: false, // 记录当前设置的label.show的值 labelShow: false, // 记录当前设置的label.show的值
index: 0, // 记录dataZoom切换当前的下标 index: 0 // 记录dataZoom切换当前的下标
} }
}, },
components: { components: {
...@@ -43,10 +46,7 @@ ...@@ -43,10 +46,7 @@
}) })
canvas.setChart(chart) canvas.setChart(chart)
const { const {
dataList: { dataList: { categories, series }
categories,
series,
}
} = this.elementData } = this.elementData
const that = this const that = this
that.ec.option = { that.ec.option = {
...@@ -56,22 +56,27 @@ ...@@ -56,22 +56,27 @@
data: categories data: categories
}, },
tooltip: that.dealTooltip(that.elementInfo.option.tooltip), tooltip: that.dealTooltip(that.elementInfo.option.tooltip),
dataZoom: that.elementInfo.dataZoom && that.elementInfo.dataZoom.show ? [{ dataZoom:
that.elementInfo.dataZoom && that.elementInfo.dataZoom.show
? [
{
...that.elementInfo.dataZoom, ...that.elementInfo.dataZoom,
...DATAZOOM_DEFAULT ...DATAZOOM_DEFAULT
}] : [{ }
]
: [
{
show: false show: false
}], }
],
series: that.dealSeriesData(series) series: that.dealSeriesData(series)
} }
chart.setOption(that.ec.option) chart.setOption(that.ec.option)
chart.on('click', event => { chart.on('click', event => {
const { const { preview, images, popup, data } = that.elementData.dataList
preview,
images
} = that.elementData.dataList
var urls = [] var urls = []
var caches = uni.getStorageSync('cacheImages') var caches = uni.getStorageSync('cacheImages')
images &&
images.forEach(url => { images.forEach(url => {
if (caches.hasOwnProperty(url)) { if (caches.hasOwnProperty(url)) {
urls.push(caches[url]) urls.push(caches[url])
...@@ -85,6 +90,11 @@ ...@@ -85,6 +90,11 @@
current: event.dataIndex, current: event.dataIndex,
urls: urls urls: urls
}) })
} else if (popup) {
uni.$emit('showBarDetail', {
popupShow: true,
popupData: data[event.dataIndex]
})
} else { } else {
that.handleEchartsClick(event) that.handleEchartsClick(event)
} }
...@@ -100,19 +110,22 @@ ...@@ -100,19 +110,22 @@
initChart() { initChart() {
// 等待子组件完全挂载完成---chart初始化完成 // 等待子组件完全挂载完成---chart初始化完成
this.$nextTick().then(() => { this.$nextTick().then(() => {
const { const { categories, series, preview, images } =
categories, this.elementData.dataList
series,
preview,
images
} = this.elementData.dataList
if (this.labelShow) { if (this.labelShow) {
// 处理初始状态时,数值显示的数量是否超过了配置的最大值 // 处理初始状态时,数值显示的数量是否超过了配置的最大值
let count = categories.length let count = categories.length
if (this.elementInfo.dataZoom && this.elementInfo.dataZoom.show) { if (this.elementInfo.dataZoom && this.elementInfo.dataZoom.show) {
count = count * (this.elementInfo.dataZoom.end - this.elementInfo.dataZoom.start) / 100 count =
} (count *
if (this.elementInfo.option.dataset.maxCount != null && count > this.elementInfo.option.dataset.maxCount) { (this.elementInfo.dataZoom.end -
this.elementInfo.dataZoom.start)) /
100
}
if (
this.elementInfo.option.dataset.maxCount != null &&
count > this.elementInfo.option.dataset.maxCount
) {
this.elementInfo.option.dataset.show = false this.elementInfo.option.dataset.show = false
} }
lastCount = count lastCount = count
...@@ -121,20 +134,30 @@ ...@@ -121,20 +134,30 @@
const dealSeries = this.dealSeriesData(series) const dealSeries = this.dealSeriesData(series)
this.$set(this.ec.option, 'yAxis.data', categories) this.$set(this.ec.option, 'yAxis.data', categories)
this.$set(this.ec.option, 'series', dealSeries) this.$set(this.ec.option, 'series', dealSeries)
this.$set(this.ec.option, 'dataZoom', this.elementInfo.dataZoom && this.elementInfo.dataZoom this.$set(
.show ? [{ this.ec.option,
'dataZoom',
this.elementInfo.dataZoom && this.elementInfo.dataZoom.show
? [
{
...this.elementInfo.dataZoom, ...this.elementInfo.dataZoom,
...DATAZOOM_DEFAULT ...DATAZOOM_DEFAULT
}] : [{ }
]
: [
{
show: false show: false
}]) }
]
)
if (chart) { if (chart) {
const option = chart.getOption() const option = chart.getOption()
option.series = dealSeries option.series = dealSeries
// 重新setOption,使得设置的formatter生效 // 重新setOption,使得设置的formatter生效
chart.setOption(option) chart.setOption(option)
if (Number(dealSeries[0].barWidth)) { if (Number(dealSeries[0].barWidth)) {
const height = categories.length * (Number(dealSeries[0].barWidth) + 5) + 25 const height =
categories.length * (Number(dealSeries[0].barWidth) + 5) + 25
uni.$emit('handleUpdateHeight', height) uni.$emit('handleUpdateHeight', height)
chart.resize({ chart.resize({
width: chart.getWidth(), width: chart.getWidth(),
...@@ -158,15 +181,15 @@ ...@@ -158,15 +181,15 @@
if (tooltip.formatter && tooltip.formatter.length) { if (tooltip.formatter && tooltip.formatter.length) {
return { return {
...tooltip, ...tooltip,
formatter: (val) => { formatter: val => {
return this.$u.common.converFunction(tooltip.formatter, val) return this.$u.common.converFunction(tooltip.formatter, val)
}, },
trigger: "axis" trigger: 'axis'
} }
} }
return { return {
...tooltip, ...tooltip,
trigger: "axis" trigger: 'axis'
} }
}, },
/** /**
...@@ -182,8 +205,10 @@ ...@@ -182,8 +205,10 @@
label: { label: {
...that.elementInfo.option.dataset, ...that.elementInfo.option.dataset,
formatter: val => { formatter: val => {
return that.$u.common.converFunction(that.elementInfo.option.dataset return that.$u.common.converFunction(
.formatter, val) that.elementInfo.option.dataset.formatter,
val
)
} }
} }
} }
...@@ -207,7 +232,7 @@ ...@@ -207,7 +232,7 @@
if (!caches.hasOwnProperty(url)) { if (!caches.hasOwnProperty(url)) {
uni.downloadFile({ uni.downloadFile({
url: url, url: url,
success: (res) => { success: res => {
if (res.statusCode === 200) { if (res.statusCode === 200) {
caches[url] = res.tempFilePath caches[url] = res.tempFilePath
uni.setStorageSync('cacheImages', caches) uni.setStorageSync('cacheImages', caches)
...@@ -222,10 +247,19 @@ ...@@ -222,10 +247,19 @@
* event: 包含dataZoom的start和end * event: 包含dataZoom的start和end
*/ */
handleDataZoomEvent(event) { handleDataZoomEvent(event) {
var count = this.elementData.dataList.categories.length * (event.end - event.start) / 100 var count =
(this.elementData.dataList.categories.length *
(event.end - event.start)) /
100
// 给小程序里面赋值datas,如果存在且不为空,代表可以左右滑动切换 // 给小程序里面赋值datas,如果存在且不为空,代表可以左右滑动切换
if (this.elementData.dataList.datas && this.elementData.dataList.datas.length) { if (
count = this.elementData.dataList.datas[this.index].categories.length * (event.end - event.start) / 100 this.elementData.dataList.datas &&
this.elementData.dataList.datas.length
) {
count =
(this.elementData.dataList.datas[this.index].categories.length *
(event.end - event.start)) /
100
this.switchData(event, count) this.switchData(event, count)
} }
// 当前图表初始设置了labelShow=true时,才判断超过最大个数隐藏 // 当前图表初始设置了labelShow=true时,才判断超过最大个数隐藏
...@@ -270,8 +304,13 @@ ...@@ -270,8 +304,13 @@
switchData(event, count) { switchData(event, count) {
const categories = this.elementData.dataList.datas[this.index].categories const categories = this.elementData.dataList.datas[this.index].categories
// 容错在一个百分点内,认为是滑块滚动 // 容错在一个百分点内,认为是滑块滚动
const flag = Math.abs(lastCount - count) <= categories.length / 100 ? true : false const flag =
if (flag && event.end === 100 && this.index != this.elementData.dataList.datas.length - 1) { Math.abs(lastCount - count) <= categories.length / 100 ? true : false
if (
flag &&
event.end === 100 &&
this.index != this.elementData.dataList.datas.length - 1
) {
this.index += 1 this.index += 1
this.setChartDatas(event) this.setChartDatas(event)
} }
...@@ -290,7 +329,5 @@ ...@@ -290,7 +329,5 @@
this.$set(this.ec.option, 'dataZoom.end', event.end) this.$set(this.ec.option, 'dataZoom.end', event.end)
} }
} }
} }
</script> </script>
<style scoped>
</style>
<template>
<u-modal
class="model-data"
v-model="popupShow"
:closeOnClickOverlay="true"
title="明细"
@close="close"
@confirm="close"
>
<view class="slot-content">
<view v-for="(val, key) in popupData" class="data-view">
<view class="data-key ellipsis">{{ key }}</view>
<view class="data-val ellipsis">{{ val }}</view>
</view>
</view>
</u-modal>
</template>
<script>
export default {
name: 'ModelData',
data() {
return {}
},
props: {
popupData: {
type: Object,
default: () => {}
},
popupShow: {
type: Boolean,
default: false
}
},
methods: {
close() {
console.log(1)
uni.$emit('showBarDetail', {
popupShow: false,
popupData: {}
})
}
}
}
</script>
<style scoped>
.model-data {
position: relative;
z-index: 9999999;
}
.slot-content {
margin: 10px;
font-size: 12px;
border: 1px solid #eee;
border-radius: 5px;
}
.data-view {
display: flex;
align-self: center;
border-bottom: 1px solid #eee;
padding: 5px;
}
.data-key {
min-width: 28%;
margin-right: 10px;
border-right: 1px solid #eee;
}
</style>
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
height: `${element.type == 'HorizontalBar' && horizontalBarHeight ? horizontalBarHeight : parseInt(element.height * scale)}px`, height: `${element.type == 'HorizontalBar' && horizontalBarHeight ? horizontalBarHeight : parseInt(element.height * scale)}px`,
left: `${parseInt(element.left * scale)}px`, left: `${parseInt(element.left * scale)}px`,
top: `${parseInt(element.top * scale)}px`, top: `${parseInt(element.top * scale)}px`,
zIndex: `${element.type == 'NormalTabs' || element.type == 'DateTimePicker' ? 999999 : index + 1}` zIndex: `${element.type == 'NormalTabs' || element.type == 'DateTimePicker' ? 9999 : index + 1}`
}" }"
> >
<!-- 普通柱状图 --> <!-- 普通柱状图 -->
...@@ -59,6 +59,12 @@ ...@@ -59,6 +59,12 @@
<!-- <Table v-if="element.type == 'NormalTable'" :elementInfo="element"></Table> --> <!-- <Table v-if="element.type == 'NormalTable'" :elementInfo="element"></Table> -->
</view> </view>
</template> </template>
<ModelData
style="position: relative;z-index: 99999;"
:popupShow="popupShow"
:popupData="popupData"
></ModelData>
</view> </view>
</template> </template>
...@@ -70,7 +76,9 @@ ...@@ -70,7 +76,9 @@
timename: null, timename: null,
pageScrollTop: 0, pageScrollTop: 0,
stickyTables: [], // 设置了吸顶的table stickyTables: [], // 设置了吸顶的table
horizontalBarHeight: 0 horizontalBarHeight: 0,
popupShow: false,
popupData: {}
} }
}, },
computed: { computed: {
...@@ -145,6 +153,11 @@ ...@@ -145,6 +153,11 @@
uni.$on('handleUpdateHeight', (height) => { uni.$on('handleUpdateHeight', (height) => {
that.horizontalBarHeight = height that.horizontalBarHeight = height
}) })
uni.$on('showBarDetail', data => {
const { popupShow, popupData } = data
that.popupShow = popupShow
that.popupData = popupData
})
}, },
onHide() { onHide() {
// 移除监听事件 // 移除监听事件
......
...@@ -27,3 +27,9 @@ ...@@ -27,3 +27,9 @@
height: 100%; height: 100%;
display:block; display:block;
} }
.ellipsis {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment