订单order_id使用时间戳

This commit is contained in:
xiezhijun
2021-04-06 15:52:26 +08:00
parent ba10d518de
commit 45a47a29a4
4 changed files with 7 additions and 5 deletions

View File

@ -313,11 +313,11 @@ export default {
if (!this.form.orderTime) {
return callback(new Error("请先选择成交时间"));
}
if (
/*if (
dayjs(this.form.startTime).diff(dayjs(this.form.orderTime), "day") < 0
) {
return callback(new Error("开始时间不能先于成交时间"));
}
}*/
callback();
};
const checkOrderTime = (rule, value, callback) => {