瀏覽代碼

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

戴艳蓉 3 年之前
父節點
當前提交
501256c993

文件差異過大導致無法顯示
+ 0 - 0
dist/index.html


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/chunk-33883907.73e851fb.js


二進制
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();
           }
         },
       },

部分文件因文件數量過多而無法顯示