online.js 4.7 KB

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