From e60a09778f98f0e496af1ba23de55d30609e04f7 Mon Sep 17 00:00:00 2001
From: feige <feige@qq.com>
Date: 星期一, 10 四月 2023 16:49:25 +0800
Subject: [PATCH] 修改了contacts中的index.js中的getContractList方法,要传入查询参数 export function getContactList(query) {   return request({     url: '/zfContact/all' ,     method: 'get',     params: query

---
 ruoyi-ui/src/router/index.js |   55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 55 insertions(+), 0 deletions(-)

diff --git a/ruoyi-ui/src/router/index.js b/ruoyi-ui/src/router/index.js
index b370bdd..f9a1fb4 100644
--- a/ruoyi-ui/src/router/index.js
+++ b/ruoyi-ui/src/router/index.js
@@ -57,6 +57,11 @@
     hidden: true
   },
   {
+    path: '/tmps',
+    component: () => import('@/views/tmp'),
+    hidden: true
+  },
+  {
     path: '/401',
     component: () => import('@/views/error/401'),
     hidden: true
@@ -72,6 +77,7 @@
         name: 'Index',
         meta: { title: '棣栭〉', icon: 'dashboard', affix: true }
       }
+
     ]
   },
   {
@@ -106,6 +112,55 @@
       }
     ]
   },
+    {
+    path: '/family/note1',
+    component: Layout,
+    permissions: ['family:note:list'],
+
+    hidden: true,
+    children: [
+      {
+        path: 'propertyInfo/:id(\\d+)',
+        component: () => import('@/views/note/propertyInfo'),
+        name: 'propertyInfo',
+        meta: { title: '鏌ヨ璇︽儏'}
+      }
+    ]
+  },
+//瀹跺ぇ浜嬭鐨勮鎯�
+  {
+    path: '/family1/bignote',
+    component: Layout,
+    // permissions: [],
+    permissions: ['family1:bignote:list'],
+    hidden: true,
+    children: [
+      {
+        path: 'familyeventInfo/:id(\\d+)',
+        component: () => import('@/views/bignote/familyeventInfo'),
+        name: 'familyeventInfo',
+        meta: { title: '鏌ヨ璇︽儏'}
+      }
+    ]
+  },
+
+  //缂栬緫涓汉淇℃伅
+  {
+    path: '/self/self',
+    component: Layout,
+    permissions: ['self:self:list'],
+
+    hidden: true,
+    children: [
+      {
+        path: 'edit/:id(\\d+)',
+        component: () => import('@/views/self/edit'),
+        name: 'edit',
+        meta: { title: '缂栬緫'}
+      }
+    ]
+  },
+
   {
     path: '/system/role-auth',
     component: Layout,

--
Gitblit v1.9.1