var fly = require('../utils/request.js') module.exports = { getQuestionList: getQuestionList, getMyQuestionList:getMyQuestionList, submitAnswer:submitAnswer } // 工作端--待解答的心理咨询问题列表 function getQuestionList(param) { return fly.get('work/property/psychology/listQuestion', param) } // 工作端--我解答的心理咨询问题列表 function getMyQuestionList(param) { return fly.get('work/property/psychology/listMyQuestion', param) } // 工作端--心理咨询-提交问题的回答 function submitAnswer(param) { return fly.post('work/property/psychology/submitAnswer', param) }