Browse Source

取消盘点创建时时间限制

fix_bug_pro20231227
qb 1 year ago
parent
commit
340f29dc45
  1. 33
      src/views/distribution/checkInventoryTask/createTask.vue

33
src/views/distribution/checkInventoryTask/createTask.vue

@ -453,20 +453,19 @@ export default {
*/ */
timeChange(value) { timeChange(value) {
// //
const _time = new Date().getTime(); // const _time = new Date().getTime();
// // //
const _isTime = value.every(item => { // const _isTime = value.every(item => {
console.log('item.toLocaleString() :>> ', item.toLocaleString()); // console.log('item.toLocaleString() :>> ', item.toLocaleString());
return _time < item.getTime(); // return _time < item.getTime();
}); // });
if (!_isTime) { // if (!_isTime) {
this.form.time = []; // this.form.time = [];
return this.$message({ // return this.$message({
type: 'error', // type: 'error',
message: '开始时间不能小于当前时间', // message: '',
}); // });
} // }
// _time.toLocaleTimeString() // _time.toLocaleTimeString()
// console.log('_time.toLocaleTimeString() :>> ', _time.toLocaleString()); // console.log('_time.toLocaleTimeString() :>> ', _time.toLocaleString());
}, },
@ -766,15 +765,15 @@ export default {
this.view = true; this.view = true;
console.log(this.view); console.log(this.view);
this.form = row; this.form = row;
console.log(row,'任务信息'); console.log(row, '任务信息');
console.log(this.$router); console.log(this.$router);
this.$router.push({ this.$router.push({
path: '/distribution/checkInventoryTask/createTaskfrom', path: '/distribution/checkInventoryTask/createTaskfrom',
query: { query: {
id: row.id, id: row.id,
// ... // ...
} },
}); });
}, },
/** /**

Loading…
Cancel
Save