diff --git a/common/global.js b/common/global.js
index 5f6caf2..7812dec 100644
--- a/common/global.js
+++ b/common/global.js
@@ -12,12 +12,6 @@ export const stateList = [
msg: '等待卖家发货',
tips: '耐心等待工艺品发货~'
},
- {
- state: '退款中',
- img: '',
- msg: '退款审核中',
- tips: '请君耐心等待退款结果'
- },
{
state: '已退款',
img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FlPnvgqCp-yituikuan.png',
@@ -67,7 +61,7 @@ export const serviceStateList = [
tips: '希望下次能让君满意'
},
{
- state: '已完成',
+ state: '交易成功',
img: '',
msg: '订单完成,感谢您的支持',
tips: '感谢您的支持'
diff --git a/common/globalFunction.js b/common/globalFunction.js
index 954d910..73f6150 100644
--- a/common/globalFunction.js
+++ b/common/globalFunction.js
@@ -9,4 +9,11 @@ export const dealResult = (res) => {
return false
}
return response.data
+}
+
+
+
+export const JudgeIsNullity = (val) => {
+ if (val === null || val === undefined || val === '') return true
+ return false
}
\ No newline at end of file
diff --git a/pages.json b/pages.json
index 554c210..f62dde3 100644
--- a/pages.json
+++ b/pages.json
@@ -1,5 +1,33 @@
{
"pages": [
+ {
+ "path" : "pages/my-order/myGeneralOrderDetail/myGeneralOrderDetail",
+ "style" :
+ {
+ "navigationBarTitleText" : ""
+ }
+ },
+ {
+ "path" : "pages/my-order/myServiceOrderDetail/myServiceOrderDetail",
+ "style" :
+ {
+ "navigationBarTitleText" : ""
+ }
+ },
+ {
+ "path" : "pages/my-order/myOrderList/myOrderList",
+ "style" :
+ {
+ "navigationBarTitleText" : ""
+ }
+ },
+ {
+ "path" : "pages/my-order/researchOrder/researchOrder",
+ "style" :
+ {
+ "navigationBarTitleText" : ""
+ }
+ },
{
"path" : "pages/home/home",
"style" :
diff --git a/pages/book/photoProductsOrderDetail/photoProductsOrderDetail.vue b/pages/book/photoProductsOrderDetail/photoProductsOrderDetail.vue
index 169c246..c6d1129 100644
--- a/pages/book/photoProductsOrderDetail/photoProductsOrderDetail.vue
+++ b/pages/book/photoProductsOrderDetail/photoProductsOrderDetail.vue
@@ -250,7 +250,7 @@
content: '支付失败,原因为:' + e.errMsg,
showCancel: false
})
- console.log('e.errMsg--->',e.errMsg);
+ // console.log('e.errMsg--->',e.errMsg);
},
complete() {
uni.redirectTo({
@@ -285,7 +285,7 @@
}
}
-
+
@@ -445,7 +445,15 @@
diff --git a/pages/my-order/myOrderList/myOrderList.vue b/pages/my-order/myOrderList/myOrderList.vue
new file mode 100644
index 0000000..d5006fb
--- /dev/null
+++ b/pages/my-order/myOrderList/myOrderList.vue
@@ -0,0 +1,760 @@
+
+
+
+
+
+
+
+ 搜索订单
+
+
+
+
+ 全部
+
+
+
+ 待支付
+
+
+
+ 待发货
+
+
+
+ 待收货
+
+
+
+ 已退款
+
+
+
+
+
+
+
+ 泠珑水月阁
+
+ {{ item.countdown }}
+ {{ item.orderStatus }}
+
+
+
+ 订单编号:
+ {{ item.orderNumber }}
+
+
+
+
+
+
+ {{ subItem.goodSnapshot.name }}
+ 已选时间:{{ subItem.reservationDate }} {{ getWeekday(subItem.reservationDate) }}
+ {{ subItem.timeSlot }}
+
+
+ ¥{{ subItem.goodSnapshot.price.toFixed(2) }}
+
+
+ ×{{ subItem.quantity }}
+
+
+
+
+ 已优惠:
+ ¥{{ item.couponSnapshot === null ? (0).toFixed(2) : item.couponSnapshot.conditionAmount.toFixed(2) }}
+
+
+ 应付款:
+ ¥{{ item.totalAmount.toFixed(2) }}
+
+
+
+
+
+ 取消订单
+
+
+
+
+
+ 删除订单
+
+
+
+ 去付款
+
+
+
+ 查看物流
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/my-order/myServiceOrderDetail/myServiceOrderDetail.vue b/pages/my-order/myServiceOrderDetail/myServiceOrderDetail.vue
new file mode 100644
index 0000000..ad92da5
--- /dev/null
+++ b/pages/my-order/myServiceOrderDetail/myServiceOrderDetail.vue
@@ -0,0 +1,616 @@
+
+
+
+
+
+
+ {{ orderStatusObj.msg }}
+ {{ orderStatusObj.tips }}
+
+
+
+
+ {{ contactObj.name }} {{ contactObj.phone }}
+
+
+
+
+
+
+ {{ item.goodSnapshot.name }}
+ 已选时间:{{ item.reservationDate }} {{ getWeekday(item.reservationDate) }}
+ {{ item.timeSlot }}
+ ¥{{ item.goodSnapshot.price.toFixed(2) }}
+
+ × {{ item.quantity }}
+
+
+
+ 商品金额
+ ¥{{ allAmount.toFixed(2) }}
+
+
+ 优惠券
+ ¥{{ couponAmount.toFixed(2) }}
+
+
+ 应付款:
+
+ ¥
+ {{ order.totalAmount.toFixed(2) }}
+
+
+
+ 买家留言
+
+
+ {{ order.note }}
+
+
+
+
+ 创建时间:
+ {{ order.createTime }}
+
+
+ 订单编号:
+
+ {{ order.orderNumber }}
+
+ 复制
+
+
+
+
+
+
+
+
+
+ 应付款:
+
+ ¥
+ {{ order.totalAmount.toFixed(2) }}
+
+
+
+
+ 去支付
+
+
+
+ 删除订单
+
+
+
+
+
+
+
+
+
diff --git a/pages/my-order/researchOrder/researchOrder.vue b/pages/my-order/researchOrder/researchOrder.vue
new file mode 100644
index 0000000..228197e
--- /dev/null
+++ b/pages/my-order/researchOrder/researchOrder.vue
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/order/product-waitpay/product-waitpay.vue b/pages/order/product-waitpay/product-waitpay.vue
index b74001f..e22d0fd 100644
--- a/pages/order/product-waitpay/product-waitpay.vue
+++ b/pages/order/product-waitpay/product-waitpay.vue
@@ -411,17 +411,13 @@ const wxPay = async( oid )=> { //传入订单id
showCancel: false
})
uni.redirectTo({
- url: '/pages/order/product-paysuccess/product-paysuccess?oid=' + JSON.stringify(oid)
+ url: '/pages/my-order/myGeneralOrderDetail/myGeneralOrderDetail?id=' + oid
})
console.log('支付成功res--->',res);
},
fail(e) {
- // uni.showModal({
- // content: '支付失败,原因为:' + e.errMsg,
- // showCancel: false
- // })
uni.redirectTo({
- url: '/pages/order/product-paysuccess/product-paysuccess?oid=' + JSON.stringify(oid)
+ url: '/pages/my-order/myGeneralOrderDetail/myGeneralOrderDetail?id=' + oid
})
console.log('e.errMsg--->',e.errMsg);
}
diff --git a/pages/order/serviceWaitPay/serviceWaitPay.vue b/pages/order/serviceWaitPay/serviceWaitPay.vue
index 5567bf3..a97a752 100644
--- a/pages/order/serviceWaitPay/serviceWaitPay.vue
+++ b/pages/order/serviceWaitPay/serviceWaitPay.vue
@@ -395,13 +395,13 @@
showCancel: false
})
uni.redirectTo({
- url: '/pages/order/service-paystatus/service-paystatus?oid=' + JSON.stringify(oid)
+ url: '/pages/my-order/myServiceOrderDetail/myServiceOrderDetail?id=' + oid
})
console.log('支付成功res--->',res);
},
fail(e) {
uni.redirectTo({
- url: '/pages/order/service-paystatus/service-paystatus?oid=' + JSON.stringify(oid)
+ url: '/pages/my-order/myServiceOrderDetail/myServiceOrderDetail?id=' + oid
})
console.log('e.errMsg--->',e.errMsg);
}
diff --git a/pages/order/singleGoodOrder/singleGoodOrder.vue b/pages/order/singleGoodOrder/singleGoodOrder.vue
index 1256859..4aab560 100644
--- a/pages/order/singleGoodOrder/singleGoodOrder.vue
+++ b/pages/order/singleGoodOrder/singleGoodOrder.vue
@@ -515,17 +515,17 @@ const wxPay = async ( oid )=> { //传入订单id
showCancel: false
})
uni.redirectTo({
- url: '/pages/order/product-paysuccess/product-paysuccess?oid=' + JSON.stringify(oid)
+ url: '/pages/my-order/myGeneralOrderDetail/myGeneralOrderDetail?id=' + oid
})
console.log('支付成功res--->',res);
},
fail(e) {
uni.showModal({
- content: '支付失败,原因为:' + e.errMsg,
+ content: '支付失败',
showCancel: false
})
uni.redirectTo({
- url: '/pages/order/product-paysuccess/product-paysuccess?oid=' + JSON.stringify(oid)
+ url: '/pages/my-order/myGeneralOrderDetail/myGeneralOrderDetail?id=' + oid
})
console.log('e.errMsg--->',e.errMsg);
}
diff --git a/pages/order/singleServiceWait/singleServiceWait.vue b/pages/order/singleServiceWait/singleServiceWait.vue
index 6ac783f..b7c51fa 100644
--- a/pages/order/singleServiceWait/singleServiceWait.vue
+++ b/pages/order/singleServiceWait/singleServiceWait.vue
@@ -7,7 +7,7 @@
class="shrink-0 image"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FXymRmdOc-lianxiren.png"
/>
- {{ contactRealInfo.name }} {{ contactRealInfo.phone }}
+ {{ contactRealInfo.name }} {{ contactRealInfo.phone }}
{{ item.cartExperienceGoodVO }} -->
【 服务类 】 {{singleService.name}}
- 已选时间:{{ bookDate }}星期二
+ 已选时间:{{ bookDate }} {{ getWeekday(bookDate) }}
{{ timeSlot }}
@@ -104,10 +104,9 @@
- 订单备注
-
- 备注建议提前协商(250字以内)
-
+ 订单备注
+
@@ -148,6 +147,7 @@
import contactsComponentVue from '../component/contactsComponent.vue'; //联系人弹窗\
import contactPopVue from '../../mine/component/contactPop.vue'; //新增联系人弹窗
import couponPopupVue from '../../coupon/component/couponPopup.vue';
+import { dealResult } from '../../../common/globalFunction';
const sumprice = ref(0) //总价格
const popup = ref(null) //弹窗对象
const contactRealInfo = ref({
@@ -306,10 +306,13 @@
orderItemMainInfoAddRequestList: toRaw(postCartArr.value)
}
})
- console.log('后台返回订单响应==>',resOrder.data);
- if(resOrder.data.code === 1) {
- wxPay(resOrder.data.data)
+ if (!dealResult(resOrder)) {
+ hideLoading()
+ isShow.value = false
+ return
}
+ console.log('后台返回订单响应==>',resOrder.data);
+ wxPay(resOrder.data.data)
}
//减少当前商品数量
@@ -369,13 +372,13 @@
showCancel: false
})
uni.redirectTo({
- url: '/pages/order/service-paystatus/service-paystatus?oid=' + JSON.stringify(oid)
+ url: '/pages/my-order/myServiceOrderDetail/myServiceOrderDetail?id=' + oid
})
console.log('支付成功res--->',res);
},
fail(e) {
uni.redirectTo({
- url: '/pages/order/service-paystatus/service-paystatus?oid=' + JSON.stringify(oid)
+ url: '/pages/my-order/myServiceOrderDetail/myServiceOrderDetail?id=' + oid
})
console.log('e.errMsg--->',e.errMsg);
}
@@ -481,6 +484,13 @@
console.log('============================>', myCouponList.value)
}
+
+ function getWeekday(dateStr) {
+ const date = new Date(dateStr);
+ const weekdays = ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"];
+ return weekdays[date.getDay()];
+ }
+