amis/examples/components/Form/Editor.jsx

47 lines
1.3 KiB
React
Raw Normal View History

2019-06-11 17:00:02 +08:00
import React from 'react';
2019-04-30 11:11:25 +08:00
export default {
2019-05-09 18:25:12 +08:00
$schema: "https://houtai.baidu.com/v2/schemas/page.json#",
2019-04-30 11:11:25 +08:00
title: "Editor",
body: [
{
type: "form",
api: "/api/mock2/saveForm?waitSeconds=2",
title: "",
controls: [
{
name: "javascript",
2019-07-25 10:06:22 +08:00
type: "editor",
2019-04-30 11:11:25 +08:00
label: "Javascript",
2019-07-25 10:06:22 +08:00
language: 'javascript',
2019-04-30 11:11:25 +08:00
value: "console.log(1, 2, 3);"
},
{
name: "html",
2019-07-25 10:06:22 +08:00
type: "editor",
language: 'html',
2019-04-30 11:11:25 +08:00
label: "Html",
value: "<html><head><title>Hello</title></head><body><p>world</p></body></html>"
},
{
name: "css",
2019-07-25 10:06:22 +08:00
type: "editor",
language: 'css',
2019-04-30 11:11:25 +08:00
label: "CSS",
value: "body {color: red;}"
2019-07-25 10:06:22 +08:00
},
{
name: "json",
type: "editor",
language: 'json',
label: "JSON",
value: `{"a": 1, "b": 2}`
2019-04-30 11:11:25 +08:00
}
]
}
]
};