进行中的建制点击详细跳转未来规划

This commit is contained in:
WindowBird 2025-08-28 17:23:47 +08:00
parent 6e8b40cf9a
commit 5be32acd1b

View File

@ -134,7 +134,12 @@ export default {
],
};
},
onLoad() {
onLoad(options) {
if (options) {
console.log("接收到的参数:", options.formedId);
this.formedId = options.formedId;
}
//
this.loadPageData();
},
@ -143,7 +148,7 @@ export default {
async loadPageData() {
this.loading = true;
try {
const response = await getInstitutionalDetail(6);
const response = await getInstitutionalDetail(this.formedId);
if (response.code === 200) {
this.projectDetails = response.data;
}