|
@@ -184,7 +184,7 @@ export default {
|
|
|
filter: this.filter
|
|
|
}
|
|
|
: { currentPage: this.currentPage, pageSize: this.pageSize };
|
|
|
- this.$router.push({ name: 'AddPlan', params: pam });
|
|
|
+ this.$router.push({ name: 'AddPlan', params: {...pam,hospitalId:this.hospitalId} });
|
|
|
},
|
|
|
// 修改诊断关联-跳转至编辑页面
|
|
|
modifyRelation(row) {
|
|
@@ -198,7 +198,7 @@ export default {
|
|
|
: { currentPage: this.currentPage, pageSize: this.pageSize };
|
|
|
this.$router.push({
|
|
|
name: 'AddPlan',
|
|
|
- params: Object.assign(pam, { isEdit: true, data: item })
|
|
|
+ params: Object.assign(pam, { isEdit: true, data: item,hospitalId:this.hospitalId })
|
|
|
});
|
|
|
},
|
|
|
currentChange(next) {
|