Ver código fonte

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

戴艳蓉 3 anos atrás
pai
commit
501256c993

Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
dist/index.html


Diferenças do arquivo suprimidas por serem muito extensas
+ 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: {
       pickerOptions1: {
         disabledDate: (time) => {
         disabledDate: (time) => {
           if (this.endTime != null && this.endTime != "" && 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: {
       pickerOptions2: {
         disabledDate: (time) => {
         disabledDate: (time) => {
           if (this.startTime != null && this.startTime != "" && time) {
           if (this.startTime != null && this.startTime != "" && time) {
-            return time.getTime() <= new Date(this.startTime).valueOf();
+            return time.getTime() < new Date(this.startTime).valueOf();
           }
           }
         },
         },
       },
       },

Alguns arquivos não foram mostrados porque muitos arquivos mudaram nesse diff