'use strict'; /** * 标段相关常量 * * @author CaiAoLin * @date 2018/2/5 * @version */ // 标段状态 const status = { APPROVAL: 1, }; const statusString = []; statusString[status.APPROVAL] = '审批中'; // 标段类型 const type = { TJ: 1, }; const typeString = []; typeString[type.TJ] = '土建标'; module.exports = { status, statusString, type, typeString, };