import DSJBase from "../DSJBase/DSJBase"; export default class DSJSearch extends DSJBase { formOption = {}; //表单配置 events = []; //事件数组 eventNextLine = false //事件组是否下一行 maxCountInRow = 0; update = (opt?:any) => { // if (opt.events && opt.events.length > 0) { // opt.events = opt.events.reverse(); // } Object.assign(this,opt,{}); } constructor(opt?: any) { super(opt); this.update(opt); } }