Parcourir la source

Merge branch 'sit' of daiyanrong/accout-ui into master

戴艳蓉 il y a 3 ans
Parent
commit
501256c993

Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
dist/index.html


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
dist/static/js/chunk-33883907.73e851fb.js


BIN
dist/static/js/chunk-33883907.fe189a14.js.gz → dist/static/js/chunk-33883907.73e851fb.js.gz


+ 2 - 2
src/components/PeriodDatePicker.vue

@@ -48,14 +48,14 @@ export default {
       pickerOptions1: {
         disabledDate: (time) => {
           if (this.endTime != null && this.endTime != "" && time) {
-            return time.getTime() >= new Date(this.endTime).valueOf();
+            return time.getTime() > new Date(this.endTime).valueOf();
           }
         },
       },
       pickerOptions2: {
         disabledDate: (time) => {
           if (this.startTime != null && this.startTime != "" && time) {
-            return time.getTime() <= new Date(this.startTime).valueOf();
+            return time.getTime() < new Date(this.startTime).valueOf();
           }
         },
       },

Certains fichiers n'ont pas été affichés car il y a eu trop de fichiers modifiés dans ce diff