makePiano.js 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. // pages/makePiano/makePiano.js
  2. const app = getApp()
  3. const util = require("../../utils/util")
  4. const urlDef = require("../../utils/urls")
  5. Page({
  6. /**
  7. * 页面的初始数据
  8. */
  9. data: {
  10. animationBox: {},
  11. animationBg: {},
  12. weekList: [],
  13. curIndex: 0,
  14. array: [
  15. '全部时间',
  16. '08:00 ~ 10:00',
  17. '10:00 ~ 12:00',
  18. '12:00 ~ 14:00',
  19. '14:00 ~ 16:00',
  20. '16:00 ~ 18:00',
  21. '18:00 ~ 20:00',
  22. '20:00 ~ 22:00',
  23. ],
  24. index: 0,
  25. schoolList: [
  26. ],
  27. loading: '上拉加载',
  28. flag: 0,
  29. curStu: null,
  30. pageNum: 0,
  31. hasNextPage: true,
  32. schoolIndex: 0,
  33. timeScope: '0,0',
  34. yFlag: false
  35. },
  36. getWeek: function (e) {
  37. this.setData({
  38. curIndex: e.currentTarget.dataset.index,
  39. pageNum: 0,
  40. schoolList: [],
  41. })
  42. this.queryList();
  43. },
  44. bindPickerChange: function (e) {
  45. this.setData({
  46. index: e.detail.value
  47. })
  48. },
  49. selectTime: function () {
  50. let timeScope = '0,0'
  51. if (this.data.index > 0) {
  52. timeScope = this.data.array[this.data.index].replace(/\s*/g, '').replace('~', ',').replace(/:00/g,'')
  53. }
  54. this.setData({ timeScope: timeScope })
  55. this.showSelect()
  56. this.setData({
  57. pageNum: 0,
  58. schoolList: []
  59. })
  60. this.queryList()
  61. },
  62. resetTime:function(){
  63. let timeScope = '0,0'
  64. this.setData({ timeScope , index: 0})
  65. this.showSelect()
  66. this.queryList()
  67. },
  68. localtionMethod: function () {
  69. var that = this
  70. wx.getLocation({
  71. type: 'wgs84',
  72. success(res) {
  73. // console.log(res)
  74. wx.setStorageSync('latlng', res)
  75. that.queryList()
  76. },
  77. fail(res) {
  78. wx.hideLoading({
  79. success: (res) => {
  80. wx.showModal({
  81. title: '提示',
  82. content: "定位失败,请检查手机'位置服务'或GPS功能已开启并授权小程序位置信息",
  83. })
  84. },
  85. })
  86. }
  87. })
  88. },
  89. showSelect: function () {
  90. var animation = wx.createAnimation({
  91. timingFunction: 'linear',
  92. })
  93. this.animation = animation
  94. var num = 0
  95. var opacity = 0
  96. if (this.data.yFlag == false) {
  97. num = 165
  98. opacity = 0.4
  99. this.setData({
  100. yFlag: true
  101. })
  102. } else {
  103. num = -360
  104. opacity = 0
  105. this.setData({
  106. yFlag: false
  107. })
  108. }
  109. animation.translateY(num).step()
  110. this.setData({
  111. animationBox: animation.export()
  112. })
  113. var animation2 = wx.createAnimation({
  114. timingFunction: 'linear',
  115. })
  116. this.animation2 = animation2
  117. animation2.opacity(opacity).step()
  118. this.setData({
  119. animationBg: animation2.export()
  120. })
  121. },
  122. /**
  123. * 生命周期函数--监听页面加载
  124. */
  125. onLoad: function (options) {
  126. var list = []
  127. for (var i = 0; i < 7; i++) {
  128. var date = util.fun_date(i)
  129. var week = util.fun_week(date)
  130. var json = {
  131. date: date.substring(5, date.length),
  132. ds: date, // 日期 y-m-d
  133. ws: new Date(date).getDay(), // 星期
  134. week: week
  135. }
  136. list.push(json)
  137. }
  138. this.setData({
  139. weekList: list
  140. })
  141. this.localtionMethod()
  142. },
  143. /**
  144. * 生命周期函数--监听页面初次渲染完成
  145. */
  146. onReady: function () {
  147. },
  148. /**
  149. * 生命周期函数--监听页面显示
  150. */
  151. onShow: function () {
  152. this.queryList()
  153. },
  154. /**
  155. * 生命周期函数--监听页面隐藏
  156. */
  157. onHide: function () {
  158. },
  159. /**
  160. * 生命周期函数--监听页面卸载
  161. */
  162. onUnload: function () {
  163. },
  164. /**
  165. * 页面相关事件处理函数--监听用户下拉动作
  166. */
  167. onPullDownRefresh: function () {
  168. },
  169. /**
  170. * 页面上拉触底事件的处理函数
  171. */
  172. onReachBottom: function () {
  173. if (this.data.hasNextPage) {
  174. let pn = this.data.pageNum
  175. this.setData({ loading: '加载中', 'pageNum': ++pn })
  176. this.queryList()
  177. }
  178. },
  179. /**
  180. * 用户点击右上角分享
  181. */
  182. onShareAppMessage: function () {
  183. },
  184. queryList: function () {
  185. const urls = urlDef.urls;
  186. let stu = wx.getStorageSync('student');
  187. if (stu) {
  188. this.setData({ curStu: stu })
  189. let latlng = wx.getStorageSync('latlng')
  190. let latitude = latlng.latitude //30.55473
  191. let longitude = latlng.longitude
  192. let countyCode = '420101'
  193. let params = { 'q.coordinate': longitude + ',' + latitude, 'q.studentId': stu.studentId };
  194. // 'q.regionId': countyCode.substring(0, 4) + '00'
  195. params['q.regionId'] = countyCode.substring(0, 4) + '00'
  196. params.pageNum = this.data.pageNum
  197. util.apiPost(urls.get_near_school, params).then(rs => {
  198. let list = rs.list;
  199. list.map(s => {
  200. s.dist = this.showDist(s.distance)
  201. })
  202. this.setData({
  203. 'hasNextPage': rs.hasNextPage,
  204. 'loading': rs.hasNextPage ? '下拉刷新' : '没有更多数据',
  205. 'schoolList': this.data.schoolList.concat(list)
  206. })
  207. // 默认查询第一个学校的课程
  208. if (list && list.length > 0) {
  209. this.queryClassesList(list[0].id)
  210. }
  211. })
  212. }
  213. },
  214. showDist(d) {
  215. if (d <= 0) {
  216. return '无法定位';
  217. }
  218. if (d > 1000) {
  219. return (d / 1000).toFixed(2) + 'km';
  220. }
  221. return d + 'm';
  222. },
  223. selectSchool: function (e) {
  224. let index = e.currentTarget.dataset.index;
  225. let id = e.currentTarget.dataset.id;
  226. this.setData({ 'schoolIndex': index })
  227. this.queryClassesList(id)
  228. },
  229. collectSchool: function (e) {
  230. let id = e.currentTarget.dataset.id;
  231. const urls = urlDef.urls;
  232. util.apiPost(urls.collect_school + '?q.orgId=' + id + '&q.studentId=' + this.data.curStu.studentId).then((rs) => {
  233. this.setData({
  234. pageNum: 0,
  235. schoolList: []
  236. })
  237. this.queryList()
  238. });
  239. },
  240. queryClassesList: function (sid) {
  241. const urls = urlDef.urls;
  242. let sl = this.data.schoolList;
  243. let s = sl.filter(o => o.id == this.data.schoolList[this.data.schoolIndex].id)[0];
  244. let w = this.data.weekList[this.data.curIndex];
  245. let date = w.ds
  246. let week = w.ws + 1;
  247. let params = { 'q.orgId': this.data.schoolList[this.data.schoolIndex].id, 'q.studentId': this.data.curStu.studentId, 'q.date': date, 'q.week': week, 'q.timeScope': this.data.timeScope }
  248. // params['q.timeScope'] = ''; 时段
  249. util.apiPost(urls.query_school_attence, params).then(rs => {
  250. s.items = rs
  251. this.setData({ schoolList: sl })
  252. })
  253. },
  254. doAppointment: function (e) {
  255. wx.showLoading({
  256. title: '处理中',
  257. mask: true
  258. })
  259. let id = e.currentTarget.dataset.id;
  260. const index = e.currentTarget.dataset.index
  261. const cIndex = e.currentTarget.dataset.cindex
  262. if(this.data.schoolList[index].items[cIndex].hasVisitNum >= this.data.schoolList[index].items[cIndex].maxNum){
  263. wx.hideLoading({
  264. success: (res) => {
  265. wx.showToast({
  266. title: '预约上限已满',
  267. icon: 'none'
  268. })
  269. },
  270. })
  271. return
  272. }
  273. const urls = urlDef.urls;
  274. let w = this.data.weekList[this.data.curIndex];
  275. let sid = this.data.schoolList[this.data.schoolIndex].id
  276. util.apiPost(urls.do_appointment + '?q.studentId=' + this.data.curStu.studentId + '&q.planId=' + id + '&q.orgId=' + sid + '&q.visitDate=' + w.ds).then(rs => {
  277. if (rs.success > 0) {
  278. wx.showToast({
  279. title: '预约成功'
  280. })
  281. this.queryClassesList(this.data.curStu.orgId)
  282. } else {
  283. wx.showToast({
  284. title: rs.msg,
  285. icon: 'none',
  286. })
  287. }
  288. });
  289. },
  290. toQueueUp(e) {
  291. let id = e.currentTarget.dataset.id;
  292. let w = this.data.weekList[this.data.curIndex];
  293. let sid = this.data.schoolList[this.data.schoolIndex].id
  294. wx.navigateTo({
  295. url: '/pages/queue/queue?planId=' + id + '&orgId=' + sid + '&visitDate=' + w.ds
  296. })
  297. }
  298. })