diff --git a/src/views/administrative/appointmentEdit.vue b/src/views/administrative/appointmentEdit.vue index 1f36910..5902dd2 100644 --- a/src/views/administrative/appointmentEdit.vue +++ b/src/views/administrative/appointmentEdit.vue @@ -214,6 +214,7 @@ @@ -448,6 +449,14 @@ data.deptChecked=true; } } + const currentDate =() => { + const now = new Date(); + const year = now.getFullYear(); + const month = (now.getMonth() + 1).toString().padStart(2, '0'); + const day = now.getDate().toString().padStart(2, '0'); + data.currentDate = [year, month, day] + data.minDate = new Date(year, month-1, day); + } const dataFillIn = (id) => { getByIdToDataFillIn(id,success =>{ @@ -682,7 +691,7 @@ nameCorrect(); // 数据填充 dataFillIn(route?.query?.id); - + currentDate() // getLinkageByValueAndParentId("check_item", "100"); diff --git a/src/views/enforce/enforcementPlanAdd.vue b/src/views/enforce/enforcementPlanAdd.vue index 4a35607..35c404d 100644 --- a/src/views/enforce/enforcementPlanAdd.vue +++ b/src/views/enforce/enforcementPlanAdd.vue @@ -871,8 +871,8 @@ position: absolute; top: 0.05rem; right: 0; - color: #1367fe; font-size: 0.3rem; + color: #fb710b !important; } .down-mod i { diff --git a/src/views/enforce/enforcementPlanBase.vue b/src/views/enforce/enforcementPlanBase.vue index 92f1a6c..6f280d4 100644 --- a/src/views/enforce/enforcementPlanBase.vue +++ b/src/views/enforce/enforcementPlanBase.vue @@ -54,7 +54,7 @@ const data = reactive({ value: '0' }, { - title: '行政检查计划', + title: '查询检查计划', value: '1' }, ],