diff --git a/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html b/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html index e489a92..c963a86 100644 --- a/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html +++ b/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html @@ -75,6 +75,7 @@ placeholder="选择日期" v-model="postForm.checkEndTime" style="width: 100%;" + :picker-options="pickerOptionsEnd" > @@ -237,6 +238,15 @@ ] }, }, + computed: { + pickerOptionsEnd() { + return { + disabledDate: (time) => { + return time.getTime() < new Date(this.postForm.checkStartTime).getTime(); + } + }; + } + }, mounted(){ // 初始化地市列表 this.getCityList(); diff --git a/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html b/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html index 2567913..2c3532e 100644 --- a/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html +++ b/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html @@ -75,6 +75,7 @@ placeholder="选择日期" v-model="postForm.checkEndTime" style="width: 100%;" + :picker-options="pickerOptionsEnd" > @@ -244,6 +245,15 @@ ] }, }, + computed: { + pickerOptionsEnd() { + return { + disabledDate: (time) => { + return time.getTime() < new Date(this.postForm.checkStartTime).getTime(); + } + }; + } + }, mounted(){ if([[${tdCheckReportDTO}]].checkTypeDTOS){ this.postForm = [[${tdCheckReportDTO}]]