张涛
2024-08-30 082b572b91abd0d5ae8e409714553130448aa6d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// const type from '@/router/deployCode'
 
const productionReport = (resolve) => require(["@/views/reportManage/productionReport/index"], resolve) // 产量报表
const payableSalaryReport = (resolve) => require(["@/views/reportManage/payableSalaryReport/index"], resolve) // 应发工资报表
 
const appconfig = [
  {
    path: "/reportManage/productionReport",
    name: "productionReport",
    component: productionReport,
    meta: {
      title: "产量报表",
      requireAuth: true
    }
  },
  {
    path: "/reportManage/payableSalaryReport",
    name: "payableSalaryReport",
    component: payableSalaryReport,
    meta: {
      title: "应发工资报表",
      requireAuth: true
    }
  }
]
 
export default appconfig