...
|
...
|
@@ -304,14 +304,14 @@ const orderDetail = (req, res, next) => { |
|
|
isCurrFee: true,
|
|
|
helpers: {
|
|
|
isPaymentComplete: function(status, options) {
|
|
|
if (status === 2) { // 已结清
|
|
|
if (status === 2 || status ===4 || status === 5) { // 已结清/已取消
|
|
|
return options.fn(this);
|
|
|
}
|
|
|
|
|
|
return options.inverse(this);
|
|
|
},
|
|
|
isPaymentIncomplete: function(status, options) {
|
|
|
if (status !== 2) { // 其他状态
|
|
|
if (status !== 2 && status !== 4 && status !== 5) { // 其他状态
|
|
|
return options.fn(this);
|
|
|
}
|
|
|
|
...
|
...
|
|