@ued_fpi/data-visual 1.1.2 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/dist/.DS_Store +0 -0
- package/dist/es/index.mjs +7 -7
- package/dist/es/ipes/src/common/Echarts.vue.mjs +1 -1
- package/dist/es/ipes/src/common/Echarts.vue3.mjs +2 -2
- package/dist/es/ipes/src/common/IpesPercentBar.vue.mjs +1 -1
- package/dist/es/ipes/src/common/IpesPercentBar.vue2.mjs +2 -2
- package/dist/es/ipes/src/common/IpesProgressBar.vue.mjs +1 -1
- package/dist/es/ipes/src/common/IpesProgressBar.vue2.mjs +2 -2
- package/dist/es/style.css +3901 -3901
- package/dist/es/wgms/src/ChlorophyllAchangeRate/index.d.ts +1 -1
- package/dist/es/wgms/src/ChlorophyllAchangeRate/index.mjs +2 -2
- package/dist/es/wgms/src/FactorTopThreeRanking/index.d.ts +1 -1
- package/dist/es/wgms/src/FactorTopThreeRanking/index.mjs +2 -2
- package/dist/es/wgms/src/KeyRiverWaterQualityEvaluation/index.d.ts +1 -1
- package/dist/es/wgms/src/KeyRiverWaterQualityEvaluation/index.mjs +2 -2
- package/dist/es/wgms/src/SewageOutletsOnlineMonitor/index.d.ts +1 -1
- package/dist/es/wgms/src/SewageOutletsOnlineMonitor/index.mjs +2 -2
- package/dist/es/wgms/src/WaterEnvironmentOnlineMonitor/index.d.ts +1 -1
- package/dist/es/wgms/src/WaterEnvironmentOnlineMonitor/index.mjs +2 -2
- package/dist/es/wgms/src/WaterQualityClassification/index.d.ts +1 -1
- package/dist/es/wgms/src/WaterQualityClassification/index.mjs +2 -2
- package/dist/es/wgms/src/WaterQualityStatus/index.d.ts +1 -1
- package/dist/es/wgms/src/WaterQualityStatus/index.mjs +2 -2
- package/dist/es/wgms/src/common/select-panel.vue.mjs +1 -4
- package/dist/es/wgms/src/index.mjs +7 -7
- package/dist/lib/index.js +7 -7
- package/dist/lib/ipes/src/common/Echarts.vue.js +1 -1
- package/dist/lib/ipes/src/common/Echarts.vue3.js +2 -2
- package/dist/lib/ipes/src/common/IpesPercentBar.vue.js +1 -1
- package/dist/lib/ipes/src/common/IpesPercentBar.vue2.js +2 -2
- package/dist/lib/ipes/src/common/IpesProgressBar.vue.js +1 -1
- package/dist/lib/ipes/src/common/IpesProgressBar.vue2.js +2 -2
- package/dist/lib/style.css +3901 -3901
- package/dist/lib/wgms/src/ChlorophyllAchangeRate/index.d.ts +1 -1
- package/dist/lib/wgms/src/ChlorophyllAchangeRate/index.js +2 -2
- package/dist/lib/wgms/src/FactorTopThreeRanking/index.d.ts +1 -1
- package/dist/lib/wgms/src/FactorTopThreeRanking/index.js +2 -2
- package/dist/lib/wgms/src/KeyRiverWaterQualityEvaluation/index.d.ts +1 -1
- package/dist/lib/wgms/src/KeyRiverWaterQualityEvaluation/index.js +2 -2
- package/dist/lib/wgms/src/SewageOutletsOnlineMonitor/index.d.ts +1 -1
- package/dist/lib/wgms/src/SewageOutletsOnlineMonitor/index.js +2 -2
- package/dist/lib/wgms/src/WaterEnvironmentOnlineMonitor/index.d.ts +1 -1
- package/dist/lib/wgms/src/WaterEnvironmentOnlineMonitor/index.js +2 -2
- package/dist/lib/wgms/src/WaterQualityClassification/index.d.ts +1 -1
- package/dist/lib/wgms/src/WaterQualityClassification/index.js +2 -2
- package/dist/lib/wgms/src/WaterQualityStatus/index.d.ts +1 -1
- package/dist/lib/wgms/src/WaterQualityStatus/index.js +2 -2
- package/dist/lib/wgms/src/common/select-panel.vue.js +0 -3
- package/dist/lib/wgms/src/index.js +7 -7
- package/dist/style/style-aims.css +1 -0
- package/dist/style/style-bmp.css +1 -0
- package/dist/style/style-ipes.css +1 -0
- package/dist/style/style-wgms.css +1 -0
- package/package.json +3 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { install } from '../../utils/tools.mjs';
|
|
2
2
|
import _ChlorophyllAChangeRate from './index.vue.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const DvWgmsChlorophyllAChangeRate = install(_ChlorophyllAChangeRate);
|
|
5
5
|
|
|
6
|
-
export {
|
|
6
|
+
export { DvWgmsChlorophyllAChangeRate, _ChlorophyllAChangeRate as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { install } from '../../utils/tools.mjs';
|
|
2
2
|
import _FactorTopThreeRanking from './index.vue.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const DvWgmsFactorTopThreeRanking = install(_FactorTopThreeRanking);
|
|
5
5
|
|
|
6
|
-
export {
|
|
6
|
+
export { DvWgmsFactorTopThreeRanking, _FactorTopThreeRanking as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { install } from '../../utils/tools.mjs';
|
|
2
2
|
import _KeyRiverWaterQualityEvaluation from './index.vue.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const DvWgmsKeyRiverWaterQualityEvaluation = install(_KeyRiverWaterQualityEvaluation);
|
|
5
5
|
|
|
6
|
-
export {
|
|
6
|
+
export { DvWgmsKeyRiverWaterQualityEvaluation, _KeyRiverWaterQualityEvaluation as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { install } from '../../utils/tools.mjs';
|
|
2
2
|
import _SewageOutletsOnlineMonitor from './index.vue.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const DvWgmsSewageOutletsOnlineMonitor = install(_SewageOutletsOnlineMonitor);
|
|
5
5
|
|
|
6
|
-
export {
|
|
6
|
+
export { DvWgmsSewageOutletsOnlineMonitor, _SewageOutletsOnlineMonitor as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { install } from '../../utils/tools.mjs';
|
|
2
2
|
import _WaterEnvironmentOnlineMonitor from './index.vue.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const DvWgmsWaterEnvironmentOnlineMonitor = install(_WaterEnvironmentOnlineMonitor);
|
|
5
5
|
|
|
6
|
-
export {
|
|
6
|
+
export { DvWgmsWaterEnvironmentOnlineMonitor, _WaterEnvironmentOnlineMonitor as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { install } from '../../utils/tools.mjs';
|
|
2
2
|
import _WaterQualityClassification from './index.vue.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const DvWgmsWaterQualityClassification = install(_WaterQualityClassification);
|
|
5
5
|
|
|
6
|
-
export {
|
|
6
|
+
export { DvWgmsWaterQualityClassification, _WaterQualityClassification as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { install } from '../../utils/tools.mjs';
|
|
2
2
|
import _WaterQualityStatus from './index.vue.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const DvWgmsWaterQualityStatus = install(_WaterQualityStatus);
|
|
5
5
|
|
|
6
|
-
export {
|
|
6
|
+
export { DvWgmsWaterQualityStatus, _WaterQualityStatus as default };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ElScrollbar } from 'element-plus/es';
|
|
2
2
|
import 'element-plus/es/components/base/style/css';
|
|
3
3
|
import 'element-plus/es/components/scrollbar/style/css';
|
|
4
|
-
import { defineComponent,
|
|
4
|
+
import { defineComponent, reactive, watch, onMounted, onUnmounted, toRefs, openBlock, createElementBlock, createElementVNode, normalizeClass, normalizeStyle, withModifiers, withDirectives, toDisplayString, unref, vShow, createCommentVNode, createVNode, Transition, withCtx, Fragment, renderList } from 'vue';
|
|
5
5
|
|
|
6
6
|
const _hoisted_1 = { class: "container-select" };
|
|
7
7
|
const _hoisted_2 = ["onClick"];
|
|
@@ -77,9 +77,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
77
77
|
emits: ["change"],
|
|
78
78
|
setup(__props, { emit }) {
|
|
79
79
|
const props = __props;
|
|
80
|
-
useCssVars((_ctx) => ({
|
|
81
|
-
"2b689ab8": __props.arrowScale
|
|
82
|
-
}));
|
|
83
80
|
const data = reactive({
|
|
84
81
|
isShowOption: false,
|
|
85
82
|
label: "--",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export { DvWgmsEnvironmentalAnalysis } from './EnvironmentalAnalysis/index.mjs';
|
|
2
|
-
export {
|
|
3
|
-
export {
|
|
2
|
+
export { DvWgmsWaterQualityClassification } from './WaterQualityClassification/index.mjs';
|
|
3
|
+
export { DvWgmsWaterQualityStatus } from './WaterQualityStatus/index.mjs';
|
|
4
4
|
export { DvWgmsWaterQualityRainfall } from './WaterQualityRainfall/index.mjs';
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
5
|
+
export { DvWgmsWaterEnvironmentOnlineMonitor } from './WaterEnvironmentOnlineMonitor/index.mjs';
|
|
6
|
+
export { DvWgmsSewageOutletsOnlineMonitor } from './SewageOutletsOnlineMonitor/index.mjs';
|
|
7
|
+
export { DvWgmsKeyRiverWaterQualityEvaluation } from './KeyRiverWaterQualityEvaluation/index.mjs';
|
|
8
8
|
export { DrinkingWaterComplianceRate } from './DrinkingWaterComplianceRate/index.mjs';
|
|
9
9
|
export { DvWgmsSevenDayKline } from './SevenDayKline/index.mjs';
|
|
10
10
|
export { DvWgmsSurroundingPollution } from './SurroundingPollution/index.mjs';
|
|
@@ -13,8 +13,8 @@ export { DvWgmsUpstreamImpact } from './UpstreamImpact/index.mjs';
|
|
|
13
13
|
export { DvWgmsCrossSectionCorrelation } from './CrossSectionCorrelation/index.mjs';
|
|
14
14
|
export { DvWgmsUpstreamSection } from './UpstreamSection/index.mjs';
|
|
15
15
|
export { DvWgmsSubordinateRanking } from './SubordinateRanking/index.mjs';
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
16
|
+
export { DvWgmsChlorophyllAChangeRate } from './ChlorophyllAchangeRate/index.mjs';
|
|
17
|
+
export { DvWgmsFactorTopThreeRanking } from './FactorTopThreeRanking/index.mjs';
|
|
18
18
|
export { DvWgmsDistributionPoints } from './DistributionPoints/index.mjs';
|
|
19
19
|
export { DvWgmsLakeRiverIndex } from './LakeRiverIndex/index.mjs';
|
|
20
20
|
export { DvWgmsChangesAlongTheProcess } from './ChangesAlongTheProcess/index.mjs';
|
package/dist/lib/index.js
CHANGED
|
@@ -134,12 +134,12 @@ exports.PollutantSourceManage = index$G.PollutantSourceManage;
|
|
|
134
134
|
exports.EnvironmentalProtection = index$H.EnvironmentalProtection;
|
|
135
135
|
exports.GasControl = index$I.GasControl;
|
|
136
136
|
exports.DvWgmsEnvironmentalAnalysis = index$J.DvWgmsEnvironmentalAnalysis;
|
|
137
|
-
exports.
|
|
138
|
-
exports.
|
|
137
|
+
exports.DvWgmsWaterQualityClassification = index$K.DvWgmsWaterQualityClassification;
|
|
138
|
+
exports.DvWgmsWaterQualityStatus = index$L.DvWgmsWaterQualityStatus;
|
|
139
139
|
exports.DvWgmsWaterQualityRainfall = index$M.DvWgmsWaterQualityRainfall;
|
|
140
|
-
exports.
|
|
141
|
-
exports.
|
|
142
|
-
exports.
|
|
140
|
+
exports.DvWgmsWaterEnvironmentOnlineMonitor = index$N.DvWgmsWaterEnvironmentOnlineMonitor;
|
|
141
|
+
exports.DvWgmsSewageOutletsOnlineMonitor = index$O.DvWgmsSewageOutletsOnlineMonitor;
|
|
142
|
+
exports.DvWgmsKeyRiverWaterQualityEvaluation = index$P.DvWgmsKeyRiverWaterQualityEvaluation;
|
|
143
143
|
exports.DrinkingWaterComplianceRate = index$Q.DrinkingWaterComplianceRate;
|
|
144
144
|
exports.DvWgmsSevenDayKline = index$R.DvWgmsSevenDayKline;
|
|
145
145
|
exports.DvWgmsSurroundingPollution = index$S.DvWgmsSurroundingPollution;
|
|
@@ -148,8 +148,8 @@ exports.DvWgmsUpstreamImpact = index$U.DvWgmsUpstreamImpact;
|
|
|
148
148
|
exports.DvWgmsCrossSectionCorrelation = index$V.DvWgmsCrossSectionCorrelation;
|
|
149
149
|
exports.DvWgmsUpstreamSection = index$W.DvWgmsUpstreamSection;
|
|
150
150
|
exports.DvWgmsSubordinateRanking = index$X.DvWgmsSubordinateRanking;
|
|
151
|
-
exports.
|
|
152
|
-
exports.
|
|
151
|
+
exports.DvWgmsChlorophyllAChangeRate = index$Y.DvWgmsChlorophyllAChangeRate;
|
|
152
|
+
exports.DvWgmsFactorTopThreeRanking = index$Z.DvWgmsFactorTopThreeRanking;
|
|
153
153
|
exports.DvWgmsDistributionPoints = index$_.DvWgmsDistributionPoints;
|
|
154
154
|
exports.DvWgmsLakeRiverIndex = index$$.DvWgmsLakeRiverIndex;
|
|
155
155
|
exports.DvWgmsChangesAlongTheProcess = index$10.DvWgmsChangesAlongTheProcess;
|
|
@@ -6,6 +6,6 @@ const Echarts_vue_vue_type_script_setup_true_lang = require('./Echarts.vue2.js')
|
|
|
6
6
|
require('./Echarts.vue3.js');
|
|
7
7
|
const _pluginVue_exportHelper = require('../../../_virtual/_plugin-vue_export-helper.js');
|
|
8
8
|
|
|
9
|
-
const Echarts = /* @__PURE__ */ _pluginVue_exportHelper.default(Echarts_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-
|
|
9
|
+
const Echarts = /* @__PURE__ */ _pluginVue_exportHelper.default(Echarts_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-deb04e1c"]]);
|
|
10
10
|
|
|
11
11
|
exports.default = Echarts;
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
4
4
|
|
|
5
|
-
/* unplugin-vue-components disabled */const
|
|
5
|
+
/* unplugin-vue-components disabled */const Echarts_vue_vue_type_style_index_0_scoped_deb04e1c_lang = '';
|
|
6
6
|
|
|
7
|
-
exports.default =
|
|
7
|
+
exports.default = Echarts_vue_vue_type_style_index_0_scoped_deb04e1c_lang;
|
|
@@ -36,6 +36,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36
36
|
}), 128))
|
|
37
37
|
]))
|
|
38
38
|
}
|
|
39
|
-
const IpesPercentBar = /*#__PURE__*/_pluginVue_exportHelper.default(_sfc_main, [['render',_sfc_render],['__scopeId',"data-v-
|
|
39
|
+
const IpesPercentBar = /*#__PURE__*/_pluginVue_exportHelper.default(_sfc_main, [['render',_sfc_render],['__scopeId',"data-v-e364bb24"]]);
|
|
40
40
|
|
|
41
41
|
exports.default = IpesPercentBar;
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
4
4
|
|
|
5
|
-
/* unplugin-vue-components disabled */const
|
|
5
|
+
/* unplugin-vue-components disabled */const IpesPercentBar_vue_vue_type_style_index_0_scoped_e364bb24_lang = '';
|
|
6
6
|
|
|
7
|
-
exports.default =
|
|
7
|
+
exports.default = IpesPercentBar_vue_vue_type_style_index_0_scoped_e364bb24_lang;
|
|
@@ -36,6 +36,6 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36
36
|
])
|
|
37
37
|
]))
|
|
38
38
|
}
|
|
39
|
-
const ProgressBar = /*#__PURE__*/_pluginVue_exportHelper.default(_sfc_main, [['render',_sfc_render],['__scopeId',"data-v-
|
|
39
|
+
const ProgressBar = /*#__PURE__*/_pluginVue_exportHelper.default(_sfc_main, [['render',_sfc_render],['__scopeId',"data-v-67710cad"]]);
|
|
40
40
|
|
|
41
41
|
exports.default = ProgressBar;
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
4
4
|
|
|
5
|
-
/* unplugin-vue-components disabled */const
|
|
5
|
+
/* unplugin-vue-components disabled */const IpesProgressBar_vue_vue_type_style_index_0_scoped_67710cad_lang = '';
|
|
6
6
|
|
|
7
|
-
exports.default =
|
|
7
|
+
exports.default = IpesProgressBar_vue_vue_type_style_index_0_scoped_67710cad_lang;
|