zuozhengqing
2024-04-11 763762fca04a6dcf391f75e9541fe7287f6b0ed1
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