import { cluePicUrl } from '../../config/index'; function getClueQuestion(data) { data._filePath = data.cqFilePath.split(';').map((val) => { return cluePicUrl + val; }); return data; } function getClueQuestionList(dataList) { return dataList.map((v) => { return getClueQuestion(v); }); } export { getClueQuestion, getClueQuestionList };