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