Commit fa0dbc6ef5c7c530901df8e1443171101b510202

Authored by qianbao
1 parent aa47f1aa

1、添加锥形柱图

src/views/bigscreenDesigner/designer/tools/configure/barCharts/widget-bar-compare.js
... ... @@ -765,7 +765,7 @@ export const widgetBarCompare = {
765 765 name: 'width',
766 766 required: false,
767 767 placeholder: '该容器在1920px大屏中的宽度',
768   - value: 500,
  768 + value: 400,
769 769 },
770 770 {
771 771 type: 'el-input-number',
... ... @@ -773,7 +773,7 @@ export const widgetBarCompare = {
773 773 name: 'height',
774 774 required: false,
775 775 placeholder: '该容器在1080px大屏中的高度',
776   - value: 250,
  776 + value: 200,
777 777 },
778 778 ],
779 779 }
... ...
src/views/bigscreenDesigner/designer/tools/configure/barCharts/widget-bar-stack.js
... ... @@ -719,7 +719,7 @@ export const widgetBarStack = {
719 719 name: 'width',
720 720 required: false,
721 721 placeholder: '该容器在1920px大屏中的宽度',
722   - value: 500,
  722 + value: 400,
723 723 },
724 724 {
725 725 type: 'el-input-number',
... ... @@ -727,7 +727,7 @@ export const widgetBarStack = {
727 727 name: 'height',
728 728 required: false,
729 729 placeholder: '该容器在1080px大屏中的高度',
730   - value: 250,
  730 + value: 200,
731 731 },
732 732 ],
733 733 }
... ...
src/views/bigscreenDesigner/designer/tools/configure/barCharts/widget-capsule-chart.js
1 1 /*
2   - * @Descripttion: DIV图层次
  2 + * @Descripttion: 胶囊柱图
3 3 */
4 4 export const widgetCapsuleChart = {
5 5 code: 'widget-capsule-chart',
... ... @@ -133,7 +133,7 @@ export const widgetCapsuleChart = {
133 133 name: 'width',
134 134 required: false,
135 135 placeholder: '该容器在1920px大屏中的宽度',
136   - value: 800,
  136 + value: 400,
137 137 },
138 138 {
139 139 type: 'el-input-number',
... ... @@ -141,7 +141,7 @@ export const widgetCapsuleChart = {
141 141 name: 'height',
142 142 required: false,
143 143 placeholder: '该容器在1080px大屏中的高度',
144   - value: 600,
  144 + value: 200,
145 145 },
146 146 ],
147 147 }
... ...
src/views/bigscreenDesigner/designer/tools/configure/bubbleChars/widget-bubble-chart.js
1 1 /*
2   - * @Descripttion: DIV图层次
  2 + * @Descripttion: 气泡图
3 3 */
4 4 export const widgetBubblechart = {
5 5 code: 'widget-bubble-chart',
6   - type: 'html',
  6 + type: 'bubble',
7 7 tabName: '图层',
8 8 label: '气泡图',
9 9 icon: 'icontupian1',
... ...
src/views/bigscreenDesigner/designer/tools/configure/funnelCharts/widget-conical-column-chart.js
... ... @@ -16,7 +16,7 @@ export const widgetConicalColumnChart = {
16 16 name: 'layerName',
17 17 required: false,
18 18 placeholder: '',
19   - value: '漏斗图',
  19 + value: '锥形柱图',
20 20 },
21 21 {
22 22 type: 'vue-color',
... ... @@ -187,7 +187,7 @@ export const widgetConicalColumnChart = {
187 187 name: 'width',
188 188 required: false,
189 189 placeholder: '该容器在1920px大屏中的宽度',
190   - value: 500,
  190 + value: 400,
191 191 },
192 192 {
193 193 type: 'el-input-number',
... ... @@ -195,7 +195,7 @@ export const widgetConicalColumnChart = {
195 195 name: 'height',
196 196 required: false,
197 197 placeholder: '该容器在1080px大屏中的高度',
198   - value: 250,
  198 + value: 200,
199 199 },
200 200 ],
201 201 }
... ...