Commit c5acd2c6cd19e9a73253946fb2d8fed063fb5045
1 parent
222cc479
1、饼图添加过程返回自定义颜色
Showing
2 changed files
with
4 additions
and
0 deletions
src/views/bigscreenDesigner/designer/widget/temp.vue
| ... | ... | @@ -50,6 +50,7 @@ import widgetConicalColumnChart from "./funnel/widgetConicalColumnChart"; |
| 50 | 50 | import widgetDigitalFlopSingle from "./text/widgetDigitalFlopSingle"; |
| 51 | 51 | import widgetSvg from "./div/widgetSvg"; |
| 52 | 52 | import widgetRadioPiechart from "./pie/widgetRadioPiechart"; |
| 53 | +import widgetHtmlSlider from "./div/widgetHtmlSlider"; | |
| 53 | 54 | |
| 54 | 55 | export default { |
| 55 | 56 | name: "WidgetTemp", |
| ... | ... | @@ -99,6 +100,7 @@ export default { |
| 99 | 100 | widgetDigitalFlopSingle, |
| 100 | 101 | widgetSvg, |
| 101 | 102 | widgetRotateRanking, |
| 103 | + widgetHtmlSlider, | |
| 102 | 104 | }, |
| 103 | 105 | model: { |
| 104 | 106 | prop: "value", | ... | ... |
src/views/bigscreenDesigner/designer/widget/widget.vue
| ... | ... | @@ -61,6 +61,7 @@ import widgetConicalColumnChart from "./funnel/widgetConicalColumnChart"; |
| 61 | 61 | import widgetBorderBoxFloat from "./div/widgetBorderBoxFloat"; |
| 62 | 62 | import widgetDigitalFlopSingle from "./text/widgetDigitalFlopSingle"; |
| 63 | 63 | import widgetSvg from "./div/widgetSvg"; |
| 64 | +import widgetHtmlSlider from "./div/widgetHtmlSlider"; | |
| 64 | 65 | export default { |
| 65 | 66 | name: "Widget", |
| 66 | 67 | components: { |
| ... | ... | @@ -110,6 +111,7 @@ export default { |
| 110 | 111 | widgetSvg, |
| 111 | 112 | widgetRotateRanking, |
| 112 | 113 | widgetRadioPiechart, |
| 114 | + widgetHtmlSlider, | |
| 113 | 115 | }, |
| 114 | 116 | model: { |
| 115 | 117 | prop: "value", | ... | ... |