Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
92fe2bee8e
|
@ -393,7 +393,7 @@
|
||||||
// 给订单创建时间加上30分钟
|
// 给订单创建时间加上30分钟
|
||||||
const add30Minutes = (createdTime) => {
|
const add30Minutes = (createdTime) => {
|
||||||
const date = parseDate(createdTime);
|
const date = parseDate(createdTime);
|
||||||
date.setMinutes(date.getMinutes() + 1); // 加上30分钟
|
date.setMinutes(date.getMinutes() + 15); // 加上30分钟
|
||||||
return Math.floor(date.getTime() / 1000); // 返回时间戳(秒)
|
return Math.floor(date.getTime() / 1000); // 返回时间戳(秒)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -374,7 +374,7 @@
|
||||||
// 给订单创建时间加上30分钟
|
// 给订单创建时间加上30分钟
|
||||||
const add30Minutes = (createdTime) => {
|
const add30Minutes = (createdTime) => {
|
||||||
const date = parseDate(createdTime);
|
const date = parseDate(createdTime);
|
||||||
date.setMinutes(date.getMinutes() + 1); // 加上30分钟
|
date.setMinutes(date.getMinutes() + 15); // 加上30分钟
|
||||||
return Math.floor(date.getTime() / 1000); // 返回时间戳(秒)
|
return Math.floor(date.getTime() / 1000); // 返回时间戳(秒)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -540,7 +540,7 @@
|
||||||
// 给订单创建时间加上30分钟
|
// 给订单创建时间加上30分钟
|
||||||
const add30Minutes = (createdTime) => {
|
const add30Minutes = (createdTime) => {
|
||||||
const date = parseDate(createdTime);
|
const date = parseDate(createdTime);
|
||||||
date.setMinutes(date.getMinutes() + 1); // 加上30分钟
|
date.setMinutes(date.getMinutes() + 15); // 加上30分钟
|
||||||
return Math.floor(date.getTime() / 1000); // 返回时间戳(秒)
|
return Math.floor(date.getTime() / 1000); // 返回时间戳(秒)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user