张延森 hace 4 años
padre
commit
23a5df87c8
Se han modificado 2 ficheros con 3 adiciones y 3 borrados
  1. 1
    1
      config/defaultSettings.js
  2. 2
    2
      src/pages/property/bill/list/index.jsx

+ 1
- 1
config/defaultSettings.js Ver fichero

10
   menu: {
10
   menu: {
11
     locale: false,
11
     locale: false,
12
   },
12
   },
13
-  title: '远道',
13
+  title: '远道',
14
   pwa: false,
14
   pwa: false,
15
   iconfontUrl: '',
15
   iconfontUrl: '',
16
 };
16
 };

+ 2
- 2
src/pages/property/bill/list/index.jsx Ver fichero

158
 
158
 
159
   const handleDetail = row => {
159
   const handleDetail = row => {
160
     if (row.billStatus === '2') {
160
     if (row.billStatus === '2') {
161
-      router.push(`/bill/management/edi?id=${row.billId}`)
161
+      router.push(`/property/bill/management/edi?id=${row.billId}`)
162
     } else {
162
     } else {
163
-      router.push(`/bill/management/info?id=${row.billId}`);
163
+      router.push(`/property/bill/management/info?id=${row.billId}`);
164
     }
164
     }
165
   }
165
   }
166
 
166