From bd1467f0a09f0ab6f2dabd7a8a5981262a26c02d Mon Sep 17 00:00:00 2001 From: dshclm <3321914460@qq.com> Date: Tue, 19 Nov 2024 09:04:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/resources/templates/system/elExam/exam/edit.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ruoyi-admin/src/main/resources/templates/system/elExam/exam/edit.html b/ruoyi-admin/src/main/resources/templates/system/elExam/exam/edit.html index 4fb1bc2..37d1c52 100644 --- a/ruoyi-admin/src/main/resources/templates/system/elExam/exam/edit.html +++ b/ruoyi-admin/src/main/resources/templates/system/elExam/exam/edit.html @@ -154,12 +154,13 @@ ref="tree" lazy :data="treeData" + :default-expanded-keys="expandedKeys" :default-checked-keys="postForm.departIds" :props="defaultProps" :filter-node-method="filterNode" empty-text=" " show-checkbox - node-key="id" + node-key="deptId" :load="handleLoad" @check-change="handleCheckChange" > @@ -197,6 +198,7 @@ repoList: [], // 已选择的题库 excludes: [], + expandedKeys:[], postForm: { // 总分数 totalScore: 0, @@ -405,7 +407,7 @@ this.postForm.departIds = [] const nodes = this.$refs.tree.getCheckedNodes() nodes.forEach(function(item) { - that.postForm.departIds.push(item.id) + that.postForm.departIds.push(item.deptId) }) },