Compare commits
2 Commits
8c3b393265
...
56a9798605
Author | SHA1 | Date | |
---|---|---|---|
56a9798605 | |||
9b1407b314 |
|
@ -309,7 +309,7 @@ import { getFonts } from '../../../common/globalFont';
|
|||
// 给订单创建时间加上30分钟
|
||||
const add30Minutes = (createdTime) => {
|
||||
const date = parseDate(createdTime);
|
||||
date.setMinutes(date.getMinutes() + 31); // 加上30分钟
|
||||
date.setMinutes(date.getMinutes() + 2); // 加上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() + 31); // 加上30分钟
|
||||
date.setMinutes(date.getMinutes() + 2); // 加上30分钟
|
||||
return Math.floor(date.getTime() / 1000); // 返回时间戳(秒)
|
||||
};
|
||||
|
||||
|
|
|
@ -281,7 +281,7 @@
|
|||
orderType: 'service',
|
||||
userName: userInfo.userName,
|
||||
contactsId: contactRealInfo.value.id, //联系人信息id
|
||||
couponId: null, //优惠卷id
|
||||
couponId: useCouponId.value, //优惠卷id
|
||||
note: note.value,
|
||||
orderItemMainInfoAddRequestList: toRaw(postCartArr.value)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user