12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- export const menu_list = [
- {
- title: '业务',
- children: [{
- id: 1000,
- name: '开单号,样品扫描',
- icon: 'qr-scanner',
- url: 'scanning'
- },{
- id: 1100,
- name: '修改创样数量',
- icon: 'qr-scanner',
- url: 'sample-count-zero'
- }]
- },
- {
- title: 'QA',
- children: [{
- id: 2000,
- name: '采购合同',
- icon: 'book',
- url: 'contract'
- }, {
- id: 3000,
- name: '样品单管理',
- icon: 'document',
- url: 'sample'
- }]
- },{
- title: '仓库样品',
- children: [{
- id: 4000,
- name: '待备样',
- icon: 'alarm',
- url: 'store-sample-pending'
- }, {
- id: 5000,
- name: '样品绑定',
- icon: 'timer',
- url: 'store-sample-binding'
- }, {
- id: 6000,
- name: '仓库样品列表',
- icon: 'home',
- url: 'store-sample'
- }]
- },{
- title: '仓库管理',
- children: [
- {
- id: 7000,
- name: '入库单列表',
- icon: 'list-box',
- url: 'inspection'
- },
- {
- id: 8000,
- name: '申请单号',
- icon: 'appstore',
- url: 'es-apply-scan'
- }, {
- id: 9000,
- name: '待抽箱',
- icon: 'timer',
- url: 'warehouse-manage-pending'
- }, {
- id: 12000,
- name: '陪验申请',
- icon: 'home',
- url: 'inspection'
- }]
- },{
- title: 'QC',
- children: [{
- id: 10000,
- name: 'QC验货初检报告',
- icon: 'list-box',
- url: 'store-qc-search'
- },
- // {
- // id: 11000,
- // name: 'QC扫描',
- // icon: 'qr-scanner',
- // url: 'store-qc-scanning'
- // },
- {
- id: 11000,
- name: '待验货物',
- icon: 'checkbox',
- url: 'store-pending-search'
- }]
- }
- ]
|