subject.js 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. // pages/subject/subject.js
  2. const app = getApp()
  3. const host = app.globalData.host;
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. data:{},
  10. idx:1,
  11. ans:[],
  12. id:'',
  13. show:0,
  14. flag:[
  15. {name:'正确',value:'对'},
  16. {name:'错误',value:'错'}
  17. ],
  18. rePost:0
  19. },
  20. /**
  21. * 生命周期函数--监听页面加载
  22. */
  23. onLoad: function (options) {
  24. // options.id=58
  25. // options.status=1
  26. wx.request({
  27. url: host+'/api/wx/paper/info',
  28. data: { id: options.id,order_id:options.order_id},
  29. header: {
  30. openid: app.globalData.openid
  31. },
  32. method:'GET',
  33. success:res=>{
  34. this.setData({
  35. data:res.data.data,
  36. ans:res.data.data.post_answer,
  37. id:options.id,
  38. status:res.data.data.mark_status,
  39. time:res.data.data.time_limit,
  40. class_id:options.class_id,
  41. order_id:options.order_id
  42. })
  43. if(this.data.mark_status == 1) return
  44. this.countDown(res.data.data.time_limit)
  45. }
  46. })
  47. },
  48. countDown:function(time){
  49. var m=time-1,s=59,_this=this;
  50. var down=setInterval(function(){
  51. s--
  52. if(s==0 && m>0){
  53. m--;
  54. s=59
  55. }
  56. if(s==0 && m == 0){
  57. clearInterval(down)
  58. _this.post();
  59. }
  60. _this.setData({
  61. time:m+"分"+s+"秒"
  62. })
  63. },1000)
  64. },
  65. openAns(){
  66. this.setData({
  67. show:1
  68. })
  69. },
  70. closeAns(){
  71. this.setData({
  72. show:0
  73. })
  74. },
  75. //重做
  76. reDo(){
  77. let data=this.data.data
  78. data.questions.forEach(item=>{
  79. item.post_answer=''
  80. })
  81. this.setData({
  82. idx:1,
  83. status:0,
  84. rePost:1,
  85. data:data
  86. })
  87. this.countDown(this.data.time)
  88. },
  89. answer:function(e){
  90. let id = e.target.dataset.id, value = e.detail.value
  91. let ans = this.data.ans
  92. let data=this.data.data
  93. let old=ans.filter(item=>item.id == id)
  94. if (old.length>0){
  95. for (let i = 0; i < ans.length; i++) {
  96. if (ans[i].id == id) {
  97. ans[i].answer = e.detail.value
  98. }
  99. }
  100. }else{
  101. ans.push({
  102. id:id,
  103. answer:value
  104. })
  105. }
  106. data.questions.forEach(item=>{
  107. if(id == item.id){
  108. item.post_answer=value
  109. item.post_answer_str=''
  110. }
  111. })
  112. this.setData({
  113. ans:ans,
  114. data:data
  115. })
  116. },
  117. // 答题卡题目跳转
  118. skip(e){
  119. this.setData({
  120. idx:e.target.dataset.id+1,
  121. show:0
  122. })
  123. },
  124. next:function(){
  125. const idx=this.data.idx+1
  126. const cur = this.data.idx -1
  127. this.setData({
  128. idx:idx
  129. })
  130. // if (!this.data.ans[cur].answer){
  131. // wx.showToast({
  132. // title: '请选择答案',
  133. // icon: 'none',
  134. // duration: 2000
  135. // })
  136. // }else{
  137. // this.setData({
  138. // idx:idx
  139. // })
  140. // }
  141. },
  142. prev: function () {
  143. const idx = this.data.idx - 1
  144. this.setData({
  145. idx: idx
  146. })
  147. },
  148. post:function(){
  149. var _this=this,txt='您确认要交卷吗?'
  150. if(this.data.ans.length < this.data.data.questions.length){
  151. if(this.data.data.paper_type == 'exam'){
  152. wx.showToast({
  153. title: '您还有题目没有作答,请完成后再交卷!',
  154. icon:'none'
  155. })
  156. return
  157. }
  158. txt='您还有题目没有作答,确认要交卷吗?'
  159. }
  160. let url=host + '/api/wx/postpaper'
  161. if(this.data.rePost){
  162. url=host + '/api/wx/paper/retry'
  163. }
  164. wx.showModal({
  165. title: '交卷确认',
  166. content: txt,
  167. success(res) {
  168. if (res.confirm) {
  169. wx.request({
  170. url: url,
  171. data: {
  172. paper_id: _this.data.id,
  173. questions: _this.data.ans
  174. },
  175. header: {
  176. openid: app.globalData.openid
  177. },
  178. method: 'POST',
  179. success: res => {
  180. console.log(res.data)
  181. if (res.data.code == 0) {
  182. wx.showModal({
  183. title: res.data.data.score+'分',
  184. content: '您本次考试得分',
  185. showCancel: false,
  186. success(res) {
  187. if (res.confirm) {
  188. wx.navigateTo({
  189. url: '../online/online?tab=1&class_id='+_this.data.class_id+'&id='+_this.data.order_id,
  190. })
  191. }
  192. }
  193. })
  194. }
  195. }
  196. })
  197. }
  198. }
  199. })
  200. },
  201. /**
  202. * 生命周期函数--监听页面初次渲染完成
  203. */
  204. onReady: function () {
  205. },
  206. /**
  207. * 生命周期函数--监听页面显示
  208. */
  209. onShow: function () {
  210. },
  211. /**
  212. * 生命周期函数--监听页面隐藏
  213. */
  214. onHide: function () {
  215. },
  216. /**
  217. * 生命周期函数--监听页面卸载
  218. */
  219. onUnload: function () {
  220. },
  221. /**
  222. * 页面相关事件处理函数--监听用户下拉动作
  223. */
  224. onPullDownRefresh: function () {
  225. },
  226. /**
  227. * 页面上拉触底事件的处理函数
  228. */
  229. onReachBottom: function () {
  230. },
  231. /**
  232. * 用户点击右上角分享
  233. */
  234. onShareAppMessage: function () {
  235. }
  236. })