diff --git a/src/views/system/ManageNodeInformation/index.vue b/src/views/system/ManageNodeInformation/index.vue new file mode 100644 index 0000000..164e2f4 --- /dev/null +++ b/src/views/system/ManageNodeInformation/index.vue @@ -0,0 +1,694 @@ + + + + \ No newline at end of file diff --git a/src/views/system/components/wangEditor.vue b/src/views/system/components/wangEditor.vue index 8546b17..fb7675e 100644 --- a/src/views/system/components/wangEditor.vue +++ b/src/views/system/components/wangEditor.vue @@ -86,7 +86,6 @@ export default ({ }, methods: { emit() { - console.log(this.html) this.$emit("on-nodeContent", { nodeContent: this.html }); }, panelchange(item) { diff --git a/src/views/system/editorialSpecialization/index.vue b/src/views/system/editorialSpecialization/index.vue index 1eea656..e6751a8 100644 --- a/src/views/system/editorialSpecialization/index.vue +++ b/src/views/system/editorialSpecialization/index.vue @@ -27,15 +27,15 @@
-
+
主路径 {{ list.routeName }}
审核进度 - - {{ 26 + '/' + 70 }} + + {{ list.agreeNumber + ' / ' + list.totalNumber }}
适用范围: @@ -47,11 +47,12 @@
- +
-
+
触发条件 @@ -69,9 +70,6 @@
- 审核进度 - - {{ 26 + '/' + 70 }}
适用范围: @@ -83,7 +81,7 @@
- +
@@ -112,7 +110,7 @@ export default { { required: true, message: '不能为空', trigger: 'change' } ], }, - list: [], + list: {}, }; }, created() { @@ -120,25 +118,41 @@ export default { this.form.routeName = this.$route.query.routeName specialDiseaseRoute(this.$route.query.id).then(res => { this.list = res.data + this.list.percentage = this.list.agreeNumber / this.list.totalNumber * 100 }) }, watch: { }, methods: { + edit() { + this.$store.dispatch('tagsView/delView', this.$route).then(({ visitedViews }) => { + this.$router.push({ + path: "/specialdisease/specialDiseaseNode", + query: { + routeName: this.list.routeName, + suitRange: this.list.suitRange + }, + }); + }) + }, add() { this.$store.dispatch('tagsView/delView', this.$route).then(({ visitedViews }) => { this.$router.push({ path: "/specialdisease/specialDiseaseNode", query: { + routeName: this.list.routeName, + suitRange: this.list.suitRange }, }); }) }, - gospecialDiseaseNode() { + goManageNodeInformation(item) { this.$store.dispatch('tagsView/delView', this.$route).then(({ visitedViews }) => { this.$router.push({ - path: "/specialdisease/specialDiseaseNode", + path: "/specialdisease/ManageNodeInformation", query: { + routeName: item.routeName, + suitRange: this.list.suitRange }, }); }) diff --git a/src/views/system/specialDiseaseNode/index.vue b/src/views/system/specialDiseaseNode/index.vue index 5b6b82c..fcbadf5 100644 --- a/src/views/system/specialDiseaseNode/index.vue +++ b/src/views/system/specialDiseaseNode/index.vue @@ -1,10 +1,10 @@