修改其它须知

This commit is contained in:
wangxiaowei
2025-12-30 18:20:40 +08:00
parent da739de764
commit 42f3dbd362

View File

@ -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; // 记录原始总价