'use strict'; /** * 消息提示类型 * * @author CaiAoLin * @date 2017/9/29 * @version */ const messageType = { SUCCESS: 'success', ERROR: 'error', INFO: 'info', WARNING: 'warning', }; module.exports = messageType;