subject.js 5.0 KB

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