project_log.js 725 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. 'use strict';
  2. /**
  3. * 项目操作日志
  4. *
  5. * @author ELlisran
  6. * @date 2021/01/12
  7. * @version
  8. */
  9. // 操作模块
  10. const type = {
  11. all: 0,
  12. tender: 1,
  13. stage: 2,
  14. change: 3,
  15. material: 4,
  16. };
  17. const type_list = [
  18. { code: 'all', type: type.all, name: '全部模块' },
  19. { code: 'tender', type: type.tender, name: '标段' },
  20. { code: 'stage', type: type.stage, name: '计量期' },
  21. { code: 'change', type: type.change, name: '变更令' },
  22. { code: 'material', type: type.material, name: '材料调差' },
  23. ];
  24. // 操作状态
  25. const status = {
  26. delete: 1, // 删除
  27. };
  28. const status_list = [
  29. '',
  30. '删除',
  31. ];
  32. module.exports = {
  33. type,
  34. type_list,
  35. status,
  36. status_list,
  37. };