fix:xtSelect中count_canhandover数量大于零才能被选

This commit is contained in:
shijing 2025-07-25 13:37:40 +08:00
parent 3506255b92
commit 29546b71e7
1 changed files with 2 additions and 1 deletions

View File

@ -56,6 +56,7 @@
v-if="multiple"
type="selection"
width="40"
:selectable="selectable"
:reserve-selection="true"
></el-table-column>
<slot v-if="!isFixOptions"></slot>
@ -89,7 +90,7 @@ const props = defineProps({
});
const emit = defineEmits(["update:modelValue", "update:obj", "update:label", "change"]);
const selectable = (row) => row.count_canhandover?row.count_canhandover>0:true;
// popover
const showPopover = ref(false);
const inputRef = ref();