From 98f65f70d321414c1530b04a5d3f4d8acce1b205 Mon Sep 17 00:00:00 2001 From: Rain_ <904416525@qq.com> Date: Wed, 19 Nov 2025 18:22:29 +0800 Subject: [PATCH] =?UTF-8?q?flx:=E4=BF=AE=E6=94=B9=E5=8A=B3=E5=8A=A1?= =?UTF-8?q?=E6=8A=A5=E8=A1=A8=E4=B8=AD=E5=BF=83=E7=9A=84=E5=B7=A5=E6=97=B6?= =?UTF-8?q?=E8=8C=83=E5=9B=B4=E9=BB=98=E8=AE=A4=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../timeSheet/workHoursAbnormalityTable.vue | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/views/projectFront/laborManage/timeSheet/workHoursAbnormalityTable.vue b/src/views/projectFront/laborManage/timeSheet/workHoursAbnormalityTable.vue index 6aca26cc..237c9a7d 100644 --- a/src/views/projectFront/laborManage/timeSheet/workHoursAbnormalityTable.vue +++ b/src/views/projectFront/laborManage/timeSheet/workHoursAbnormalityTable.vue @@ -95,16 +95,13 @@ :controls="false" v-model="queryParams.hourVal_begin" controls-position="right" - :min="0" - :max="queryParams.hourVal_end ? queryParams.hourVal_end : 100" >

-

@@ -241,8 +238,8 @@ export default { workerName: "", month: "", effectiveTime: [], - hourVal_begin: "", - hourVal_end: "", + hourVal_begin: 0, + hourVal_end: 100, }, total: 0, personTypeList: [ @@ -388,8 +385,8 @@ export default { this.queryParams.teamId = ""; this.queryParams.departmentId = ""; this.queryParams.workerName = ""; - this.queryParams.hourVal_begin = ""; - this.queryParams.hourVal_end = ""; + this.queryParams.hourVal_begin = 0; + this.queryParams.hourVal_end = 100; this.queryParams.month = dayjs().format("YYYY-MM"); this.queryParams.effectiveTime = [ dayjs().startOf("month").format("YYYY-MM-DD"),