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; - }); } } };