From 89c62bee28c317ca7a96f0c298e4167a3a9b8817 Mon Sep 17 00:00:00 2001 From: lxf Date: Thu, 31 Jul 2025 18:49:53 +0800 Subject: [PATCH] fix: 下单加保险 --- pages/order/insurance.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/order/insurance.vue b/pages/order/insurance.vue index dff94b6..8046d60 100644 --- a/pages/order/insurance.vue +++ b/pages/order/insurance.vue @@ -159,7 +159,7 @@ export default { return uni.showToast({ title: '起运时间不能为空', icon: 'none' }); } if (this.form.startDate && dayjs(this.form.startDate).isBefore(dayjs())) { - return uni.showToast({ title: '发车时间必须大于当前时间', icon: 'none' }); + return uni.showToast({ title: '起运时间必须大于当前时间', icon: 'none' }); } if (!this.form.insuranceProgramCode) { return uni.showToast({ title: '请选择方案', icon: 'none' }); -- libgit2 0.21.0