export default class DSJDropDown { columnEvents = []; //列事件数组 label = '更多'; //下拉菜单标签内容 opMaxCount = -1; //前置最大数量 row = {}; //行对象 column = {}; //列对象 update = (opt?:any) => { //更新配置 Object.assign(this,opt); } constructor(opt?: any) { this.update(opt); } }