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

This commit is contained in:
2026-01-22 11:48:20 +08:00
parent 62f2c166c6
commit d18fec1ddc

View File

@@ -8,7 +8,7 @@
:border="false" :border="false"
:fixed="true" :fixed="true"
:safe-area-inset-top="true" :safe-area-inset-top="true"
@click-left="h5GoBack" @click-left="back"
/> />
</div> </div>
<div class="addContentWrap"> <div class="addContentWrap">
@@ -244,6 +244,14 @@ export default {
} }
}, },
methods:{ methods:{
back() {
this.$router.push({
name:'vehicleAdd',
params:{
id: this.id
}
})
},
async getPermissions(){ async getPermissions(){
let res = await userOperationPermissions(); let res = await userOperationPermissions();
this.permissonList = res.data this.permissonList = res.data
@@ -350,7 +358,8 @@ export default {
this.$toast('添加成功') this.$toast('添加成功')
} }
setTimeout(()=>{ setTimeout(()=>{
this.$router.back(); // this.$router.back();
this.back()
},2000) },2000)
} }
}, },