Compare commits
No commits in common. "56a97986058080ddf6332fc851a58f79109334b0" and "8c3b39326581a8e7ec48b7e922457b44bbc8306e" have entirely different histories.
56a9798605
...
8c3b393265
|
@ -309,7 +309,7 @@ import { getFonts } from '../../../common/globalFont';
|
|||
// 给订单创建时间加上30分钟
|
||||
const add30Minutes = (createdTime) => {
|
||||
const date = parseDate(createdTime);
|
||||
date.setMinutes(date.getMinutes() + 2); // 加上30分钟
|
||||
date.setMinutes(date.getMinutes() + 31); // 加上30分钟
|
||||
return Math.floor(date.getTime() / 1000); // 返回时间戳(秒)
|
||||
};
|
||||
|
||||
|
|
|
@ -413,7 +413,7 @@ const confirm =()=> { //确认收货方法
|
|||
// 给订单创建时间加上30分钟
|
||||
const add30Minutes = (createdTime) => {
|
||||
const date = parseDate(createdTime);
|
||||
date.setMinutes(date.getMinutes() + 2); // 加上30分钟
|
||||
date.setMinutes(date.getMinutes() + 31); // 加上30分钟
|
||||
return Math.floor(date.getTime() / 1000); // 返回时间戳(秒)
|
||||
};
|
||||
|
||||
|
|
|
@ -281,7 +281,7 @@
|
|||
orderType: 'service',
|
||||
userName: userInfo.userName,
|
||||
contactsId: contactRealInfo.value.id, //联系人信息id
|
||||
couponId: useCouponId.value, //优惠卷id
|
||||
couponId: null, //优惠卷id
|
||||
note: note.value,
|
||||
orderItemMainInfoAddRequestList: toRaw(postCartArr.value)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user