Fix:5079 【商城小程序】新增体验店时营业时间数据默认未修改,生成的体验券订单详情页,营业时间没有获取到默认数据
This commit is contained in:
@@ -144,7 +144,7 @@ export default {
|
|||||||
return this.orderInfo.experienceOrderStatus === 2
|
return this.orderInfo.experienceOrderStatus === 2
|
||||||
},
|
},
|
||||||
formattedBusinessTime() {
|
formattedBusinessTime() {
|
||||||
return this.orderInfo.serviceTime + '~' + this.orderInfo.serviceEndTime || ''
|
return (this.orderInfo.serviceTime || '00:00') + '~' + (this.orderInfo.serviceEndTime || '23:59')
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad(options) {
|
onLoad(options) {
|
||||||
|
|||||||
Reference in New Issue
Block a user