subject.js 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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. }
  110. })
  111. this.setData({
  112. ans:ans,
  113. data:data
  114. })
  115. },
  116. // 答题卡题目跳转
  117. skip(e){
  118. this.setData({
  119. idx:e.target.dataset.id+1,
  120. show:0
  121. })
  122. },
  123. next:function(){
  124. const idx=this.data.idx+1
  125. const cur = this.data.idx -1
  126. this.setData({
  127. idx:idx
  128. })
  129. // if (!this.data.ans[cur].answer){
  130. // wx.showToast({
  131. // title: '请选择答案',
  132. // icon: 'none',
  133. // duration: 2000
  134. // })
  135. // }else{
  136. // this.setData({
  137. // idx:idx
  138. // })
  139. // }
  140. },
  141. prev: function () {
  142. const idx = this.data.idx - 1
  143. this.setData({
  144. idx: idx
  145. })
  146. },
  147. post:function(){
  148. var _this=this,txt='您确认要交卷吗?'
  149. if(this.data.ans.length < this.data.data.questions.length){
  150. if(this.data.data.paper_type == 'exam'){
  151. wx.showToast({
  152. title: '您还有题目没有作答,请完成后再交卷!',
  153. icon:'none'
  154. })
  155. return
  156. }
  157. txt='您还有题目没有作答,确认要交卷吗?'
  158. }
  159. let url=host + '/api/wx/postpaper'
  160. if(this.data.rePost){
  161. url=host + '/api/wx/paper/retry'
  162. }
  163. wx.showModal({
  164. title: '交卷确认',
  165. content: txt,
  166. success(res) {
  167. if (res.confirm) {
  168. wx.request({
  169. url: url,
  170. data: {
  171. paper_id: _this.data.id,
  172. questions: _this.data.ans
  173. },
  174. header: {
  175. openid: app.globalData.openid
  176. },
  177. method: 'POST',
  178. success: res => {
  179. console.log(res.data)
  180. if (res.data.code == 0) {
  181. wx.showModal({
  182. title: res.data.data.score+'分',
  183. content: '您本次考试得分',
  184. showCancel: false,
  185. success(res) {
  186. if (res.confirm) {
  187. wx.navigateTo({
  188. url: '../online/online?tab=1&class_id='+_this.data.class_id+'&id='+_this.data.order_id,
  189. })
  190. }
  191. }
  192. })
  193. }
  194. }
  195. })
  196. }
  197. }
  198. })
  199. },
  200. /**
  201. * 生命周期函数--监听页面初次渲染完成
  202. */
  203. onReady: function () {
  204. },
  205. /**
  206. * 生命周期函数--监听页面显示
  207. */
  208. onShow: function () {
  209. },
  210. /**
  211. * 生命周期函数--监听页面隐藏
  212. */
  213. onHide: function () {
  214. },
  215. /**
  216. * 生命周期函数--监听页面卸载
  217. */
  218. onUnload: function () {
  219. },
  220. /**
  221. * 页面相关事件处理函数--监听用户下拉动作
  222. */
  223. onPullDownRefresh: function () {
  224. },
  225. /**
  226. * 页面上拉触底事件的处理函数
  227. */
  228. onReachBottom: function () {
  229. },
  230. /**
  231. * 用户点击右上角分享
  232. */
  233. onShareAppMessage: function () {
  234. }
  235. })