online.js 4.8 KB

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