questionnaire.js 363 B

1234567891011121314
  1. const config = require("../config")
  2. module.exports = {
  3. // 获取初始互动接口
  4. getInitialInteraction: {
  5. url: config.base_new_url + "pheno/initial_interact_options",
  6. type: "get",
  7. },
  8. // 保存感知结果接口
  9. saveInteractResult: {
  10. url: config.base_new_url + "pheno/interact_record",
  11. type: "post",
  12. },
  13. }