## 带标签的滑块

添加`defaultValue`属性就能设置模型的属性值


```json
{
    "debug": true,
    "body": [
        {
            "type": "container",
            "model": "default",
            "children": [
                {
                    "type": "slider",
                    "name": "demo",
                    "defaultValue": 33,
                    "marks" : {
                        "0": "按日查看",
                        "33": "按月查看",
                        "66": "按季度查看",
                        "100": "按年查看"
                    },
                    "step": null,
                    "tipFormat" : null
                }
            ]
        }
    ]
}
```