| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496 | 
							- <template>
 
-   <div :style="styleObj">
 
-     <v-chart :options="options" autoresize />
 
-   </div>
 
- </template>
 
- <script>
 
- import { eventBusParams } from "@/utils/screen";
 
- export default {
 
-   name: "WidgetBarStackchart",
 
-   components: {},
 
-   props: {
 
-     value: Object,
 
-     ispreview: Boolean,
 
-   },
 
-   data() {
 
-     return {
 
-       options: {
 
-         grid: {},
 
-         legend: {
 
-           textStyle: {
 
-             color: "#fff",
 
-           },
 
-         },
 
-         xAxis: {
 
-           type: "category",
 
-           data: [],
 
-           axisLabel: {
 
-             show: true,
 
-             textStyle: {
 
-               color: "#fff",
 
-             },
 
-           },
 
-         },
 
-         yAxis: {
 
-           type: "value",
 
-           data: [],
 
-           axisLabel: {
 
-             show: true,
 
-             textStyle: {
 
-               color: "#fff",
 
-             },
 
-           },
 
-         },
 
-         series: [
 
-           {
 
-             data: [],
 
-             name: "",
 
-             type: "line",
 
-             barGap: "0%",
 
-             itemStyle: {
 
-               barBorderRadius: null,
 
-             },
 
-           },
 
-         ],
 
-       },
 
-       optionsStyle: {}, // 样式
 
-       optionsData: {}, // 数据
 
-       optionsSetup: {},
 
-       flagInter: null,
 
-     };
 
-   },
 
-   computed: {
 
-     styleObj() {
 
-       return {
 
-         position: this.ispreview ? "absolute" : "static",
 
-         width: this.optionsStyle.width + "px",
 
-         height: this.optionsStyle.height + "px",
 
-         left: this.optionsStyle.left + "px",
 
-         top: this.optionsStyle.top + "px",
 
-         background: this.optionsSetup.background,
 
-       };
 
-     },
 
-   },
 
-   watch: {
 
-     value: {
 
-       handler(val) {
 
-         this.optionsStyle = val.position;
 
-         this.optionsData = val.data;
 
-         this.optionsCollapse = val.setup;
 
-         this.optionsSetup = val.setup;
 
-         this.editorOptions();
 
-       },
 
-       deep: true,
 
-     },
 
-   },
 
-   mounted() {
 
-     this.optionsStyle = this.value.position;
 
-     this.optionsData = this.value.data;
 
-     this.optionsCollapse = this.value.setup;
 
-     this.optionsSetup = this.value.setup;
 
-     this.editorOptions();
 
-     eventBusParams(
 
-       this.optionsSetup,
 
-       this.optionsData,
 
-       (dynamicData, optionsSetup) => {
 
-         console.log("dynamicData", dynamicData);
 
-         this.getEchartData(dynamicData, optionsSetup);
 
-       }
 
-     );
 
-   },
 
-   methods: {
 
-     // 修改图标options属性
 
-     editorOptions() {
 
-       this.setOptionsTitle();
 
-       this.setOptionsX();
 
-       this.setOptionsY();
 
-       this.setOptionsTooltip();
 
-       this.setOptionsMargin();
 
-       this.setOptionsLegend();
 
-       this.setOptionsData();
 
-     },
 
-     // 标题修改
 
-     setOptionsTitle() {
 
-       const optionsSetup = this.optionsSetup;
 
-       const title = {};
 
-       title.text = optionsSetup.titleText;
 
-       title.show = optionsSetup.isNoTitle;
 
-       title.left = optionsSetup.textAlign;
 
-       title.textStyle = {
 
-         color: optionsSetup.textColor,
 
-         fontSize: optionsSetup.textFontSize,
 
-         fontWeight: optionsSetup.textFontWeight,
 
-         fontStyle: optionsSetup.textFontStyle,
 
-       };
 
-       title.subtext = optionsSetup.subText;
 
-       title.subtextStyle = {
 
-         color: optionsSetup.subTextColor,
 
-         fontWeight: optionsSetup.subTextFontWeight,
 
-         fontSize: optionsSetup.subTextFontSize,
 
-         fontStyle: optionsSetup.subTextFontStyle,
 
-       };
 
-       this.options.title = title;
 
-     },
 
-     // X轴设置
 
-     setOptionsX() {
 
-       const optionsSetup = this.optionsSetup;
 
-       const xAxis = {
 
-         type: "category",
 
-         // 坐标轴是否显示
 
-         show: optionsSetup.hideX,
 
-         // 坐标轴名称
 
-         name: optionsSetup.nameX,
 
-         nameTextStyle: {
 
-           color: optionsSetup.nameColorX,
 
-           fontSize: optionsSetup.nameFontSizeX,
 
-         },
 
-         // 轴反转
 
-         inverse: optionsSetup.reversalX,
 
-         axisLabel: {
 
-           show: true,
 
-           // 文字间隔
 
-           interval: optionsSetup.textInterval,
 
-           // 文字角度
 
-           rotate: optionsSetup.textAngleX,
 
-           textStyle: {
 
-             // 坐标文字颜色
 
-             color: optionsSetup.colorX,
 
-             fontSize: optionsSetup.fontSizeX,
 
-           },
 
-         },
 
-         axisLine: {
 
-           show: true,
 
-           lineStyle: {
 
-             color: optionsSetup.lineColorX,
 
-             width: optionsSetup.lineWidthX,
 
-           },
 
-         },
 
-         splitLine: {
 
-           show: optionsSetup.isShowSplitLineX,
 
-           lineStyle: {
 
-             color: optionsSetup.splitLineColorX,
 
-             width: optionsSetup.splitLineWidthX,
 
-           },
 
-         },
 
-       };
 
-       this.options.xAxis = xAxis;
 
-     },
 
-     // Y轴设置
 
-     setOptionsY() {
 
-       const optionsSetup = this.optionsSetup;
 
-       const yAxis = {
 
-         type: "value",
 
-         scale: optionsSetup.scale,
 
-         // 均分
 
-         splitNumber: optionsSetup.splitNumberY,
 
-         // 坐标轴是否显示
 
-         show: optionsSetup.isShowY,
 
-         // 坐标轴名称
 
-         name: optionsSetup.textNameY,
 
-         nameTextStyle: {
 
-           color: optionsSetup.nameColorY,
 
-           fontSize: optionsSetup.nameFontSizeY,
 
-         },
 
-         // 轴反转
 
-         inverse: optionsSetup.reversalY,
 
-         axisLabel: {
 
-           show: true,
 
-           // 文字角度
 
-           rotate: optionsSetup.textAngleY,
 
-           textStyle: {
 
-             // 坐标文字颜色
 
-             color: optionsSetup.colorY,
 
-             fontSize: optionsSetup.fontSizeY,
 
-           },
 
-         },
 
-         axisLine: {
 
-           show: true,
 
-           lineStyle: {
 
-             color: optionsSetup.lineColorY,
 
-             width: optionsSetup.lineWidthY,
 
-           },
 
-         },
 
-         splitLine: {
 
-           show: optionsSetup.isShowSplitLineY,
 
-           lineStyle: {
 
-             color: optionsSetup.splitLineColorY,
 
-             width: optionsSetup.splitLineWidthY,
 
-           },
 
-         },
 
-       };
 
-       this.options.yAxis = yAxis;
 
-     },
 
-     // 获取面积
 
-     getOptionArea() {
 
-       const optionsSetup = this.optionsSetup;
 
-       let areaStyle = [];
 
-       if (optionsSetup.area) {
 
-         areaStyle = {
 
-           opacity: optionsSetup.areaThickness / 100,
 
-         };
 
-       } else {
 
-         areaStyle = {
 
-           opacity: 0,
 
-         };
 
-       }
 
-       return areaStyle;
 
-     },
 
-     // tooltip 提示语设置,鼠标放置显示
 
-     setOptionsTooltip() {
 
-       const optionsSetup = this.optionsSetup;
 
-       const tooltip = {
 
-         trigger: "item",
 
-         show: true,
 
-         textStyle: {
 
-           color: optionsSetup.tipsColor,
 
-           fontSize: optionsSetup.tipsFontSize,
 
-         },
 
-       };
 
-       this.options.tooltip = tooltip;
 
-     },
 
-     // 边距设置
 
-     setOptionsMargin() {
 
-       const optionsSetup = this.optionsSetup;
 
-       const grid = {
 
-         left: optionsSetup.marginLeft,
 
-         right: optionsSetup.marginRight,
 
-         bottom: optionsSetup.marginBottom,
 
-         top: optionsSetup.marginTop,
 
-         containLabel: true,
 
-       };
 
-       this.options.grid = grid;
 
-     },
 
-     // 图例操作 legend
 
-     setOptionsLegend() {
 
-       const optionsSetup = this.optionsSetup;
 
-       const legend = this.options.legend;
 
-       legend.show = optionsSetup.isShowLegend;
 
-       legend.left = optionsSetup.lateralPosition;
 
-       legend.top = optionsSetup.longitudinalPosition;
 
-       legend.bottom = optionsSetup.longitudinalPosition;
 
-       legend.orient = optionsSetup.layoutFront;
 
-       legend.textStyle = {
 
-         color: optionsSetup.legendColor,
 
-         fontSize: optionsSetup.legendFontSize,
 
-       };
 
-       legend.itemWidth = optionsSetup.legendWidth;
 
-     },
 
-     // 图例名称设置
 
-     setOptionsLegendName(name) {
 
-       const optionsSetup = this.optionsSetup;
 
-       const series = this.options.series;
 
-       const legendName = optionsSetup.legendName;
 
-       // 图例没有手动写则显示原值,写了则显示新值
 
-       if (null == legendName || legendName == "") {
 
-         for (let i = 0; i < name.length; i++) {
 
-           series[i].name = name[i];
 
-         }
 
-         this.options.legend["data"] = name;
 
-       } else {
 
-         const arr = legendName.split("|");
 
-         for (let i = 0; i < arr.length; i++) {
 
-           series[i].name = arr[i];
 
-         }
 
-         this.options.legend["data"] = arr;
 
-       }
 
-     },
 
-     // 图例颜色修改
 
-     setOptionsColor() {
 
-       const optionsCollapse = this.optionsSetup;
 
-       const customColor = optionsCollapse.customColor;
 
-       if (!customColor) return;
 
-       const arrColor = [];
 
-       for (let i = 0; i < customColor.length; i++) {
 
-         arrColor.push(customColor[i].color);
 
-       }
 
-       this.options.color = arrColor;
 
-       this.options = Object.assign({}, this.options);
 
-     },
 
-     // 数据解析
 
-     setOptionsData() {
 
-       const optionsSetup = this.optionsSetup;
 
-       // 数据类型 静态 or 动态
 
-       const optionsData = this.optionsData;
 
-       optionsData.dataType == "staticData"
 
-         ? this.staticDataFn(optionsData.staticData, optionsSetup)
 
-         : this.dynamicDataFn(
 
-             optionsData.dynamicData,
 
-             optionsData.refreshTime,
 
-             optionsSetup
 
-           );
 
-     },
 
-     //去重
 
-     setUnique(arr) {
 
-       let newArr = [];
 
-       arr.forEach((item) => {
 
-         return newArr.includes(item) ? "" : newArr.push(item);
 
-       });
 
-       return newArr;
 
-     },
 
-     //静态数据
 
-     staticDataFn(val) {
 
-       const optionsSetup = this.optionsSetup;
 
-       //颜色
 
-       const customColor = optionsSetup.customColor;
 
-       const arrColor = [];
 
-       for (let i = 0; i < customColor.length; i++) {
 
-         arrColor.push(customColor[i].color);
 
-       }
 
-       //数据
 
-       const series = [];
 
-       let xAxisList = [];
 
-       let yAxisList = [];
 
-       const legendName = [];
 
-       for (const i in val) {
 
-         xAxisList[i] = val[i].axis;
 
-         yAxisList[i] = val[i].name;
 
-       }
 
-       xAxisList = this.setUnique(xAxisList);
 
-       yAxisList = this.setUnique(yAxisList);
 
-       for (const i in yAxisList) {
 
-         const data = new Array(xAxisList.length).fill(0);
 
-         for (const j in xAxisList) {
 
-           for (const k in val) {
 
-             if (val[k].name == yAxisList[i]) {
 
-               if (val[k].axis == xAxisList[j]) {
 
-                 data[j] = val[k].data;
 
-               }
 
-             }
 
-           }
 
-         }
 
-         series.push({
 
-           name: yAxisList[i],
 
-           type: "line",
 
-           data: data,
 
-           width: optionsSetup.lineWidth,
 
-           symbol: optionsSetup.symbol,
 
-           showSymbol: optionsSetup.markPoint,
 
-           symbolSize: optionsSetup.pointSize,
 
-           smooth: optionsSetup.smoothCurve,
 
-           // 线条
 
-           lineStyle: {
 
-             color: arrColor[i],
 
-             width: optionsSetup.lineWidth,
 
-           },
 
-           //点
 
-           itemStyle: {
 
-             color: arrColor[i],
 
-           },
 
-           areaStyle: this.getOptionArea(),
 
-           //标题部分
 
-           label: {
 
-             show: optionsSetup.isShow,
 
-             position: "top",
 
-             distance: 10,
 
-             fontSize: optionsSetup.fontSize,
 
-             color: optionsSetup.subTextColor,
 
-             fontWeight: optionsSetup.fontWeight,
 
-           },
 
-         });
 
-         legendName.push(yAxisList[i]);
 
-       }
 
-       this.options.series = series;
 
-       if (optionsSetup.verticalShow) {
 
-         this.options.xAxis.data = [];
 
-         this.options.yAxis.data = xAxisList;
 
-         this.options.xAxis.type = "value";
 
-         this.options.yAxis.type = "category";
 
-       } else {
 
-         this.options.xAxis.data = xAxisList;
 
-         this.options.yAxis.data = [];
 
-         this.options.xAxis.type = "category";
 
-         this.options.yAxis.type = "value";
 
-       }
 
-       this.options.legend["data"] = legendName;
 
-       this.setOptionsLegendName(legendName);
 
-     },
 
-     // 动态数据
 
-     dynamicDataFn(val, refreshTime, optionsSetup) {
 
-       if (!val) return;
 
-       if (this.ispreview) {
 
-         this.getEchartData(val, optionsSetup);
 
-         this.flagInter = setInterval(() => {
 
-           this.getEchartData(val, optionsSetup);
 
-         }, refreshTime);
 
-       } else {
 
-         this.getEchartData(val, optionsSetup);
 
-       }
 
-     },
 
-     getEchartData(val, optionsSetup) {
 
-       const data = this.queryEchartsData(val);
 
-       data.then((res) => {
 
-         this.renderingFn(optionsSetup, res);
 
-       });
 
-     },
 
-     renderingFn(optionsSetup, val) {
 
-       //颜色
 
-       const customColor = optionsSetup.customColor;
 
-       const arrColor = [];
 
-       for (let i = 0; i < customColor.length; i++) {
 
-         arrColor.push(customColor[i].color);
 
-       }
 
-       // x轴
 
-       if (optionsSetup.verticalShow) {
 
-         this.options.xAxis.data = [];
 
-         this.options.yAxis.data = val.xAxis;
 
-         this.options.xAxis.type = "value";
 
-         this.options.yAxis.type = "category";
 
-       } else {
 
-         this.options.xAxis.data = val.xAxis;
 
-         this.options.yAxis.data = [];
 
-         this.options.xAxis.type = "category";
 
-         this.options.yAxis.type = "value";
 
-       }
 
-       const series = [];
 
-       const legendName = [];
 
-       for (const i in val.series) {
 
-         if (val.series[i].type == "line") {
 
-           series.push({
 
-             name: val.series[i].name,
 
-             type: "line",
 
-             data: val.series[i].data,
 
-             width: optionsSetup.lineWidth,
 
-             symbol: optionsSetup.symbol,
 
-             showSymbol: optionsSetup.markPoint,
 
-             symbolSize: optionsSetup.pointSize,
 
-             symbolColor: arrColor[i],
 
-             smooth: optionsSetup.smoothCurve,
 
-             // 线条
 
-             lineStyle: {
 
-               color: arrColor[i],
 
-               width: optionsSetup.lineWidth,
 
-             },
 
-             //点
 
-             itemStyle: {
 
-               color: arrColor[i],
 
-             },
 
-             areaStyle: this.getOptionArea(),
 
-             // 标题部分
 
-             label: {
 
-               show: optionsSetup.isShow,
 
-               position: "top",
 
-               distance: 10,
 
-               fontSize: optionsSetup.fontSize,
 
-               color: optionsSetup.subTextColor,
 
-               fontWeight: optionsSetup.fontWeight,
 
-             },
 
-           });
 
-         }
 
-         legendName.push(val.series[i].name);
 
-       }
 
-       this.options.series = series;
 
-       this.options.legend["data"] = legendName;
 
-       this.setOptionsLegendName(legendName);
 
-     },
 
-   },
 
- };
 
- </script>
 
- <style scoped lang="scss">
 
- .echarts {
 
-   width: 100%;
 
-   height: 100%;
 
-   overflow: hidden;
 
- }
 
- </style>
 
 
  |