dict.js 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. // 菜单
  2. export const system = [
  3. { icon: 'icon-essential-information', title: '基本信息', router: 'basic', },
  4. { icon: 'icon-bangdingweixin', title: '绑定微信', router: '', is_routine: '1' },
  5. { icon: 'icon-xiugaimima', title: '修改密码', router: 'password', },
  6. { icon: 'icon-tuichudenglu', title: '退出登录', router: 'login', is_routine: '2' },
  7. ]
  8. // 超级管理员
  9. export const router_zero = [
  10. { icon: 'icon-xingming1', title: '用户管理', router: 'user', },
  11. { icon: 'icon-leixing', title: '商品类型管理', router: 'type', },
  12. ]
  13. // 科室人员
  14. export const router_one = [
  15. { icon: 'icon-caigou', title: '采购申请', router: 'apply' },
  16. ]
  17. // 办公室人员
  18. export const router_two = [
  19. { icon: 'icon-shenhe-copy', title: '采购审核', router: 'apply_examine' },
  20. ]
  21. // 采购部门
  22. export const router_thr = [
  23. { icon: 'icon--caigouguanli', title: '采购需求信息', router: 'apply_review' },
  24. { icon: 'icon-mairu', title: '采买需求信息', router: 'market_buy' },
  25. ]
  26. // 入库管理部门
  27. export const router_four = [
  28. { icon: 'icon-shangpin', title: '库存管理', router: 'stock', },
  29. { icon: 'icon-dingdan', title: '采买订单管理', router: 'stock_order', },
  30. { icon: 'icon-cangpeitubiao_huanhuorukutuihuoruku', title: '入库管理', router: 'indepot', },
  31. { icon: 'icon-cangpeitubiao_chukuhuanhuochuku', title: '出库管理', router: 'outdepot', },
  32. ]
  33. // 财务部门
  34. export const router_five = [
  35. { icon: 'icon-dingdandaifukuan', title: '付款确认', router: 'payment' },
  36. ]
  37. // 供货单位
  38. export const router_six = [
  39. { icon: 'icon-shangpin', title: '商品管理', router: 'market' },
  40. { icon: 'icon-dingdan', title: '订单管理', router: 'order' },
  41. ]
  42. // 用户类别
  43. export const type = [
  44. { value: '0', label: '超级管理员' },
  45. { value: '1', label: '科室人员' },
  46. { value: '2', label: '办公室人员' },
  47. { value: '3', label: '采购部门' },
  48. { value: '4', label: '入库管理部门' },
  49. { value: '5', label: '财务部门' },
  50. { value: '6', label: '供货单位' },
  51. ]
  52. // 采购需求表状态
  53. export const apply_status = [
  54. { value: '0', label: '待审中' },
  55. { value: '1', label: '通过' },
  56. { value: '-1', label: '拒绝' },
  57. { value: '2', label: '有货,可领取' },
  58. { value: '3', label: '无货,需采买' },
  59. { value: '4', label: '领取确认完成' },
  60. ]
  61. // 采买需求表状态
  62. export const buy_status = [
  63. { value: '0', label: '待供货单位确认' },
  64. { value: '1', label: '同意订单,待送货' },
  65. { value: '-1', label: '拒绝订单,无法送货' },
  66. { value: '2', label: '订单已签收,待供货单位确认' },
  67. { value: '3', label: '待财务确认' },
  68. { value: '4', label: '财务已确认' },
  69. ]
  70. // 库存商品类型
  71. export const stock_type = [
  72. { value: '1', label: '固定资产' },
  73. { value: '2', label: '商品' },
  74. ]