tfp
Version:
A Web UI framework for TaskBuilder
72 lines (71 loc) • 1.36 kB
JavaScript
export default {
"name": "QrCode",
"comment": "二维码",
"jsFiles": "qrcode.min.js",
"attrs": [
{
"name": "text",
"comment": "文本内容",
"type": "String"
},
{
"name": "width",
"comment": "宽度",
"type": "Int",
"default": 96
},
{
"name": "height",
"comment": "高度",
"type": "Int",
"default": 96
},
{
"name": "colorDark",
"comment": "前景色",
"type": "string",
"default": "#000000"
},
{
"name": "colorLight",
"comment": "背景色",
"type": "String",
"default": "#ffffff"
}
],
"styles": ["position", "margin", "border", "other"],
"defaultStyles": {
},
"events": [
{
"name": "onClick",
"comment": "点击时"
},
{
"name": "onMouseOver",
"comment": "鼠标经过时"
},
{
"name": "onMouseOut",
"comment": "鼠标移出时"
}
],
"methods": [
{
"name": "clear",
"comment": "清除数据"
},
{
"name": "makeCode",
"comment": "重置数据",
"args": [
{
"name": "text",
"comment": "文本内容",
"type": "String",
"required": true
}
]
}
]
}