@zykjcommon/questions 0.0.12 → 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/.env.production +2 -1
  2. package/.env.test +2 -1
  3. package/dist/zykjcommon-questions.common.js +14850 -2485
  4. package/dist/zykjcommon-questions.css +1 -1
  5. package/dist/zykjcommon-questions.umd.js +14851 -2494
  6. package/dist/zykjcommon-questions.umd.min.js +24 -1
  7. package/package.json +2 -2
  8. package/src/App.vue +2 -0
  9. package/src/assets/js/fun.js +23 -2
  10. package/src/assets/js/http.js +1 -1
  11. package/src/assets/scss/questions/index.scss +85 -22
  12. package/src/components/common/IframeComponent.vue +60 -76
  13. package/src/components/common/Loading.vue +9 -20
  14. package/src/components/common/TextAreaEditor.vue +72 -87
  15. package/src/components/exam/QuestionCard.vue +3 -3
  16. package/src/components/questions/QuestionReader.js +4 -4
  17. package/src/components/questions/Question_BriefAnswer.vue +146 -0
  18. package/src/components/questions/Question_FillBlank.vue +151 -0
  19. package/src/components/questions/Question_MultipleChoice.vue +179 -0
  20. package/src/components/questions/Question_Programming.vue +285 -0
  21. package/src/components/questions/Question_Reading.vue +173 -0
  22. package/src/components/questions/Question_SingleChoice.vue +7 -21
  23. package/src/components/questions/buildEntry.js +130 -5
  24. package/src/components/questions/const.js +15 -0
  25. package/src/components/questions/developmentEntry.js +130 -5
  26. package/src/components/questions/entry.js +2 -19
  27. package/src/components/questions/store.js +44 -0
  28. package/src/main.ts +17 -13
  29. package/src/views/exam/Analysis.vue +620 -7
  30. package/src/views/exam/Exam.vue +612 -11
  31. package/vue.config.js +8 -4
package/.env.production CHANGED
@@ -4,7 +4,8 @@
4
4
  # js代码中引用:process.env.VUE_APP_EXAMPLE
5
5
 
6
6
  BASE_URL = https://jsl-static.thedeer.cn/recruit-exam/
7
- VUE_APP_SERVER = https://jsl-api.thedeer.cn/education/
7
+ #VUE_APP_SERVER = https://jsl-api.thedeer.cn/education/
8
+ VUE_APP_SERVER = https://jsl-api.thedeer.cn/student-web/
8
9
  #正式环境地址
9
10
  #https://jsl-exam.thedeer.cn/
10
11
 
package/.env.test CHANGED
@@ -6,7 +6,8 @@
6
6
  NODE_ENV = production
7
7
  VUE_APP_FLAG = test
8
8
  BASE_URL = https://pre-jsl-recruit-exam.thedeer.cn
9
- VUE_APP_SERVER = https://pre-api.thedeer.cn/education/
9
+ #VUE_APP_SERVER = https://pre-api.thedeer.cn/education/
10
+ VUE_APP_SERVER = https://pre-api.thedeer.cn/student-web/
10
11
 
11
12
  VUE_APP_ERROR_SERVER = https://pre-api.thedeer.cn
12
13
  VUE_APP_ENV = 'pre'