Compare commits

..

No commits in common. "56a97986058080ddf6332fc851a58f79109334b0" and "8c3b39326581a8e7ec48b7e922457b44bbc8306e" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View File

@ -309,7 +309,7 @@ import { getFonts } from '../../../common/globalFont';
// 30 // 30
const add30Minutes = (createdTime) => { const add30Minutes = (createdTime) => {
const date = parseDate(createdTime); const date = parseDate(createdTime);
date.setMinutes(date.getMinutes() + 2); // 30 date.setMinutes(date.getMinutes() + 31); // 30
return Math.floor(date.getTime() / 1000); // return Math.floor(date.getTime() / 1000); //
}; };

View File

@ -413,7 +413,7 @@ const confirm =()=> { //确认收货方法
// 30 // 30
const add30Minutes = (createdTime) => { const add30Minutes = (createdTime) => {
const date = parseDate(createdTime); const date = parseDate(createdTime);
date.setMinutes(date.getMinutes() + 2); // 30 date.setMinutes(date.getMinutes() + 31); // 30
return Math.floor(date.getTime() / 1000); // return Math.floor(date.getTime() / 1000); //
}; };

View File

@ -281,7 +281,7 @@
orderType: 'service', orderType: 'service',
userName: userInfo.userName, userName: userInfo.userName,
contactsId: contactRealInfo.value.id, //id contactsId: contactRealInfo.value.id, //id
couponId: useCouponId.value, //id couponId: null, //id
note: note.value, note: note.value,
orderItemMainInfoAddRequestList: toRaw(postCartArr.value) orderItemMainInfoAddRequestList: toRaw(postCartArr.value)
} }