mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-13 01:21:58 +00:00
Link: https://code.aone.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/codereview/3642343 * docs: add dataSource demo * docs: i18n demo
37 lines
822 B
JavaScript
37 lines
822 B
JavaScript
export default {
|
|
"componentName": "Page",
|
|
"fileName": "dataSource",
|
|
"props": {},
|
|
"children": [{
|
|
"componentName": "Div",
|
|
"props": {},
|
|
"children": [{
|
|
"componentName": "Text",
|
|
"props": {
|
|
"text": "{{this.item.title}}"
|
|
}
|
|
}, {
|
|
"componentName": "Switch",
|
|
"props": {
|
|
"checkedChildren": "开",
|
|
"unCheckedChildren": "关",
|
|
"checked": "{{this.item.done}}"
|
|
}
|
|
}],
|
|
"loop": "{{this.dataSourceMap.todos.data}}"
|
|
}],
|
|
"dataSource": {
|
|
"list": [{
|
|
"id": "todos",
|
|
"isInit": true,
|
|
"type": "jsonp",
|
|
"options": {
|
|
"method": "GET",
|
|
"uri": "https://mocks.alibaba-inc.com/mock/D8iUX7zB/todo_getAll"
|
|
},
|
|
"dataHandler": function dataHandler(data) {
|
|
return data.data;
|
|
}
|
|
}]
|
|
}
|
|
} |