template_node.js 337 B

1234567891011121314151617181920212223
  1. 'use strict';
  2. /**
  3. *
  4. *
  5. * @author Mai
  6. * @date 2018/4/25
  7. * @version
  8. */
  9. // 指标节点绑定类别
  10. const matchType = {
  11. code: 1,
  12. name: 2,
  13. }
  14. const matchTypeStr = [];
  15. matchTypeStr[matchType.code] = '匹配分项编号';
  16. matchTypeStr[matchType.name] = '匹配分项名称';
  17. module.exports = {
  18. matchType,
  19. matchTypeStr
  20. };