fix: formatOrderStatusDescription variable error
Signed-off-by: cnyballk <584518260@qq.com>pull/43/head
parent
a0e9ceb945
commit
c0105cc0fe
|
@ -139,7 +139,7 @@ export function formatOrderStatus(order) {
|
||||||
*/
|
*/
|
||||||
export function formatOrderStatusDescription(order) {
|
export function formatOrderStatusDescription(order) {
|
||||||
if (order.status === 0) {
|
if (order.status === 0) {
|
||||||
return `请在 ${ formatDate(orderInfo.payExpireTime) } 前完成支付`;
|
return `请在 ${ formatDate(order.payExpireTime) } 前完成支付`;
|
||||||
}
|
}
|
||||||
if (order.status === 10) {
|
if (order.status === 10) {
|
||||||
return '商家未发货,请耐心等待';
|
return '商家未发货,请耐心等待';
|
||||||
|
|
Loading…
Reference in New Issue