online.js 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. // pages/online/online.js
  2. const app = getApp()
  3. const host = app.globalData.host;
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. tab:1,
  10. array1: ['特种作业'],
  11. index1: 0,
  12. papers:[],
  13. videos:[],
  14. show:0,
  15. video_ids: [],
  16. paper_ids: [],
  17. array1:['特种作业'],
  18. index1:0
  19. },
  20. /**
  21. * 生命周期函数--监听页面加载
  22. */
  23. onLoad: function (options) {
  24. console.log(options,33333333333)
  25. if (options.id){
  26. this.setData({
  27. signup_id: options.id,
  28. class_id: options.class_id,
  29. order_id:options.id
  30. })
  31. }
  32. this.setData({
  33. openid: app.globalData.openid,
  34. class_id: options.class_id,
  35. order_id:options.id
  36. })
  37. if(options.tab){
  38. this.setData({
  39. tab: options.tab
  40. })
  41. }
  42. this.getData();
  43. this.getClockStatus()
  44. },
  45. tabChange:function(e){
  46. this.setData({
  47. tab:e.target.dataset.id
  48. })
  49. },
  50. getClockStatus:function(){
  51. var that=this
  52. wx.request({
  53. url: host+'/api/wx/clockin/status',
  54. method:'GET',
  55. header: {
  56. openid: this.data.openid
  57. },
  58. data:{
  59. class_id:this.data.class_id,
  60. order_id:this.data.signup_id
  61. },
  62. success:res=>{
  63. if(!res.data.data){
  64. wx.showModal({
  65. title: '提示',
  66. content: '你今天尚未打开,请拍照打卡!',
  67. showCancel:false,
  68. confirmText:'立即打卡',
  69. success (res) {
  70. wx.chooseMedia({
  71. count: 1,
  72. mediaType: ['image'],
  73. sourceType: ['camera'],
  74. camera: 'back',
  75. success(res) {
  76. wx.showLoading({
  77. title: '正在打卡...',
  78. })
  79. wx.uploadFile({
  80. url: host+'/api/wx/uploadfile',
  81. filePath: res.tempFiles[0].tempFilePath,
  82. name: 'file',
  83. formData: {
  84. 'file': res.tempFiles[0].tempFilePath
  85. },
  86. success:res=>{
  87. var data=JSON.parse(res.data)
  88. that.setData({
  89. img:data.data.url
  90. })
  91. that.getClock()
  92. }
  93. })
  94. }
  95. })
  96. }
  97. })
  98. }
  99. }
  100. })
  101. },
  102. getClock:function(){
  103. wx.request({
  104. url: host+'/api/wx/clockin',
  105. method:'POST',
  106. header: {
  107. openid: this.data.openid
  108. },
  109. data:{
  110. class_id:this.data.class_id,
  111. order_id:this.data.signup_id,
  112. img:this.data.img
  113. },
  114. success:res=>{
  115. wx.hideLoading()
  116. wx.showToast({
  117. title: '打卡成功',
  118. })
  119. }
  120. })
  121. },
  122. getData:function(){
  123. wx.request({
  124. url: host+'/api/wx/training/list',
  125. method:'GET',
  126. header: {
  127. openid: this.data.openid
  128. },
  129. data:{},
  130. success:res=>{
  131. let video = res.data.data.videos, papers = res.data.data.papers;
  132. let flag1=1,flag2=1;
  133. var video_ids=[],paper_ids=[]
  134. for(let i=0;i<video.length;i++){
  135. video_ids.push(video[i].id)
  136. if (!video[i].status){
  137. flag1=0
  138. }
  139. };
  140. for (let i = 0; i < papers.length; i++) {
  141. paper_ids.push(papers[i].id)
  142. if (!papers[i].status) {
  143. flag2 = 0
  144. }
  145. };
  146. this.setData({
  147. papers: papers,
  148. videos: video,
  149. show: flag1 || flag2,
  150. paper_ids: paper_ids,
  151. video_ids: video_ids
  152. })
  153. }
  154. })
  155. },
  156. genclasshour:function(){
  157. wx.request({
  158. url: host+'/api/wx/genclasshour',
  159. method:'POST',
  160. header: {
  161. openid: app.globalData.openid
  162. },
  163. data:{
  164. video_ids: this.data.video_ids,
  165. paper_ids: this.data.paper_ids,
  166. signup_id: this.data.signup_id
  167. },
  168. success:res=>{
  169. wx.previewImage({
  170. current: res.data.data.url, // 当前显示图片的http链接
  171. urls: [res.data.data.url] // 需要预览的图片http链接列表
  172. })
  173. }
  174. })
  175. },
  176. /**
  177. * 生命周期函数--监听页面初次渲染完成
  178. */
  179. onReady: function () {
  180. },
  181. /**
  182. * 生命周期函数--监听页面显示
  183. */
  184. onShow: function () {
  185. },
  186. /**
  187. * 生命周期函数--监听页面隐藏
  188. */
  189. onHide: function () {
  190. },
  191. /**
  192. * 生命周期函数--监听页面卸载
  193. */
  194. onUnload: function () {
  195. },
  196. /**
  197. * 页面相关事件处理函数--监听用户下拉动作
  198. */
  199. onPullDownRefresh: function () {
  200. },
  201. /**
  202. * 页面上拉触底事件的处理函数
  203. */
  204. onReachBottom: function () {
  205. },
  206. /**
  207. * 用户点击右上角分享
  208. */
  209. onShareAppMessage: function () {
  210. }
  211. })