CRM_25-12-09#story#7686,调度APP中救援责任险参保咨询问题优化

This commit is contained in:
2025-12-04 11:38:10 +08:00
parent f0576476e9
commit d178be1acd

View File

@@ -65,6 +65,7 @@ export default {
return { return {
showPoup: false, showPoup: false,
used:false, used:false,
saveLoading: true,
} }
}, },
async mounted() { async mounted() {
@@ -73,12 +74,19 @@ export default {
}, },
methods: { methods: {
async saveHandle() { async saveHandle() {
if( this.saveLoading ) {
try {
this.saveLoading = false;
await sendInsuranceEmail(); await sendInsuranceEmail();
this.$toast('操作成功'); this.$toast('操作成功');
this.showPoup = false this.showPoup = false
setTimeout(() => { setTimeout(() => {
this.goBack() this.goBack()
}, 1500) }, 1500)
} finally {
this.saveLoading = true;
}
}
}, },
} }
} }