...
|
...
|
@@ -52,6 +52,12 @@ type QuarterSeries struct { |
|
|
SeriesValue string `json:"seriesValue"`
|
|
|
}
|
|
|
|
|
|
type Divider struct {
|
|
|
SelectedIdx string `json:"selectedIdx,optional,omitempty"` // 选择的分割线样式
|
|
|
TextSwitch bool `json:"textSwitch,optional,omitempty"` // 是否展示组件文本
|
|
|
Text string `json:"text"` // 组件文本内容
|
|
|
}
|
|
|
|
|
|
type Title struct {
|
|
|
TitleSwitch bool `json:"titleSwitch,optional"` // 组件标题开关
|
|
|
IntroduceSwitch bool `json:"introduceSwitch,optional"` // 组件说明开关
|
...
|
...
|
|