@@ -231,14 +231,17 @@ export default {
const res=this.id?await apiEditApply({...params,BusinessApplyId:Number(this.id)}):await apiAddApply(params)
if(res.code===200){
- uni.showToast({
- title:"提交成功",
- icon:'success'
- })
+ setTimeout(() => {
+ uni.showToast({
+ title:"提交成功",
+ icon:'success'
+ })
+ }, 200);
+
uni.$emit('businessApproveListUpdate')
setTimeout(()=>{
this.handleRefuse()
- },1500)
+ },1800)
}
},