diff --git a/src/views/distribution/checkInventoryTask/createTask.vue b/src/views/distribution/checkInventoryTask/createTask.vue index ce8f75c7..a5959ac2 100644 --- a/src/views/distribution/checkInventoryTask/createTask.vue +++ b/src/views/distribution/checkInventoryTask/createTask.vue @@ -453,20 +453,19 @@ export default { */ timeChange(value) { // 当前时间戳 - const _time = new Date().getTime(); - // 检测时间是否小于当前时间 - const _isTime = value.every(item => { - console.log('item.toLocaleString() :>> ', item.toLocaleString()); - return _time < item.getTime(); - }); - if (!_isTime) { - this.form.time = []; - return this.$message({ - type: 'error', - message: '开始时间不能小于当前时间', - }); - } - + // const _time = new Date().getTime(); + // // 检测时间是否小于当前时间 + // const _isTime = value.every(item => { + // console.log('item.toLocaleString() :>> ', item.toLocaleString()); + // return _time < item.getTime(); + // }); + // if (!_isTime) { + // this.form.time = []; + // return this.$message({ + // type: 'error', + // message: '开始时间不能小于当前时间', + // }); + // } // _time.toLocaleTimeString() // console.log('_time.toLocaleTimeString() :>> ', _time.toLocaleString()); }, @@ -766,15 +765,15 @@ export default { this.view = true; console.log(this.view); this.form = row; - console.log(row,'任务信息'); + console.log(row, '任务信息'); console.log(this.$router); this.$router.push({ - path: '/distribution/checkInventoryTask/createTaskfrom', - query: { - id: row.id, - // 其他参数... - } -}); + path: '/distribution/checkInventoryTask/createTaskfrom', + query: { + id: row.id, + // 其他参数... + }, + }); }, /**