// 预估消费券函数 export function estimateCoupon(tkmoney = 0, percentage = 0.3) { let result = (tkmoney * percentage).toFixed(2); return result; }