## 混合情况

```json
{
    "body": [{
        "type": "container",
        "model": "root",
        "data": {
            "name": "root"
        },
        "children": [{
            "type": "container",
            "model": "left-1",
            "data": {
                "name": "left-1"
            },
            "children": [{
                "type": "container",
                "model": "left-1-1",
                "data": {
                    "name": "left-1-1"
                },
                "children": [{
                    "type": "row",
                    "children": [{
                        "type": "text",
                        "text": "helloworld",
                        "trigger": [{
                            "event": "onClick",
                            "targetCustomer": "$this",
                            "params": {
                                "status": "clicked"
                            }
                        }]
                    }]
                }]
            }]
        }]
    }]
}
```
