Compare commits

...

2 Commits

Author SHA1 Message Date
56a9798605 Merge remote-tracking branch 'origin/master' 2025-03-04 16:28:08 +08:00
9b1407b314 合完了 2025-03-04 16:27:54 +08:00
3 changed files with 3 additions and 3 deletions

View File

@ -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); //
};

View File

@ -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); //
};

View File

@ -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)
}