From c60e56e2b6ceb633c6b10f5dc52e3da88129ad70 Mon Sep 17 00:00:00 2001 From: 陈泽平 <chenzeping> Date: 星期五, 21 五月 2021 17:35:41 +0800 Subject: [PATCH] 管线分析相关功能问题修改 --- src/components/panel/topicSearch/SewersSelect/AnalysisChoose/CrossSectional.vue | 234 ++++++++++++++++++++++++++++++++++----------------------- 1 files changed, 139 insertions(+), 95 deletions(-) diff --git a/src/components/panel/topicSearch/SewersSelect/AnalysisChoose/CrossSectional.vue b/src/components/panel/topicSearch/SewersSelect/AnalysisChoose/CrossSectional.vue index a0c7fce..ddfc644 100644 --- a/src/components/panel/topicSearch/SewersSelect/AnalysisChoose/CrossSectional.vue +++ b/src/components/panel/topicSearch/SewersSelect/AnalysisChoose/CrossSectional.vue @@ -8,15 +8,14 @@ <div slot="header" class="fixed-style"> <span>绠℃鏌ヨ缁撴灉</span> </div> - <el-table class="tableBox" :data="tableData" height="150" max-height="200" highlight-current-row style="width: 100%" size="mini"> - <el-table-column prop="mediumtype" label="浠嬭川绫诲瀷" :show-overflow-tooltip="true"></el-table-column> - <el-table-column prop="x" label="鏂潰(缁忓害)" :show-overflow-tooltip="true" width="80"></el-table-column> - <el-table-column prop="y" label="鏂潰(绾害)" :show-overflow-tooltip="true" width="80"></el-table-column> - <el-table-column prop="z" label="鏂潰楂樼▼(m)" :show-overflow-tooltip="true" width="80"></el-table-column> - <el-table-column prop="spacing" label="闂磋窛(m)" width="80"></el-table-column> + <el-table class="tableBox" :data="tableData" height="150" max-height="200" highlight-current-row + style="width: 100%" size="mini"> + <el-table-column v-for="(item, index) in listLabel" :key="index" :prop="item.prop" + :label="item.label" :show-overflow-tooltip="true" min-width="100"></el-table-column> </el-table> <span class="fixed-style">鏂潰鍥�</span> - <span v-show="!myChartShow" style="color: #909399;font-size: 12px;height: 200px;display: block;text-align: center;line-height: 200px">鏆傛棤鏁版嵁</span> + <span v-show="!myChartShow" + style="color: #909399;font-size: 12px;height: 200px;display: block;text-align: center;line-height: 200px">鏆傛棤鏁版嵁</span> <div v-show="myChartShow" id="echarts_box" ref="myChart" style="width:350px;height:200px;margin: 0 auto"></div> </div> </template> @@ -30,15 +29,39 @@ name: 'CrossSectional', data () { return { + // 鐢ㄤ簬缁樺埗妯柇闈㈢嚎娈� measure: null, + // 瀹氫箟 echarts瀵硅薄 myChart: null, - options: [], - echartsList: [], + // 鐢ㄤ簬鍒ゆ柇echarts鍥捐〃鐨勬樉绀轰笌闅愯棌 myChartShow: false, - linkPipeline: [], + // 鐢ㄤ簬瀹氫箟鎺ユ敹妯柇闈㈡暟鎹� + hdmParam: null, // 妯柇闈� 绠℃鏌ヨ缁撴灉 鐨則able琛ㄦ牸鏁版嵁 tableData: [], - hdmParam: null + // table 琛ㄦ牸瀹氫箟鐨勫瓧娈� + listLabel: [ + { + label: '浠嬭川绫诲瀷', + prop: 'mediumtype' + }, + { + label: '鏂潰(缁忓害)', + prop: 'x' + }, + { + label: '鏂潰(绾害)', + prop: 'y' + }, + { + label: '鏂潰楂樼▼(m)', + prop: 'z' + }, + { + label: '闂磋窛(m)', + prop: 'spacing' + } + ] } }, mounted () { @@ -48,15 +71,24 @@ eventBus.$on('draw-hdm-line', (points) => { this.getHdmPoint(points) }) - this.$nextTick(() => { - eventBus.$on('tabData-change', (obj) => { - if (obj) { - this.jdmClear() - } - }) + eventBus.$on('tabData-change', (obj) => { + if (obj) { + this.jdmClear() + } }) }, methods: { + // 妯柇闈㈡竻闄� + jdmClear () { + this.hdmParam = null + this.tableData = [] + this.option = [] + this.myChartShow = false + this.myChart.clear() + if (this.measure != null) { + this.measure.destory() + } + }, // 妯柇闈� 绾挎缁樺埗 drawLine () { if (this.measure === null) { @@ -84,8 +116,8 @@ } // 宸茬粯鍒剁嚎鍥� 杩涜缁樺埗妯柇闈㈡暟鎹垎鏋� const res = await mapApi.getCrossSection(this.hdmParam) - // 璋冪敤鏁版嵁澶勭悊鏂规硶 - this.dealWithData(res) + // // 璋冪敤鏁版嵁澶勭悊鏂规硶 + // this.dealWithData(res) // table鏁版嵁澶勭悊 const dataPoint = res.data.point // 瀛樺偍闂磋窛list @@ -96,103 +128,115 @@ x: parseFloat(dataPoint[i].crossPoint3D.x).toFixed(8), y: parseFloat(dataPoint[i].crossPoint3D.y).toFixed(8), z: parseFloat(dataPoint[i].crossPoint3D.z).toFixed(2), - spacing: spacingList[i - 1] + spacing: spacingList[i - 1], + startpointz: dataPoint[i].pipelines.extraData.startpointz, + diameter: dataPoint[i].pipelines.extraData.diameter } this.tableData.push(obj) } + // 璋冪敤鏁版嵁澶勭悊鏂规硶 + this.dealWithData(this.tableData) }, // 瀵硅幏鍙栧埌鐨勬暟鎹繘琛屽鐞� - dealWithData (e) { - console.log(e) + dealWithData (dataList) { + console.log(dataList) + // const dataPoint = e.data.point + // const spacingList = e.data.pointInterval.reverse() + // const dataList = [] + // for (let i = 0; i < dataPoint.length; i++) { + // const obj = { + // mediumtype: dataPoint[i].pipelines.extraData.mediumtype, + // startpointz: dataPoint[i].pipelines.extraData.startpointz, + // diameter: dataPoint[i].pipelines.extraData.diameter, + // spacing: spacingList[i - 1], + // x: parseFloat(dataPoint[i].crossPoint3D.x).toFixed(8), + // y: parseFloat(dataPoint[i].crossPoint3D.y).toFixed(8), + // z: parseFloat(dataPoint[i].crossPoint3D.z).toFixed(2) + // } + // dataList.push(obj) + // } + // 妯悜鍧愭爣鏁版嵁 + const xAxisData = [] + const dataObj = [] + for (let i = 0; i < dataList.length; i++) { + xAxisData.push(dataList[i].mediumtype) + // if (dataList[i].mediumtype === '闆ㄦ按') { + // dataObj.color = 'red' + // } + dataObj.push(dataList[i].startpointz) + } + this.selectRow(xAxisData, dataObj) }, // 妯柇闈㈢粯鍒跺畬鎴愬悗 杩涜妯柇闈㈡暟鎹垎鏋� 杩涜鍥捐〃灞曠ず - selectRow (dataList) { - // console.log(dataList) - // 3. 浣跨敤鍒氭寚瀹氱殑閰嶇疆椤瑰拰鏁版嵁锛屾樉绀哄浘琛� - this.option = { + selectRow (xAxisData, dataObj) { + const option = { tooltip: { - trigger: 'axis', - axisPointer: { - type: 'cross', - label: { - backgroundColor: '#6a7985' - } - } + trigger: 'axis' }, // legend: { - // // data: ['鐩存帴璁块棶', '鎼滅储寮曟搸'] - // data: dataList + // data: [] // }, - toolbox: { - show: false, - feature: { - saveAsImage: {} - } - }, grid: { - left: '10px', - right: '0', - top: '10px', - bottom: '5px', + left: '3%', + right: '4%', + bottom: '3%', containLabel: true }, - xAxis: [ - { - type: 'category', - boundaryGap: false, - axisLabel: { - // formatter: '{value}', - textStyle: { - color: '#fff' - } + xAxis: { + type: 'category', + splitLine: { + lineStyle: { + type: 'dashed' + }, + show: true + }, + axisLine: { + lineStyle: { + color: '#fff', + width: 2 } - // data: ['鍛ㄤ竴', '鍛ㄤ簩', '鍛ㄤ笁', '鍛ㄥ洓', '鍛ㄤ簲', '鍛ㄥ叚', '鍛ㄦ棩'] - // data: dataList + }, + // data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'], + data: xAxisData, + axisLabel: { + interval: 0, + textStyle: { + color: '#fff' + }, + margin: 20 } - ], - yAxis: [ - { - type: 'value', - axisLabel: { - // formatter: '{value}', - textStyle: { - color: '#fff' - } + }, + yAxis: { + axisLine: { + lineStyle: { + color: '#fff', + width: 2 + } + }, + axisPointer: { + snap: true + }, + splitLine: { + show: false + }, + type: 'value', + axisLabel: { + interval: 0, + textStyle: { + color: '#fff' } } - ], - // series: [ - // { - // name: '鎼滅储寮曟搸', - // type: 'line', - // stack: '鎬婚噺', - // label: { - // show: true, - // position: 'top' - // }, - // areaStyle: {}, - // emphasis: { - // focus: 'series' - // }, - // data: [820, 932, 901, 934, 1290, 1330, 1320] - // } - // ] - series: this.echartsList + }, + series: [ + { + type: 'scatter', + data: dataObj + } + ] } this.myChartShow = true this.myChart.clear() - this.myChart.setOption(this.option) - }, - // 妯柇闈㈡竻闄� - jdmClear () { - this.hdmParam = null - this.tableData = [] - this.option = [] - this.myChartShow = false - this.myChart.clear() - if (this.measure != null) { - this.measure.destory() - } + this.myChart.setOption(option) } } } -- Gitblit v1.8.0