From 6a5ccd6f2688948f693dc4f428a61e487c5c61b5 Mon Sep 17 00:00:00 2001 From: paidaxing444 <12qwaszx> Date: Mon, 22 Jun 2020 17:47:20 +0800 Subject: [PATCH] =?UTF-8?q?20200622-zlp-2=20=E9=A6=96=E9=A1=B5-=E4=B8=80?= =?UTF-8?q?=E6=97=A5=E6=B5=81=E7=A8=8B=E5=AD=A6=E4=B9=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/benyi/dayflowstudy/index.vue | 37 ++++++++++--------- 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/ruoyi-ui/src/views/benyi/dayflowstudy/index.vue b/ruoyi-ui/src/views/benyi/dayflowstudy/index.vue index 131129330..544853e82 100644 --- a/ruoyi-ui/src/views/benyi/dayflowstudy/index.vue +++ b/ruoyi-ui/src/views/benyi/dayflowstudy/index.vue @@ -41,19 +41,20 @@
{{item.taskLable}} +
+ {{item.taskContent}}
{{item_standard.standardTitle}} -
解读 -
{{item_unscramble.sort}}-{{item_unscramble.content}} - -
+ > + {{item_standard.standardTitle}} +
解读 +
{{item_unscramble.sort}}){{item_unscramble.content}}
@@ -98,9 +99,6 @@ export default { // 查询参数 queryParams: { detailId: undefined - }, - queryStandardParams: { - taskCode: undefined } }; }, @@ -112,6 +110,7 @@ export default { }, created() { this.getTreeselect(); + this.getChildNodeList(); }, methods: { /** 查询部门下拉树结构 */ @@ -120,6 +119,14 @@ export default { this.treeOptions = response.data; }); }, + getChildNodeList() { + listStandard(null).then(response => { + this.dayflowstandardList = response.rows; + }); + listUnscramble(null).then(response => { + this.dayflowunscrambleList = response.rows; + }); + }, // 筛选节点 filterNode(value, data) { if (!value) return true; @@ -142,12 +149,6 @@ export default { this.content = response.data.content; this.note = response.data.note; }); - listStandard(null).then(response => { - this.dayflowstandardList = response.rows; - }); - listUnscramble(null).then(response => { - this.dayflowunscrambleList = response.rows; - }); } } };