approve-item.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /**
  2. * @description 设置审核Row的数据内容、我的申请内容数据
  3. */
  4. import store from "@/store"
  5. const degree2Txt = store.getters['enum/getDegreeText']
  6. const getapplyTypeText = store.getters["enum/getapplyTypeText"]
  7. const getOfferTypeList = store.getters["enum/getOfferTypeList"]
  8. export function formatApproveItemRow(data, type) {
  9. if (typeof type !== 'number') type = Number(type)
  10. let arrs = []
  11. switch (type) {
  12. case 1:
  13. arrs = [
  14. {
  15. label: '申请事由',
  16. val: data.reason
  17. },
  18. {
  19. label: '申购类型',
  20. val: getapplyTypeText(data.type)
  21. },
  22. // 只有货物采购时才有商品列表展示
  23. data.type == 1 && Array.isArray(data.apply_goods) ? {
  24. label: '申购商品',
  25. // 商品大于三件时 展示 xxx、xx等商品
  26. val: data.apply_goods.length > 3 ? data.apply_goods.map(goods => goods.goods_name).slice(0, 4).join(',') + '等商品' : data.apply_goods.map(goods => goods.goods_name).join(',')
  27. } : undefined
  28. ]
  29. break
  30. case 2:
  31. arrs = [
  32. { label: '申请标题', val: data.reason },
  33. { label: '呈批类型', val: getOfferTypeList(data.type) },
  34. { label: '缓急程度', val: degree2Txt(data.desc) }
  35. ]
  36. break
  37. case 3:
  38. arrs = [
  39. { label: '物品名称', val: '' }
  40. // { label: '', val: '' },
  41. // { label: '', val: '' },
  42. ]
  43. break
  44. case 4:
  45. arrs = [
  46. { label: '领用物品', val: '' },
  47. { label: '物品用途', val: data.reason }
  48. ]
  49. break
  50. case 5: // 出差申请展示内容
  51. arrs = [
  52. {
  53. label: '发起事由',
  54. val: data.reason
  55. },
  56. {
  57. label: '同行人员',
  58. val: Array.isArray(data.peer_user) && data.peer_user.length ? data.peer_user.map(user => (user.name)).join('、') : '暂无同行人员'
  59. },
  60. {
  61. label: '出差时间',
  62. val: `${data.start_time} — ${data.end_time}`
  63. }
  64. ]
  65. break
  66. case 6:
  67. arrs = [
  68. { label: '请假类型', val: data.type },
  69. { label: '开始时间', val: `${data.start_time} ${data.start_am}` },
  70. { label: '结束时间', val: `${data.end_time} ${data.end_am}` }
  71. ]
  72. break
  73. case 7:
  74. arrs = [
  75. { label: '用车地点', val: data.reason },
  76. { label: '出发时间', val: data.start_time },
  77. { label: '返回时间', val: data.end_time }
  78. ]
  79. break
  80. case 8:
  81. arrs = [
  82. { label: '维修地点', val: data.reason },
  83. { label: '具体内容', val: data.desc }
  84. ]
  85. break
  86. case 9:
  87. arrs = [
  88. { label: '合同编号', val: data.reason },
  89. { label: '拟稿日期', val: data.createTime },
  90. { label: '缓急程度', val: degree2Txt(data.desc) }
  91. ]
  92. break
  93. case 10:
  94. arrs = [
  95. { label: '来文单位', val: data.reason },
  96. { label: '文件名称', val: data.desc }
  97. ]
  98. break
  99. case 11:
  100. arrs = [
  101. { label: '文件名称', val: data.reason },
  102. { label: '拟发文时间', val: data.apply_date },
  103. { label: '缓急程度', val: degree2Txt(data.desc) }
  104. ]
  105. break
  106. }
  107. return arrs.filter(item => item)
  108. }