浏览代码

批量约单 需限制下不能往后选时间

linwenxin 1 年之前
父节点
当前提交
d33a8d2a12
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      src/views/workOrder/workOrderPool/components/reschedule/index.vue

+ 5 - 0
src/views/workOrder/workOrderPool/components/reschedule/index.vue

@@ -51,6 +51,11 @@ export default {
             style: { width: '100%' },
             placeholder: '请选择',
             'value-format': 'yyyy-MM-dd HH:mm:ss',
+            'picker-options': {
+              disabledDate: time => {
+                return time.getTime() < (Date.now() - 86400000)
+              }
+            }
           },
           formItemAttributes: {
             label: '预约上门日期',