CRM_26-01-22#story#7966,关于在打通系统中责任险信息关联的需求

This commit is contained in:
2026-01-22 11:48:20 +08:00
parent a56824ff73
commit f5c2d1687f

View File

@@ -8,7 +8,7 @@
:border="false"
:fixed="true"
:safe-area-inset-top="true"
@click-left="h5GoBack"
@click-left="back"
/>
</div>
<div class="addContentWrap">
@@ -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)
}
},