diff --git a/src/router/index.js b/src/router/index.js
index 42bd05447032c44818a767e9739329d597c14d7e..25a432629772c5345e58da84e2f1ac63e49ff496 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -40,6 +40,18 @@ export const constantRoutes = [
// hidden: true,
// name: "login",
// },
+ {
+ path: "/followupentry",
+ component: Layout,
+ children: [
+ {
+ path: "/followupentry",
+ component: () => import("@/views/followupentry/index"),
+ hidden: true,
+ name: "followupEntry",
+ },
+ ],
+ },
{
path: "/401",
name: "401",
diff --git a/src/views/followupentry/index.vue b/src/views/followupentry/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..895f6b2ce31d913b9e83e66db740e620c1bbfcd8
--- /dev/null
+++ b/src/views/followupentry/index.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/src/views/followupquery/index.vue b/src/views/followupquery/index.vue
index 4113698a9192d10ef5f05935f882390abe9fcbd6..937c72676444429a82b4f5a347b3c86628b226b4 100644
--- a/src/views/followupquery/index.vue
+++ b/src/views/followupquery/index.vue
@@ -95,7 +95,7 @@ export default {
func: this.rowOpration,
formatter(row) {
return {
- label: " 录入",
+ label: "查询",
type: "text",
}
},
diff --git a/src/views/followupresearch/index.vue b/src/views/followupresearch/index.vue
index 248304613634e397be0f0ab16d4f3705e73de651..28f7ffc5718c07868865a25b1cce9ba6ebc69712 100644
--- a/src/views/followupresearch/index.vue
+++ b/src/views/followupresearch/index.vue
@@ -199,6 +199,10 @@ export default {
onSearch() {
console.log(123456)
},
+ rowOpration(data, i) {
+ console.log(data, i)
+ this.$router.push("/followupentry")
+ },
},
}