Skip to content

Commit 28b56ae

Browse files
committed
修改新订单的显示状态为等待支付
1 parent c815d19 commit 28b56ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

www/cart/order.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ function setOrderState( order ) {
271271
document.querySelector( '.order-info-no' ).innerHTML = order_no;
272272
document.querySelector( '.order-info-state' ).innerHTML = state === null ? ''
273273
: state === 'FIN' ? '注册码已经被激活'
274-
: state === 'NEW' ? '正在处理'
274+
: state === 'NEW' ? '等待支付'
275275
: state === 'PAD' ? '注册文件已经发送'
276276
: state === 'UNF' ? '已经取消'
277277
: state;

0 commit comments

Comments
 (0)