| | |
| | | _options.push('editType') |
| | | |
| | | if (this.column.editType === 'switch') { |
| | | _options.push('enter', 'footEnter', 'openVal', 'closeVal', 'openText', 'closeText') |
| | | _options.push('enter', 'openVal', 'closeVal', 'openText', 'closeText', 'editField') |
| | | } else if (this.column.editType === 'select') { |
| | | _options.push('required', 'enter', 'footEnter', 'resourceType', 'linkSubField', 'editField') |
| | | _options.push('required', 'enter', 'resourceType', 'linkSubField', 'editField', 'dropdown') |
| | | |
| | | if (this.column.resourceType === '0') { |
| | | _options.push('options') |
| | |
| | | _options.push('dataSource', 'valueField', 'valueText', 'orderBy', 'orderType', 'disableField', 'database') |
| | | } |
| | | } else { |
| | | _options.push('required', 'enter', 'footEnter') |
| | | _options.push('required', 'enter') |
| | | } |
| | | } else if (this.column.type === 'number') { |
| | | _options.push('max', 'min', 'enter', 'footEnter') |
| | | _options.push('max', 'min', 'enter') |
| | | } |
| | | } |
| | | |