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