幼儿信息家长端维护自适应

This commit is contained in:
paidaxing444
2020-11-01 20:26:00 +08:00
parent d84bd59fe8
commit b9942bb4d4
2 changed files with 63 additions and 40 deletions

View File

@ -94,20 +94,19 @@ export default {
},
// 节点单击事件
handleNodeClick(data) {
console.log("node:" + data.id);
// console.log("node:" + data.id);
this.title = data.label;
if (data.id == "-1") {
this.getNote();
} else {
this.queryParams.id = data.id;
this.getTaskList();
}
},
/**查询评估介绍 */
getNote() {
listAssessmentintroduce(null).then((response) => {
console.log("评估介绍:" + response.rows[0].content);
// console.log("评估介绍:" + response.rows[0].content);
this.note = response.rows[0].content;
});
},