diff --git a/common/global.js b/common/global.js
index fa2ff05..c3f706a 100644
--- a/common/global.js
+++ b/common/global.js
@@ -1,28 +1,30 @@
+import { clothesRentUrl , bookUrl , workshopUrl , myOrderUrl} from "./globalImagesUrl"
+
//实体类订单状态数组
export const stateList = [
{
state: '待支付',
img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FFybMDtHR-dengdaifukuan.png',
msg: '等待买家付款',
- tips: '请于15分钟内付款,超时订单将自动关闭'
+ tips: '超时订单将自动关闭'
},
{
state: '待发货',
img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FEOzVqolp-fahuo.png',
msg: '等待卖家发货',
- tips: '耐心等待工艺品发货~'
+ tips: '耐心等待'
},
{
state: '已退款',
img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FlPnvgqCp-yituikuan.png',
msg: '订单已退款',
- tips: '希望下次能让君满意'
+ tips: '钱款已退还'
},
{
state: '待收货',
img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FEOzVqolp-fahuo.png',
msg: '商品已发货,注意查收',
- tips: '非遗工艺品马上到手啦,耐心点'
+ tips: '工艺品即将送达,敬请耐心等候。'
},
{
state: '交易成功',
@@ -34,7 +36,7 @@ export const stateList = [
state: '交易关闭',
img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Fuser_avatar%2F0%2FLPwbfbRj-cancel.png',
msg: '您的订单已关闭',
- tips: '下次看好了之后再买哦'
+ tips: '请您在下次购买前仔细确认'
}
]
export const stateMap = new Map()
@@ -46,33 +48,33 @@ stateList.forEach((item)=>{
export const serviceStateList = [
{
state: '待支付',
- img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FFybMDtHR-dengdaifukuan.png',
+ img: myOrderUrl + '/myServiceOrderDetail/dzf.png',
msg: '等待买家付款',
- tips: '请于15分钟内付款,超时订单将自动关闭'
+ tips: '超时订单将自动关闭'
},
{
state: '待发货',
- img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FEOzVqolp-fahuo.png',
+ img: myOrderUrl + '/myServiceOrderDetail/dfh.png',
msg: '待到店体验',
- tips: '等待您的光临体验~'
+ tips: '期待您的莅临体验'
},
{
state: '已退款',
- img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FlPnvgqCp-yituikuan.png',
+ img: myOrderUrl + '/myServiceOrderDetail/ytk.png',
msg: '订单已退款',
- tips: '希望下次能让君满意'
+ tips: '钱款已退还'
},
{
state: '交易成功',
- img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FaHDhacaI-dengdaifukuan.png',
+ img: myOrderUrl + '/myServiceOrderDetail/jywc.png',
msg: '订单完成,感谢您的支持',
tips: '感谢您的支持'
},
{
state: '交易关闭',
- img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Fuser_avatar%2F0%2FLPwbfbRj-cancel.png',
+ img: myOrderUrl + '/myServiceOrderDetail/jygb.png',
msg: '您的订单已关闭',
- tips: '下次看好了之后再买哦'
+ tips: '请您在下次购买前仔细确认'
}
]
@@ -80,49 +82,96 @@ export const serviceStateMap = new Map()
serviceStateList.forEach((item)=>{
serviceStateMap.set(item.state,item)
})
+
//获取选中日期是星期几方法
export const weekDay = function(time) {
let datelist = ['周日','周一','周二','周三','周四','周五','周六',]
return datelist[new Date(time).getDay()];
}
+//写真服务订单
+export const photoServiceOrder = [
+ {
+ state: '待支付',
+ img: bookUrl + '/myPhotoProductsOrderDetail/dzf.png',
+ msg: '等待买家付款',
+ tips: '超时订单将自动关闭'
+ },
+ {
+ state: '待发货',
+ img: bookUrl + '/myPhotoProductsOrderDetail/dps.png',
+ msg: '等待拍摄',
+ tips: '敬请耐心等候'
+ },
+ {
+ state: '已退款',
+ img: bookUrl + '/myPhotoProductsOrderDetail/ytk.png',
+ msg: '订单已退款',
+ tips: '钱款已退还'
+ },
+ {
+ state: '交易成功',
+ img: bookUrl + '/myPhotoProductsOrderDetail/jywc.png',
+ msg: '租赁完成',
+ tips: '感谢您的支持'
+ },
+ {
+ state: '交易关闭',
+ img: bookUrl + '/myPhotoProductsOrderDetail/jygb.png',
+ msg: '您的订单已关闭',
+ tips: '请您在下次购买前仔细确认'
+ },
+ {
+ state: '待收货',
+ img: bookUrl + '/myPhotoProductsOrderDetail/yps.png',
+ msg: '服装已被您取走',
+ tips: '请爱护服装'
+ }
+]
+
+export const photoOrderMap = new Map()
+photoServiceOrder.forEach((item)=>{
+ photoOrderMap.set(item.state,item)
+})
+
+
//服装租赁订单
export const clothesRentOrder = [
{
state: '待支付',
- img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FFybMDtHR-dengdaifukuan.png',
+ img: clothesRentUrl + '/clothesRentOrderDetail/dzf.png',
msg: '等待买家付款',
tips: '请于15分钟内付款,超时订单将自动关闭'
},
{
state: '待发货',
- img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FEOzVqolp-fahuo.png',
+ img: clothesRentUrl + '/clothesRentOrderDetail/dqh.png',
msg: '等待您来取货',
- tips: '等待您的光临体验~'
+ tips: '敬请耐心等候'
},
{
state: '已退款',
- img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FlPnvgqCp-yituikuan.png',
+ img: clothesRentUrl + '/clothesRentOrderDetail/ytk.png',
msg: '订单已退款',
- tips: '希望下次能让君满意'
+ tips: '钱款已退还'
},
{
- state: '交易完成',
- img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FaHDhacaI-dengdaifukuan.png',
- msg: '租赁完成,感谢您的支持',
+ state: '交易成功',
+ img: clothesRentUrl + '/clothesRentOrderDetail/jywc.png',
+ msg: '租赁完成',
tips: '感谢您的支持'
},
{
state: '交易关闭',
- img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Fuser_avatar%2F0%2FLPwbfbRj-cancel.png',
+ img: clothesRentUrl + '/clothesRentOrderDetail/jygb.png',
msg: '您的订单已关闭',
- tips: '下次看好了之后再买哦'
+ tips: '请您在下次购买前仔细确认'
},
{
state: '待收货',
- img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Fuser_avatar%2F0%2FLPwbfbRj-cancel.png',
+ img: clothesRentUrl + '/clothesRentOrderDetail/yqh.png',
msg: '服装已被您取走',
- tips: '请好好爱护服装'
+ tips: '请务必妥善保管并爱护所提供的服装'
}
]
diff --git a/pages.json b/pages.json
index 65f7b8d..a8253f4 100644
--- a/pages.json
+++ b/pages.json
@@ -1,5 +1,11 @@
{
"pages": [
+ {
+ "path": "pages/clothesRent/clothesRentOrderDetail/clothesRentOrderDetail",
+ "style": {
+ "navigationBarTitleText": ""
+ }
+ },
{
"path": "pages/clothesRent/clotherRentOrderList/clotherRentOrderList",
"style": {
@@ -258,12 +264,6 @@
"navigationBarTitleText": ""
}
},
- {
- "path": "pages/clothesRent/clothesRentOrderDetail/clothesRentOrderDetail",
- "style": {
- "navigationBarTitleText": ""
- }
- }
],
"plugins": {
"logisticsPlugin": {
diff --git a/pages/book/myPhotoProductsOrderDetail/myPhotoProductsOrderDetail.vue b/pages/book/myPhotoProductsOrderDetail/myPhotoProductsOrderDetail.vue
index 871fbac..22b561a 100644
--- a/pages/book/myPhotoProductsOrderDetail/myPhotoProductsOrderDetail.vue
+++ b/pages/book/myPhotoProductsOrderDetail/myPhotoProductsOrderDetail.vue
@@ -3,11 +3,11 @@
- 等待买家付款
- 请于13分51秒内付款,超时订单将自动关闭
+ {{ orderStatusObj.msg }}
+ {{ orderStatusObj.tips }}
@@ -103,11 +103,14 @@
import { publicPath } from '../../../common/globalImagesUrl';
import { getFonts } from '../../../common/globalFont';
import { onPullDownRefresh } from '@dcloudio/uni-app';
+ import { photoOrderMap } from '../../../common/global';
import emitter from '../../../utils/emitter';
+
const bkgUrl = ref(bookUrl + '/myPhotoProductsOrderDetail/bkg.png')
const id = ref(0)
const cookie = wx.getStorageSync('cookie')
const order = ref({})
+ const orderStatusObj = ref({}) //根据全局变量获取状态、图片 --- photoOrderMap
let wxPayTimer = null;
let loading = false;
@@ -148,21 +151,18 @@
}
})
order.value = res.data.data
+ orderStatusObj.value = photoOrderMap.get(res.data.data.orderStatus)
+ console.log('orderStatusObj--->',orderStatusObj.value);
if (order.value.orderStatus === '待支付') {
order.value.operationList = [true, false, false]
- // orderStatusObj.value = stateList[0]
} else if (order.value.orderStatus === '待发货') {
order.value.operationList = [false, false, true]
- // orderStatusObj.value = stateList[5]
} else if (order.value.orderStatus === '已退款') {
order.value.operationList = [false, false, true]
- // orderStatusObj.value = stateList[2]
} else if (order.value.orderStatus === '交易成功') {
order.value.operationList = [false, false, true]
- // orderStatusObj.value = stateList[4]
} else if (order.value.orderStatus === '交易关闭') {
order.value.operationList = [false, true, false]
- // orderStatusObj.value = stateList[3]
}
}
diff --git a/pages/clothesRent/clothesRentOrderDetail/clothesRentOrderDetail.vue b/pages/clothesRent/clothesRentOrderDetail/clothesRentOrderDetail.vue
index bd33756..36f1930 100644
--- a/pages/clothesRent/clothesRentOrderDetail/clothesRentOrderDetail.vue
+++ b/pages/clothesRent/clothesRentOrderDetail/clothesRentOrderDetail.vue
@@ -3,11 +3,11 @@
- 等待买家付款
- 请于13分51秒内付款,超时订单将自动关闭
+ {{ orderStatusObj.msg }}
+ {{ orderStatusObj.tips }}
@@ -15,7 +15,7 @@
class="image_2"
:src="clothesRentUrl + '/clothesRentOrderDetail/lxr.png'"
/>
- 张三 15888610253
+ {{ contactsSnapshot.name }} {{ contactsSnapshot.phone }}
@@ -25,11 +25,11 @@
src="https://ide.code.fun/api/image?token=67dd8f7cdefdb1001119a623&name=0c34cbad13bda42b94fffa906d29960d.png"
/>
- 汉服—曲裾系列
- ¥138.00
+ {{ clothesSnapshot.name }}
+ ¥{{ clothesSnapshot.price }}
-
+
租赁天数
- X3
+ X{{ clothesSnapshot.period }}
实付款:
- ¥138.00
+ ¥{{ rentOrderDetail.totalAmount.toFixed(2) }}
创建时间:
- 2024-10-05 09:58:41
+ {{ rentOrderDetail.createTime }}
订单编号:
- E20241005095840091406189
-
+ {{ rentOrderDetail.orderNumber }}
+
复制
-
-
- 在线客服
-
+
+
应付款:
- ¥138.00
+ ¥{{ rentOrderDetail.totalAmount.toFixed(2) }}
- 去支付
+
+ 去支付
+
+
+ 删除订单
+
+
+
+