const optionValue = option[valueField as 'value'] const isSelected = multiple ? (modelValue && modelValue.indexOf(optionValue) > -1) : modelValue === optionValue const isVisible = !isGroup || isOptionVisible(option) const isDisabled = checkOptionDisabled(isSelected, option, group) cons...
* @param columnOrField 列对象或字段名 @@ -720,6 +730,7 @@ export interface TablePrivateMethods<D = VxeTableDataRow> { cacheRowMap(isSource?: boolean): void saveCustomResizable(isReset?: boolean): void saveCustomVisible(): void saveCustomFixed(): void analyColumnWidth(): void checkSelec...