修改其它须知
This commit is contained in:
@ -233,32 +233,56 @@
|
||||
</view>
|
||||
<template v-if="typeId == 1">
|
||||
<view class="desc2">
|
||||
<view class="dot"></view>
|
||||
<view class="">18点后需要加收灯光费</view>
|
||||
<view class="">① 每年6月至9月(夏令时段),灯光费自当日18:00起开始计收;每年10月至次年5月(冬令时段),灯光费自当日17:00起开始计收。</view>
|
||||
</view>
|
||||
<view class="desc2">
|
||||
<view class="">② 2026年为推广期,网球场地费打8折,非黄金时间段原价为80元/小时,现价为64元/小时,黄金时间段原价100元/小时,现价为80元/小时</view>
|
||||
</view>
|
||||
</template>
|
||||
<template v-if="typeId == 2">
|
||||
<view class="desc2">
|
||||
<view class="dot"></view>
|
||||
<view class="">默认选择4小时,注意闭馆时间</view>
|
||||
<view class="">支付成功后扫脸进出篮球场(当日离场单次超过30分钟以上需进行重新购买入场门票).</view>
|
||||
</view>
|
||||
</template>
|
||||
</view>
|
||||
|
||||
<!-- 退订规则 -->
|
||||
<view class="bg-white box pr mt20">
|
||||
<view class="bg-white box pr mt20" v-if="typeId == 1">
|
||||
<view class="current"></view>
|
||||
<view class="title">
|
||||
退订规则
|
||||
</view>
|
||||
<view class="desc">
|
||||
①开场前≥24小时退订,可全款退款
|
||||
① 开场前≥24小时退订,可全款退款
|
||||
</view>
|
||||
<view class="desc">
|
||||
②4小时<开场前<24小时退订,收取50%手续费
|
||||
② 4小时<开场前<24小时退订,收取50%手续费
|
||||
</view>
|
||||
<view class="desc">
|
||||
③开场前≤4小时退订,不予退款
|
||||
③ 开场前≤4小时退订,不予退款
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 入场须知 -->
|
||||
<view class="bg-white box pr mt20" v-if="typeId == 2">
|
||||
<view class="current"></view>
|
||||
<view class="title">
|
||||
入场须知
|
||||
</view>
|
||||
<view class="desc">
|
||||
1、入场需通过小程序进行扫码支付。未支付者不得擅自使用场地;
|
||||
</view>
|
||||
<view class="desc">
|
||||
2、准确出入场,未成年人须在监护人的陪同下进入场地,严禁未经许可擅自进入;
|
||||
</view>
|
||||
<view class="desc">
|
||||
3、未经允许不得在场地内进行篮球教学或培训活动;
|
||||
</view>
|
||||
<view class="desc">
|
||||
4、禁止场地进行商业拍摄,如需拍摄与场地管理方沟通(换装或协助拍摄视为商拍);
|
||||
</view>
|
||||
<view class="desc">
|
||||
5、企业团建、商业活动等请与场地管理方沟通。
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@ -495,7 +519,7 @@
|
||||
if (idx === -1) return str + (decimal > 0 ? '.' + '0'.repeat(decimal) : '');
|
||||
return str.substring(0, idx + decimal + 1).padEnd(idx + decimal + 1, '0');
|
||||
}
|
||||
self.bill.cdf.total = Number(toFixedNoRound(self.bill.cdf.total, 2));
|
||||
self.bill.cdf.total = Number(toFixedNoRound(self.bill.cdf.total - self.bill.dgf.total, 2));
|
||||
self.bill.dgf.total = Number(toFixedNoRound(self.bill.dgf.total, 2));
|
||||
self.bill.total = Number(toFixedNoRound(self.bill.cdf.total + self.bill.dgf.total, 2));
|
||||
self.originalTotal = self.bill.total; // 记录原始总价
|
||||
|
||||
Reference in New Issue
Block a user