From 4ef4370755fa770ad348f2a7d32371666521d517 Mon Sep 17 00:00:00 2001 From: dshclm <3321914460@qq.com> Date: Sun, 29 Sep 2024 08:52:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/templates/system/checkReport/add.html | 10 ++++++++++ .../resources/templates/system/checkReport/edit.html | 10 ++++++++++ 2 files changed, 20 insertions(+) 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}]]