From 7b1f8709846c483500b831c9f1c6ad35da38866f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=88=98=E7=AB=8B=E6=A0=87?= <2658037827@qq.com>
Date: Tue, 12 Sep 2023 13:58:55 +0800
Subject: [PATCH 1/2] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=BB=A1=E6=84=8F?=
=?UTF-8?q?=E5=BA=A6=E8=B7=AF=E7=94=B1?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/router/index.js | 30 +++++++++++++++++++
.../satisfactionEval/dissatisfied/index.vue | 13 ++++++++
.../dissatisfiedPersonnel/detail.vue | 13 ++++++++
.../dissatisfiedPersonnel/index.vue | 13 ++++++++
4 files changed, 69 insertions(+)
create mode 100644 src/views/dataBoard/satisfactionEval/dissatisfied/index.vue
create mode 100644 src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/detail.vue
create mode 100644 src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/index.vue
diff --git a/src/router/index.js b/src/router/index.js
index f58076578..3644c84be 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -388,6 +388,36 @@ export const dataBoardRoutes = {
isTab: false,
},
},
+ {
+ path: "satisfactionEval/dissatisfied",
+ props: true,
+ component: () => import("@/views/dataBoard/satisfactionEval/dissatisfied/index"),
+ name: "dataBoard-satisfactionEval-index",
+ meta: {
+ title: "不满意事项列表",
+ isTab: false,
+ },
+ },
+ {
+ path: "satisfactionEval/dissatisfiedPersonnel",
+ props: true,
+ component: () => import("@/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/index"),
+ name: "dataBoard-satisfactionEval-index",
+ meta: {
+ title: "画像匹配同类不满意人员",
+ isTab: false,
+ },
+ },
+ {
+ path: "satisfactionEval/dissatisfiedPersonnel/detail",
+ props: true,
+ component: () => import("@/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/detail"),
+ name: "dataBoard-satisfactionEval-index",
+ meta: {
+ title: "画像匹配同类不满意人员",
+ isTab: false,
+ },
+ },
{
path: "organizational/index",
props: true,
diff --git a/src/views/dataBoard/satisfactionEval/dissatisfied/index.vue b/src/views/dataBoard/satisfactionEval/dissatisfied/index.vue
new file mode 100644
index 000000000..57b2737a6
--- /dev/null
+++ b/src/views/dataBoard/satisfactionEval/dissatisfied/index.vue
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/detail.vue b/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/detail.vue
new file mode 100644
index 000000000..bdb687ccf
--- /dev/null
+++ b/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/detail.vue
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/index.vue b/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/index.vue
new file mode 100644
index 000000000..7ad26a95e
--- /dev/null
+++ b/src/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/index.vue
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
\ No newline at end of file
From 7428f0307d67d16bef21332de6879d0fd7e83bf9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=88=98=E7=AB=8B=E6=A0=87?= <2658037827@qq.com>
Date: Tue, 12 Sep 2023 15:05:07 +0800
Subject: [PATCH 2/2] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=BB=A1=E6=84=8F?=
=?UTF-8?q?=E5=BA=A6=E8=B7=AF=E7=94=B1?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/router/index.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/router/index.js b/src/router/index.js
index 3644c84be..c0373050b 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -392,7 +392,7 @@ export const dataBoardRoutes = {
path: "satisfactionEval/dissatisfied",
props: true,
component: () => import("@/views/dataBoard/satisfactionEval/dissatisfied/index"),
- name: "dataBoard-satisfactionEval-index",
+ name: "dataBoard-satisfactionEval-dissatisfied",
meta: {
title: "不满意事项列表",
isTab: false,
@@ -402,7 +402,7 @@ export const dataBoardRoutes = {
path: "satisfactionEval/dissatisfiedPersonnel",
props: true,
component: () => import("@/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/index"),
- name: "dataBoard-satisfactionEval-index",
+ name: "dataBoard-satisfactionEval-dissatisfiedPersonnel",
meta: {
title: "画像匹配同类不满意人员",
isTab: false,
@@ -412,7 +412,7 @@ export const dataBoardRoutes = {
path: "satisfactionEval/dissatisfiedPersonnel/detail",
props: true,
component: () => import("@/views/dataBoard/satisfactionEval/dissatisfiedPersonnel/detail"),
- name: "dataBoard-satisfactionEval-index",
+ name: "dataBoard-satisfactionEval-dissatisfiedPersonnel-detail",
meta: {
title: "画像匹配同类不满意人员",
isTab: false,