data() {
return {
...
// 医院简介
hosDetail: {}
...
}
},
onLoad() {
this.getHosDetail();
console.log(this.hosDetail)
},
methods: {
getHosDetail() {
reqHosDetail({
id: 18,
orgId: 103
}).then(res => {
console.log(res);
this.hosDetail = res.data.rows[0];
})
}
}
控制台输出结果: