subject.js 4.6 KB

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