This commit is contained in:
qsh
2024-12-30 17:42:54 +08:00
parent 7bb3a74095
commit 288770adce

View File

@@ -12,6 +12,7 @@
<el-date-picker
v-model="form.effectiveDate"
type="date"
:disabled="form.id"
format="YYYY-MM-DD"
value-format="YYYY-MM-DD"
placeholder="选择日期时间"
@@ -150,15 +151,17 @@ async function open(type, val) {
}
}
getOptions()
const checkedCount = form.value.examinedUserIdList?.length || 0
isIndeterminate.value = checkedCount > 0 && checkedCount < employeeOptions.value.length
}
function getOptions() {
KpiApi.getKpiEmployees().then((data) => {
employeeOptions.value = data
handleCheckAllChange(true)
checkAll.value = true
if (formType.value == 'update') {
handleCheckedChange(form.value.examinedUserIdList)
} else {
handleCheckAllChange(true)
checkAll.value = true
}
})
}