Commit 44d9c511 authored by miaojiale's avatar miaojiale

增加随访调查页面

parent 3a723513
......@@ -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",
......
<template>
<ConfigForms form-type="2"></ConfigForms>
</template>
<script>
import ConfigForms from "@/views/screening/components/ConfigForms.vue"
export default {
name: "FollowupEntry",
components: {
ConfigForms,
},
data() {
return {}
},
created() {},
methods: {},
}
</script>
<style lang="scss" scoped></style>
......@@ -95,7 +95,7 @@ export default {
func: this.rowOpration,
formatter(row) {
return {
label: " 录入",
label: "查询",
type: "text",
}
},
......
......@@ -199,6 +199,10 @@ export default {
onSearch() {
console.log(123456)
},
rowOpration(data, i) {
console.log(data, i)
this.$router.push("/followupentry")
},
},
}
</script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment