Commit 89c62bee28c317ca7a96f0c298e4167a3a9b8817
1 parent
691edd64
Exists in
master
and in
1 other branch
fix: 下单加保险
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
pages/order/insurance.vue
| ... | ... | @@ -159,7 +159,7 @@ export default { |
| 159 | 159 | return uni.showToast({ title: '起运时间不能为空', icon: 'none' }); |
| 160 | 160 | } |
| 161 | 161 | if (this.form.startDate && dayjs(this.form.startDate).isBefore(dayjs())) { |
| 162 | - return uni.showToast({ title: '发车时间必须大于当前时间', icon: 'none' }); | |
| 162 | + return uni.showToast({ title: '起运时间必须大于当前时间', icon: 'none' }); | |
| 163 | 163 | } |
| 164 | 164 | if (!this.form.insuranceProgramCode) { |
| 165 | 165 | return uni.showToast({ title: '请选择方案', icon: 'none' }); | ... | ... |