123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053 |
- <template>
- <div class="app-container">
- <div class="dark-el-input dark-el-button">
- <el-form ref="queryForm" size="small" :inline="true">
- <el-form-item label="时间">
- <el-date-picker
- :clearable="false"
- v-model="dateTime"
- type="datetimerange"
- range-separator="至"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- :default-time="['00:00:00', '23:45:00']" popper-class="cpp-popper"
- :picker-options="pickerOptions"
- />
- </el-form-item>
- <el-form-item label="场站名称">
- <el-select v-model="stationCode" placeholder="请选择" popper-class="cpp-popper">
- <el-option
- v-for="item in stationList"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button type="primary" style="margin-left: 5px" icon="el-icon-search" @click="dataQuery">查询
- </el-button>
- <el-button type="primary" style="margin-left: 5px" icon="el-icon-download" @click="exportFile">导出
- </el-button>
- </el-form-item>
- </el-form>
- </div>
- <div style="padding-top: 10px">
- <div style="display: flex">
- <div style="float:left;width: 65%;height: 350px" id="wscharts"></div>
- <div style="float:left;width: 35%;height: 350px" id="wdcharts"></div>
- </div>
- <div class="vxe-max-height-65vh">
- <!-- <div>-->
- <vxe-table
- highlight-hover-row
- :keep-source="true"
- align="center"
- :loading="loading"
- ref="xTable"
- auto-resize
- highlight-current-row
- border
- resizable
- :scroll-y="{mode:'wheel'}"
- :data="tableData.slice((currentPage-1) * pageSize,currentPage * pageSize)">
- <vxe-table-column field="stationCode" title="场站名称" :formatter="stationCodeFormat" width="200px"
- fixed="left"></vxe-table-column>
- <vxe-table-column field="time" title="时间" width="180px" fixed="left" :formatter="timeFormat"></vxe-table-column>
- <vxe-table-column field="t" title="温度(℃)" width="180px"></vxe-table-column>
- <vxe-table-column field="rh" title="湿度(RH%)" width="180px"></vxe-table-column>
- <vxe-table-column field="pa" title="气压(kPa)" width="180px"></vxe-table-column>
- <vxe-table-column field="wsHubHeight" title="轮毂风速(m/s)" width="180px"></vxe-table-column>
- <vxe-table-column field="wdHubHeight" title="轮毂风向(°)" width="180px"></vxe-table-column>
- <vxe-table-column field="ws10" title="10米风速(m/s)" width="180px"></vxe-table-column>
- <vxe-table-column field="wd10" title="10米风向(°)" width="180px"></vxe-table-column>
- <vxe-table-column field="ws30" title="30米风速(m/s)" width="180px"></vxe-table-column>
- <vxe-table-column field="wd30" title="30米风向(°)" width="180px"></vxe-table-column>
- <vxe-table-column field="ws50" title="50米风速(m/s)" width="180px"></vxe-table-column>
- <vxe-table-column field="wd50" title="50米风向(°)" width="180px"></vxe-table-column>
- <vxe-table-column field="ws60" title="60米风速(m/s)" width="180px"></vxe-table-column>
- <vxe-table-column field="wd60" title="60米风向(°)" width="180px"></vxe-table-column>
- <vxe-table-column field="ws70" title="70米风速(m/s)" width="180px"></vxe-table-column>
- <vxe-table-column field="wd70" title="70米风向(°)" width="180px"></vxe-table-column>
- <vxe-table-column field="ws80" title="80米风速(m/s)" width="180px"></vxe-table-column>
- <vxe-table-column field="wd80" title="80米风向(°)" width="180px"></vxe-table-column>
- <vxe-table-column field="ws90" title="90米风速(m/s)" width="180px"></vxe-table-column>
- <vxe-table-column field="wd90" title="90米风向(°)" width="180px"></vxe-table-column>
- <vxe-table-column field="ws100" title="100米风速(m/s)" width="180px"></vxe-table-column>
- <vxe-table-column field="wd100" title="100米风向(°)" width="180px"></vxe-table-column>
- </vxe-table>
- <vxe-pager
- perfect
- :current-page.sync="currentPage"
- :page-size.sync="pageSize"
- :total="total"
- :page-sizes=[7,10,50,100]
- :layouts="['PrevJump', 'PrevPage','JumpNumber', 'NextPage', 'NextJump', 'Sizes', 'FullJump', 'Total']"
- @page-change="handlePageChange"
- >
- </vxe-pager>
- </div>
- </div>
- </div>
- </template>
- <script>
- import * as echarts from "echarts";
- export default {
- name: 'inverterinfo',
- data() {
- return {
- wsChart: null,
- wdChart: null,
- dateTime: [new Date(new Date().toLocaleDateString()).getTime(), new Date(new Date().toLocaleDateString()).getTime() + 60 * 60 * 24 * 1000 - 5 * 1000 * 60],
- total: 0,
- sortOrder: 'asc',
- pageSize: 7,
- currentPage: 1,
- stationList: [],
- stationCode: [],
- searchForm: {},
- tableData: [],
- nameList: [],
- loading: false,
- modId: '',//备用id
- itemStyle: [
- {
- itemStyle: {
- normal: {
- lineStyle: {
- color: '#4A99FF',
- // shadowColor: '#4A99FF',
- // shadowBlur: 10,
- },
- shadowColor: '#4A99FF',
- shadowBlur: 10,
- },
- },
- areaStyle: {
- normal: { // 单项区域填充样式
- color: {
- type: 'linear',
- x: 0, //右
- y: 0, //下
- x2: 1, //左
- y2: 1, //上
- colorStops: [{
- offset: 0,
- color: '#4A99FF'
- }, {
- offset: 0.5,
- color: 'rgba(0,0,0,0)'
- }, {
- offset: 1,
- color: '#4A99FF'
- }],
- globalCoord: false
- },
- opacity: 1 // 区域透明度
- }
- }
- },
- {
- itemStyle: {
- normal: {
- lineStyle: {
- color: '#4BFFFC',
- // shadowColor: '#4BFFFC',
- // shadowBlur: 10,
- },
- shadowColor: '#4BFFFC',
- shadowBlur: 10,
- },
- },
- areaStyle: {
- normal: { // 单项区域填充样式
- color: {
- type: 'linear',
- x: 0, //右
- y: 0, //下
- x2: 1, //左
- y2: 1, //上
- colorStops: [{
- offset: 0,
- color: '#4BFFFC'
- }, {
- offset: 0.5,
- color: 'rgba(0,0,0,0)'
- }, {
- offset: 1,
- color: '#4BFFFC'
- }],
- globalCoord: false
- },
- opacity: 1 // 区域透明度
- }
- }
- },
- {
- itemStyle: {
- normal: {
- lineStyle: {
- color: '#ff654a',
- // shadowColor: '#4A99FF',
- // shadowBlur: 10,
- },
- shadowColor: '#ff654a',
- shadowBlur: 10,
- },
- },
- areaStyle: {
- normal: { // 单项区域填充样式
- color: {
- type: 'linear',
- x: 0, //右
- y: 0, //下
- x2: 1, //左
- y2: 1, //上
- colorStops: [{
- offset: 0,
- color: '#ff654a'
- }, {
- offset: 0.5,
- color: 'rgba(0,0,0,0)'
- }, {
- offset: 1,
- color: '#ff654a'
- }],
- globalCoord: false
- },
- opacity: 1 // 区域透明度
- }
- }
- },
- {
- itemStyle: {
- normal: {
- lineStyle: {
- color: '#edff4a',
- // shadowColor: '#4A99FF',
- // shadowBlur: 10,
- },
- shadowColor: '#edff4a',
- shadowBlur: 10,
- },
- },
- areaStyle: {
- normal: { // 单项区域填充样式
- color: {
- type: 'linear',
- x: 0, //右
- y: 0, //下
- x2: 1, //左
- y2: 1, //上
- colorStops: [{
- offset: 0,
- color: '#edff4a'
- }, {
- offset: 0.5,
- color: 'rgba(0,0,0,0)'
- }, {
- offset: 1,
- color: '#edff4a'
- }],
- globalCoord: false
- },
- opacity: 1 // 区域透明度
- }
- }
- },
- {
- itemStyle: {
- normal: {
- lineStyle: {
- color: '#65ff4a',
- // shadowColor: '#4A99FF',
- // shadowBlur: 10,
- },
- shadowColor: '#65ff4a',
- shadowBlur: 10,
- },
- },
- areaStyle: {
- normal: { // 单项区域填充样式
- color: {
- type: 'linear',
- x: 0, //右
- y: 0, //下
- x2: 1, //左
- y2: 1, //上
- colorStops: [{
- offset: 0,
- color: '#65ff4a'
- }, {
- offset: 0.5,
- color: 'rgba(0,0,0,0)'
- }, {
- offset: 1,
- color: '#65ff4a'
- }],
- globalCoord: false
- },
- opacity: 1 // 区域透明度
- }
- }
- },
- {
- itemStyle: {
- normal: {
- lineStyle: {
- color: '#4affea',
- // shadowColor: '#4A99FF',
- // shadowBlur: 10,
- },
- shadowColor: '#4affea',
- shadowBlur: 10,
- },
- },
- areaStyle: {
- normal: { // 单项区域填充样式
- color: {
- type: 'linear',
- x: 0, //右
- y: 0, //下
- x2: 1, //左
- y2: 1, //上
- colorStops: [{
- offset: 0,
- color: '#4affea'
- }, {
- offset: 0.5,
- color: 'rgba(0,0,0,0)'
- }, {
- offset: 1,
- color: '#4affea'
- }],
- globalCoord: false
- },
- opacity: 1 // 区域透明度
- }
- }
- },
- {
- itemStyle: {
- normal: {
- lineStyle: {
- color: '#894aff',
- // shadowColor: '#4A99FF',
- // shadowBlur: 10,
- },
- shadowColor: '#894aff',
- shadowBlur: 10,
- },
- },
- areaStyle: {
- normal: { // 单项区域填充样式
- color: {
- type: 'linear',
- x: 0, //右
- y: 0, //下
- x2: 1, //左
- y2: 1, //上
- colorStops: [{
- offset: 0,
- color: '#894aff'
- }, {
- offset: 0.5,
- color: 'rgba(0,0,0,0)'
- }, {
- offset: 1,
- color: '#894aff'
- }],
- globalCoord: false
- },
- opacity: 1 // 区域透明度
- }
- }
- },
- {
- itemStyle: {
- normal: {
- lineStyle: {
- color: '#d84aff',
- // shadowColor: '#4A99FF',
- // shadowBlur: 10,
- },
- shadowColor: '#d84aff',
- shadowBlur: 10,
- },
- },
- areaStyle: {
- normal: { // 单项区域填充样式
- color: {
- type: 'linear',
- x: 0, //右
- y: 0, //下
- x2: 1, //左
- y2: 1, //上
- colorStops: [{
- offset: 0,
- color: '#d84aff'
- }, {
- offset: 0.5,
- color: 'rgba(0,0,0,0)'
- }, {
- offset: 1,
- color: '#d84aff'
- }],
- globalCoord: false
- },
- opacity: 1 // 区域透明度
- }
- }
- },
- {
- itemStyle: {
- normal: {
- lineStyle: {
- color: '#ff4aae',
- // shadowColor: '#4A99FF',
- // shadowBlur: 10,
- },
- shadowColor: '#ff4aae',
- shadowBlur: 10,
- },
- },
- areaStyle: {
- normal: { // 单项区域填充样式
- color: {
- type: 'linear',
- x: 0, //右
- y: 0, //下
- x2: 1, //左
- y2: 1, //上
- colorStops: [{
- offset: 0,
- color: '#ff4aae'
- }, {
- offset: 0.5,
- color: 'rgba(0,0,0,0)'
- }, {
- offset: 1,
- color: '#ff4aae'
- }],
- globalCoord: false
- },
- opacity: 1 // 区域透明度
- }
- }
- },
- ],
- colorArr: [
- {
- start: "rgba(155, 101, 229,",
- end: "rgba(219,44,44,0.5)"
- },
- {
- start: "rgba(71, 173, 245,",
- end: "rgba(231,132,46,0.5)"
- },
- {
- start: "rgba(82, 249, 107,",
- end: "rgba(190,229,50,0.5)"
- },
- {
- start: "rgba(82, 249, 107,",
- end: "rgba(44,214,140,0.5)"
- },
- {
- start: "rgba(82, 249, 107,",
- end: "rgba(43,73,221,0.5)"
- },
- {
- start: "rgba(82, 249, 107,",
- end: "rgba(40,203,203,0.5)"
- },
- {
- start: "rgba(82, 249, 107,",
- end: "rgba(195,42,180,0.5)"
- },
- {
- start: "rgba(82, 249, 107,",
- end: "rgba(231,45,119,0.5)"
- },
- {
- start: "rgba(82, 249, 107,",
- end: "rgba(229,46,46,0.5)"
- },
- ],
- lineStyle: [
- {
- areaStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: 'rgba(219,50,51,0.3)'
- }, {
- offset: 0.8,
- color: 'rgba(219, 50, 51, 0)'
- }], false),
- shadowColor: 'rgba(0, 0, 0, 0.1)',
- shadowBlur: 10
- }
- },
- itemStyle: {
- normal: {
- color: 'rgb(219,50,51)',
- borderColor: 'rgba(219,50,51,0.2)',
- borderWidth: 12
- }
- },
- },
- {
- areaStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: 'rgba(219,196,50,0.3)'
- }, {
- offset: 0.8,
- color: 'rgba(219, 50, 51, 0)'
- }], false),
- shadowColor: 'rgba(0, 0, 0, 0.1)',
- shadowBlur: 10
- }
- },
- itemStyle: {
- normal: {
- color: 'rgb(219,196,50)',
- borderColor: 'rgba(219,196,50,0.2)',
- borderWidth: 12
- }
- },
- },
- {
- areaStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: 'rgba(101,219,50,0.3)'
- }, {
- offset: 0.8,
- color: 'rgba(219, 50, 51, 0)'
- }], false),
- shadowColor: 'rgba(0, 0, 0, 0.1)',
- shadowBlur: 10
- }
- },
- itemStyle: {
- normal: {
- color: 'rgb(101,219,50)',
- borderColor: 'rgba(101,219,50,0.2)',
- borderWidth: 12
- }
- },
- },
- {
- areaStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: 'rgba(50,219,171,0.3)'
- }, {
- offset: 0.8,
- color: 'rgba(219, 50, 51, 0)'
- }], false),
- shadowColor: 'rgba(0, 0, 0, 0.1)',
- shadowBlur: 10
- }
- },
- itemStyle: {
- normal: {
- color: 'rgb(50,219,171)',
- borderColor: 'rgba(50,219,171,0.2)',
- borderWidth: 12
- }
- },
- },
- {
- areaStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: 'rgba(50,118,219,0.3)'
- }, {
- offset: 0.8,
- color: 'rgba(219, 50, 51, 0)'
- }], false),
- shadowColor: 'rgba(0, 0, 0, 0.1)',
- shadowBlur: 10
- }
- },
- itemStyle: {
- normal: {
- color: 'rgb(50,118,219)',
- borderColor: 'rgba(50,118,219,0.2)',
- borderWidth: 12
- }
- },
- },
- {
- areaStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: 'rgba(140,50,219,0.3)'
- }, {
- offset: 0.8,
- color: 'rgba(219, 50, 51, 0)'
- }], false),
- shadowColor: 'rgba(0, 0, 0, 0.1)',
- shadowBlur: 10
- }
- },
- itemStyle: {
- normal: {
- color: 'rgb(140,50,219)',
- borderColor: 'rgba(140,50,219,0.2)',
- borderWidth: 12
- }
- },
- },
- {
- areaStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: 'rgba(202,50,219,0.3)'
- }, {
- offset: 0.8,
- color: 'rgba(219, 50, 51, 0)'
- }], false),
- shadowColor: 'rgba(0, 0, 0, 0.1)',
- shadowBlur: 10
- }
- },
- itemStyle: {
- normal: {
- color: 'rgb(202,50,219)',
- borderColor: 'rgba(202,50,219,0.2)',
- borderWidth: 12
- }
- },
- },
- {
- areaStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: 'rgba(50,199,219,0.3)'
- }, {
- offset: 0.8,
- color: 'rgba(219, 50, 51, 0)'
- }], false),
- shadowColor: 'rgba(0, 0, 0, 0.1)',
- shadowBlur: 10
- }
- },
- itemStyle: {
- normal: {
- color: 'rgb(50,199,219)',
- borderColor: 'rgba(50,199,219,0.2)',
- borderWidth: 12
- }
- },
- },
- {
- areaStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: 'rgba(219,143,50,0.3)'
- }, {
- offset: 0.8,
- color: 'rgba(219, 50, 51, 0)'
- }], false),
- shadowColor: 'rgba(0, 0, 0, 0.1)',
- shadowBlur: 10
- }
- },
- itemStyle: {
- normal: {
- color: 'rgb(219,143,50)',
- borderColor: 'rgba(219,143,50,0.2)',
- borderWidth: 12
- }
- },
- }
- ],
- lineColor: '#3b3b3b',
- // 日期使用
- pickerOptions: {
- disabledDate: (time) => {
- return time.getTime() > new Date(new Date().toLocaleDateString()).getTime() + 24 * 60 * 60 * 1000 - 1;
- }
- },
- }
- },
- created() {
- this.getStationCode()
- },
- mounted() {
- },
- beforeDestroy() {
- if (!this.wsChart) {
- return
- }
- this.wsChart.dispose()
- this.wsChart = null
- if (!this.wdChart) {
- return
- }
- this.wdChart.dispose()
- this.wdChart = null
- },
- computed: {},
- methods: {
- timeFormat({ cellValue, row, column }) {
- return this.$moment(cellValue).format('YYYY-MM-DD HH:mm')
- },
- nameFormat({cellValue, row, column}) {
- const item = this.nameList.find(item => item.value === cellValue)
- return item ? item.label : ''
- },
- stationCodeFormat({cellValue, row, column}) {
- const item = this.stationList.find(item => item.value === cellValue)
- return item ? item.label : ''
- },
- handlePageChange({currentPage, pageSize}) {
- this.currentPage = currentPage
- this.pageSize = pageSize
- },
- exportFile(){
- if (this.tableData.length>0){
- const item = this.stationList.find(item => item.value === this.stationCode)
- let filename = item.label
- // 文件名日期
- let startTime = this.$moment(this.dateTime[0]).format('YYYY-MM-DD')
- let endTime = this.$moment(this.dateTime[1]).format('YYYY-MM-DD')
- if (startTime===endTime){
- filename=filename+startTime
- }
- else{
- filename=filename+startTime+'至'+endTime
- }
- this.$refs.xTable.exportData({
- filename: filename,
- type: 'csv',
- isHeader: true,
- isFooter: true,
- data: this.tableData
- })
- }
- else{
- this.$message.error("列表无数据不能导出文件!")
- return
- }
- },
- async dataQuery() {
- let startTime = Math.round(this.dateTime[0])
- let endTime = Math.round(this.dateTime[1])
- if (endTime <= startTime) {
- this.$message.error("开始时间不能大于结束时间")
- return
- }
- if (endTime - startTime > 60 * 60 * 24 * 1000 * 30) {
- this.$message.warning("查询数据不能超过30天!")
- return
- }
- this.loading = true
- let queryParams = {
- "stationCode": this.stationCode,
- "startTime": startTime,
- "endTime": endTime,
- }
- this.$axios.get('/windtowerstatusdata/queryTableData', {params: queryParams}).then(response => {
- this.tableData = response.data.tableList
- this.total = response.data.tableList.length
- let wsMap = response.data.wsMap
- let wsTime = response.data.wsTime
- let wdMap = response.data.wdMap
- this.wsDraw(wsTime, wsMap)
- this.wdDraw(wdMap);
- this.loading = false
- }).catch(() => {
- this.loading = false
- })
- },
- getStationCode() {
- const param = {
- "type": 'E2',
- }
- this.$axios.get('/electricfield/findByType', {params: param}).then(response => {
- this.stationList = response.data
- if (this.stationList.length > 0) {
- this.stationCode = this.stationList[0].value
- this.dataQuery()
- }
- })
- },
- wsDraw(wsTime, wsMap) {
- this.wsChart = echarts.init(document.getElementById('wscharts'), 'dark')
- let option = {
- backgroundColor: 'transparent',
- title: {
- top: 20,
- text: '风速图',
- textStyle: {
- fontWeight: 'normal',
- fontSize: 16,
- // color: this.lineColor
- },
- left: '1%'
- },
- tooltip: {
- confine: true,
- trigger: 'axis',
- axisPointer: {
- lineStyle: {
- color: '#57617B'
- }
- }
- },
- legend: {
- left:'center',
- top: 20,
- width: '100%',
- icon: 'rect',
- itemWidth: 14,
- itemHeight: 5,
- itemGap: 13,
- data: [],
- right: '4%',
- textStyle: {
- fontSize: 12,
- // color: this.lineColor
- },
- selected: {}
- },
- dataZoom: [{
- show: false,
- realtime: true,
- showDetail: false,
- left: "15%",
- right: "15%",
- handleSize: 0,
- }, {
- type: 'inside'
- }],
- grid: {
- top: 100,
- left: '2%',
- right: '2%',
- bottom: '10%',
- containLabel: true
- },
- xAxis: [{
- type: 'category',
- boundaryGap: false,
- // axisLine: {
- // lineStyle: {
- // color: this.lineColor
- // }
- // },
- data: []
- }],
- yAxis: [{
- type: 'value',
- name: 'm/s',
- axisTick: {
- show: false
- },
- // axisLine: {
- // lineStyle: {
- // color: this.lineColor
- // }
- // },
- axisLabel: {
- margin: 10,
- textStyle: {
- fontSize: 14,
- // color: this.lineColor
- },
- formatter: '{value}',
- },
- splitLine: {
- lineStyle: {
- color: '#57617B'
- }
- }
- }],
- series: []
- }
- option.xAxis[0].data = wsTime
- var index = 0;
- for (var key in wsMap) {
- for (let i = 0; i < wsMap[key].length; i++) {
- wsMap[key][i] = wsMap[key][i] == -99 ? null : wsMap[key][i]
- }
- option.legend.data.push(key)
- if (key == '轮毂风速') {
- option.legend.selected[key] = true
- } else {
- option.legend.selected[key] = false
- }
- var sValue = {
- name: '',
- type: 'line',
- smooth: false,
- symbol: 'circle',
- symbolSize: 5,
- showSymbol: false,
- lineStyle: {
- normal: {
- width: 2
- }
- },
- itemStyle: {},
- data: []
- }
- sValue.name = key
- sValue.data = wsMap[key]
- sValue.itemStyle = this.lineStyle[index].itemStyle
- sValue.connectNulls = true
- option.series.push(sValue)
- index++;
- }
- this.wsChart.setOption(option, true)
- var _this = this
- window.addEventListener("resize", function () {
- _this.wsChart.resize();
- });
- },
- wdDraw(wdMap) {
- this.wdChart = echarts.init(document.getElementById('wdcharts'), 'dark')
- const option = {
- backgroundColor: 'transparent',
- color: ['#4A99FF', '#4BFFFC', '#ff654a', '#edff4a', '#65ff4a', '#4affea', '#894aff', '#d84aff', '#ff4aae'],
- legend: {
- top: 20,
- width: 50,
- icon: 'rect',
- itemWidth: 14,
- itemHeight: 5,
- itemGap: 13,
- data: [],
- right: '4%',
- textStyle: {
- fontSize: 12,
- // color: '#F1F1F3'
- },
- selected: {}
- },
- title: {
- top: 20,
- text: '风向玫瑰图',
- textStyle: {
- fontWeight: 'normal',
- fontSize: 16,
- // color: this.lineColor
- },
- left: '15%'
- },
- tooltip: {
- confine: true,
- trigger: 'axis',
- axisPointer: {
- lineStyle: {
- color: '#FFFFFF'
- }
- }
- },
- radar: [
- {
- name: {
- textStyle: {
- color: '#FFFFFF',
- fontSize: 16
- },
- },
- splitArea: { // 坐标轴在 grid 区域中的分隔区域,默认不显示。
- show: true,
- areaStyle: { // 分隔区域的样式设置。
- color: ['rgba(255,255,255,0)', 'rgba(255,255,255,0)'], // 分隔区域颜色。分隔区域会按数组中颜色的顺序依次循环设置颜色。默认是一个深浅的间隔色。
- }
- },
- axisLine: { //指向外圈文本的分隔线样式
- lineStyle: {
- color: '#FFFFFF'
- }
- },
- splitLine: {
- lineStyle: {
- color: '#FFFFFF', // 分隔线颜色
- width: 1, // 分隔线线宽
- }
- },
- indicator: [
- {text: 'N', max: 1},
- {text: 'NNW', max: 1},
- {text: 'NW', max: 1},
- {text: 'WNW', max: 1},
- {text: 'W', max: 1},
- {text: 'WSW', max: 1},
- {text: 'SW', max: 1},
- {text: 'SSW', max: 1},
- {text: 'S', max: 1},
- {text: 'SSE', max: 1},
- {text: 'SE', max: 1},
- {text: 'ESE', max: 1},
- {text: 'E', max: 1},
- {text: 'ENE', max: 1},
- {text: 'NE', max: 1},
- {text: 'NNE', max: 1},
- ],
- center: ['50%', '50%'],
- radius: '70%'
- },
- ],
- series: [
- {
- type: 'radar',
- tooltip: {
- trigger: 'item',
- },
- areaStyle: {},
- data: []
- }
- ],
- }
- var index = 0;
- for (var key in wdMap) {
- option.legend.data.push(key)
- if (key == '轮毂风向') {
- option.legend.selected[key] = true
- } else {
- option.legend.selected[key] = false
- }
- var wd = new Object
- wd.name = key
- wd.value = wdMap[key]
- wd.connectNulls = true
- wd.itemStyle = this.itemStyle[index].itemStyle
- wd.areaStyle = this.itemStyle[index].areaStyle
- option.series[0].data.push(wd)
- index++;
- }
- this.wdChart.setOption(option, true)
- var _this = this
- window.addEventListener("resize", function () {
- _this.wdChart.resize();
- });
- },
- },
- }
- </script>
|