redis数据集插件。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
683 B

import { shortcut } from '@core/core';
@shortcut()
export class FormItem extends BI.Widget {
static xtype = 'dec.dcm.connection.plugin.redis.components.form_item'
props = {
name: '',
forms: '',
nameWidth: 100,
}
render () {
return {
type: BI.FloatLeftLayout.xtype,
items: [
{
type: BI.Label.xtype,
cls: 'bi-font-bold',
width: this.options.nameWidth,
textAlign: 'left',
text: `${this.options.name}:`,
},
...this.options.forms,
],
};
}
}