UNPKG

@ued_fpi/data-visual

Version:

<br /> <br /> <div style="text-align:center"> <b style="font-size:30px">@ued_fpi/data-visual</b> <p>基于Vite4+TypeScript的Vue3大屏组件库开发框架</p> <img style="display:inline" src="https://img.shields.io/npm/v/@ued_fpi/data-visual" />

184 lines (179 loc) 5.94 kB
'use strict'; Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); const vue = require('vue'); const fpiTgFactorTools = require('fpi-tg-factor-tools'); const dayjs = require('dayjs'); require('../common/BasicEcharts/index.js'); const index = require('./api/index.js'); const index_vue_vue_type_script_setup_true_lang = require('../common/BasicEcharts/index.vue.js'); require('../common/BasicEcharts/index.vue2.js'); const clsfix = "dv-aims-cieq-contributio-ratio"; const _sfc_main = /* @__PURE__ */ vue.defineComponent({ __name: "index", props: { apiParams: { default: () => ({ time: dayjs().subtract(1, "h").valueOf(), code: "0101000000", codeType: "grid" }) } }, setup(__props) { const props = __props; const chartsFullOptions = vue.ref({ options: null }); const generateOption = (xData, series) => { return { options: { grid: { left: 10, bottom: 30, right: 10, top: 30, containLabel: true }, tooltip: { trigger: "axis", padding: 8, background: "rgba(1, 11, 18, 0.6)", formatter: (params) => { const title = params[0] ? params[0].name : ""; const cieq = params[0] ? params[0].data.cieq : ""; const strArr = params.map((item) => { return `<div> ${item.marker} <span style="display: inline-block;width: 60px;">${item.seriesName}</span> <span style="display: inline-block;text-align: right;width: 30px;margin-right:10px;">${Number.isNaN(Number(item.data.value)) ? "--" : `${item.data.value}`}</span> <span style="display: inline-block;text-align: right;width: 40px;">${typeof item.data.rate === "number" ? `${item.data.rate}%` : "--%"}</span> </div>`; }); const str = strArr.join(""); return `<div> <div>${title}</div> <div><span style="display: inline-block;width: 60px;">综合指数</span><span>${cieq}</span></div> ${str} </div>`; } }, xAxis: { type: "category", axisTick: { show: false }, axisLine: { show: false }, axisLabel: { color: "var(--dv-color-text-primary)", fontFamily: "var(--dv-font-family-number)", fontSize: "var(--dv-text-number2)", interval: 0, formatter: (value) => value.substr(5) }, data: xData }, yAxis: { type: "value", nameTextStyle: { color: "var(--dv-color-text-secondary)", padding: [0, 30, 0, 0] }, splitNumber: 3, axisTick: { show: false }, axisLine: { show: false }, axisLabel: { show: true, color: "var(--dv-color-text-secondary)", fontFamily: "var(--dv-font-family-number)", fontSize: "var(--dv-text-number2)" }, splitLine: { show: true, lineStyle: { color: ["var(--dv-color-border-light)"] } } }, legend: { show: true, bottom: 0, itemGap: 10, textStyle: { color: "var(--dv-color-text-primary)", fontSize: 12 }, itemWidth: 12, itemHeight: 12, icon: "circle", itemStyle: { borderWidth: 0 } }, series } }; }; const fetchData = () => { const colors = [ "#0062FF", "#0AAEFF", "#2AC94F", "#FF792E", "#F84439", "#FFB443" ]; index.getAirQualityStatis(props.apiParams).then((res) => { if (res.data && res.data.CIEQ) { const data1 = res.data.CIEQ.CIEQMonthValueRate; const data2 = res.data.CIEQ.CIEQMonthValue; const xData = data2.times; const list = fpiTgFactorTools.BASE_FACTOR.filter((item) => item.code !== "aqi").map((item, index) => { const key = `V_ICIEQ_${item.key}`; const value1s = data1[key] ?? []; const value2s = data2[key] ?? []; const cieqs = data2.cieq; return { name: item.name, type: "bar", stack: "x", data: value2s.map((c, index2) => { return { value: c, rate: value1s[index2], cieq: cieqs[index2] }; }), color: colors[index], barWidth: 15 }; }); chartsFullOptions.value = generateOption(xData, list); } }); }; vue.onMounted(() => { fetchData(); }); vue.watch(() => props.apiParams, () => { fetchData(); }); return (_ctx, _cache) => { return vue.openBlock(), vue.createElementBlock("div", { class: vue.normalizeClass(`${clsfix}-container`) }, [ vue.createElementVNode("div", { class: vue.normalizeClass(`${clsfix}-echarts`) }, [ vue.createVNode(vue.unref(index_vue_vue_type_script_setup_true_lang.default), { height: "100%", "full-options": chartsFullOptions.value, loading: false }, null, 8, ["full-options"]) ], 2) ], 2); }; } }); exports.default = _sfc_main;