## 不可用状态

添加`disabled`属性来让按钮不能点击

```json
{
    "body": [
        {
            "type": "button",
            "text": "clickable button"
        },
        {
            "type": "button",
            "text": "disabled button",
            "disabled": true
        }
    ]
}
```