groupdetail.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. // pages/groupdetail/groupdetail.js
  2. const app = getApp();
  3. const api = require('../../api/api');
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. navbarData: {
  10. showCapsule: 1,
  11. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  12. },
  13. classify:[
  14. "生鲜","教育","熟食","生鲜","教育","熟食","甜点糕点","生活用品"
  15. ],
  16. pintuan:[
  17. {
  18. title:"拼团内容这里全是拼团内容",plan:67,time:"倒计时3天12小时",statu:1,goods:['https://img.alicdn.com/imgextra/i3/103680052/O1CN01DyoqTe1CFrKNUj4Gj_!!0-saturn_solar.jpg_270x270.jpg','https://img.alicdn.com/imgextra/i3/103680052/O1CN01DyoqTe1CFrKNUj4Gj_!!0-saturn_solar.jpg_270x270.jpg','https://img.alicdn.com/imgextra/i3/103680052/O1CN01DyoqTe1CFrKNUj4Gj_!!0-saturn_solar.jpg_270x270.jpg','https://img.alicdn.com/imgextra/i3/103680052/O1CN01DyoqTe1CFrKNUj4Gj_!!0-saturn_solar.jpg_270x270.jpg','https://img.alicdn.com/imgextra/i3/103680052/O1CN01DyoqTe1CFrKNUj4Gj_!!0-saturn_solar.jpg_270x270.jpg']
  19. },{
  20. title:"拼团内容这里又是拼团内容",plan:80,time:"倒计时3天13小时",statu:1,goods:['https://img.alicdn.com/imgextra/i3/103680052/O1CN01DyoqTe1CFrKNUj4Gj_!!0-saturn_solar.jpg_270x270.jpg']
  21. },{
  22. title:"拼团内容这里截团了",plan:100,time:"2022-03-11 15:42",statu:0,goods:['https://img.alicdn.com/imgextra/i3/103680052/O1CN01DyoqTe1CFrKNUj4Gj_!!0-saturn_solar.jpg_270x270.jpg','https://img.alicdn.com/imgextra/i3/103680052/O1CN01DyoqTe1CFrKNUj4Gj_!!0-saturn_solar.jpg_270x270.jpg','https://img.alicdn.com/imgextra/i3/103680052/O1CN01DyoqTe1CFrKNUj4Gj_!!0-saturn_solar.jpg_270x270.jpg','https://img.alicdn.com/imgextra/i3/103680052/O1CN01DyoqTe1CFrKNUj4Gj_!!0-saturn_solar.jpg_270x270.jpg','https://img.alicdn.com/imgextra/i3/103680052/O1CN01DyoqTe1CFrKNUj4Gj_!!0-saturn_solar.jpg_270x270.jpg']
  23. }
  24. ],
  25. dingyue:false,
  26. showphone:false,
  27. phone:[{name:'15283737271'}],
  28. showfen:false,
  29. fenxiang:[{name:'分享给朋友'},{name:'分享到朋友圈'}],
  30. height:0,
  31. showdingyue:false
  32. },
  33. onClose(){
  34. this.setData({
  35. showdingyue:false
  36. })
  37. },
  38. dingyues(){
  39. if(this.data.dingyue){
  40. this.setData({
  41. showdingyue:true
  42. })
  43. }else{
  44. this.setData({
  45. dingyue:true
  46. })
  47. }
  48. // this.setData({
  49. // dingyue:!this.data.dingyue,
  50. // showdingyue:true
  51. // })
  52. },
  53. queding(){
  54. this.setData({
  55. dingyue:false,
  56. showdingyue:false
  57. })
  58. },
  59. showfens(){
  60. this.setData({
  61. showfen:true
  62. })
  63. },
  64. showphones(){
  65. this.setData({
  66. showphone:true
  67. })
  68. },
  69. offzhe(){
  70. this.setData({
  71. showfen:false,
  72. showphone:false
  73. })
  74. },
  75. phoneok(e){
  76. wx.makePhoneCall({
  77. phoneNumber: e.detail.name,
  78. })
  79. },
  80. fenok(e){
  81. console.log("我点击分享了")
  82. },
  83. /**
  84. * 生命周期函数--监听页面加载
  85. */
  86. onLoad: function (options) {
  87. this.setData({
  88. height: app.globalData.height
  89. })
  90. },
  91. /**
  92. * 生命周期函数--监听页面初次渲染完成
  93. */
  94. onReady: function () {
  95. },
  96. /**
  97. * 生命周期函数--监听页面显示
  98. */
  99. onShow: function () {
  100. },
  101. /**
  102. * 生命周期函数--监听页面隐藏
  103. */
  104. onHide: function () {
  105. },
  106. /**
  107. * 生命周期函数--监听页面卸载
  108. */
  109. onUnload: function () {
  110. },
  111. /**
  112. * 页面相关事件处理函数--监听用户下拉动作
  113. */
  114. onPullDownRefresh: function () {
  115. },
  116. /**
  117. * 页面上拉触底事件的处理函数
  118. */
  119. onReachBottom: function () {
  120. },
  121. /**
  122. * 用户点击右上角分享
  123. */
  124. onShareAppMessage: function () {
  125. }
  126. })