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