diff --git a/src/views/index/continueInsurance.vue b/src/views/index/continueInsurance.vue
index b689d385..621fc2e7 100644
--- a/src/views/index/continueInsurance.vue
+++ b/src/views/index/continueInsurance.vue
@@ -8,7 +8,7 @@
:border="false"
:fixed="true"
:safe-area-inset-top="true"
- @click-left="back"
+ @click-left="h5GoBack"
/>
@@ -244,14 +244,6 @@ export default {
}
},
methods:{
- back() {
- this.$router.push({
- name:'vehicleAdd',
- params:{
- id: this.id
- }
- })
- },
async getPermissions(){
let res = await userOperationPermissions();
this.permissonList = res.data
@@ -358,8 +350,7 @@ export default {
this.$toast('添加成功')
}
setTimeout(()=>{
- // this.$router.back();
- this.back()
+ this.$router.back();
},2000)
}
},