This commit is contained in:
BianLzhaoMin 2026-01-30 11:06:38 +08:00
parent 6dde21f261
commit 242c5eef65
1 changed files with 9 additions and 5 deletions

View File

@ -142,7 +142,7 @@
clearable
disabled
style="width: 100%"
placeholder="请选择人员姓名"
placeholder="人员姓名"
v-model="addAndEditForm.userId"
>
<el-option
@ -159,7 +159,7 @@
<el-input
disabled
style="width: 100%"
placeholder="请选择人员姓名后获取"
placeholder="身份证号码"
v-model="addAndEditForm.idNumber"
/>
</el-form-item>
@ -172,7 +172,7 @@
<el-input
disabled
style="width: 100%"
placeholder="请选择人员姓名后获取"
placeholder="所属部门"
v-model="addAndEditForm.orgName"
/>
</el-form-item>
@ -332,8 +332,8 @@ export default {
// 3
if (currentDay > 3) {
// 3
const minDate = new Date(currentYear, currentMonth, 3)
// 1
const minDate = new Date(currentYear, currentMonth, 1)
const maxDate = new Date(today)
maxDate.setHours(23, 59, 59, 999)
return (
@ -483,6 +483,10 @@ export default {
userId: '',
userName: '',
idNumber: '',
orgId: '',
orgName: '',
currentDay: '',
attType: '',
}
this.$refs.addAndEditFormRef.resetFields()
},