import * as YvanUI from '../../YvanUIExtend' import { CtlInput } from './CtlInput' import { parseYvanPropChangeVJson } from '../../CtlUtils' import { CtlTextDefault } from '../../CtlDefaultValue' export class CtlText extends CtlInput { static create(module: any, vjson: any): CtlText { const that = new CtlText(vjson) that._module = module _.defaultsDeep(vjson, CtlTextDefault) // 基础属性先执行 that._create(vjson, that) const yvanProp = parseYvanPropChangeVJson(vjson, ['validate']) // 将 yvanProp 合并至当前 Ctl 对象 _.assign(that, yvanProp) _.merge(vjson, that._webixConfig) return that } /** * 获取提示值 */ get suggest(): [any] { if (!this._webix) { return this._webixConfig.suggest } return this._webix.getSuggest() } /** * 设置提示值 */ set suggest(nv: [any]) { if (!this._webix) { this._webixConfig.suggest = nv return } this._webix.define('suggest', nv) this._webix.refresh() } }