valid.js 233 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 /** * 当 acquireStatus 为1 时,即优惠券可以领取 */ module.exports = (conditional, options) => { if (conditional === 1) { return options.fn(this); } else { return options.inverse(this); } };