1234567891011121314151617181920212223 |
- 'use strict';
- /**
- *
- *
- * @author Mai
- * @date 2018/4/25
- * @version
- */
- // 指标节点绑定类别
- const matchType = {
- code: 1,
- name: 2,
- }
- const matchTypeStr = [];
- matchTypeStr[matchType.code] = '匹配分项编号';
- matchTypeStr[matchType.name] = '匹配分项名称';
- module.exports = {
- matchType,
- matchTypeStr
- };
|