tuanzdetail2status.js 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. // pages/helpsell/helpsell.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. height: 0,
  14. classify: [
  15. "生鲜", "教育", "熟食", "生鲜", "教育", "熟食", "甜点糕点", "生活用品"
  16. ],
  17. sidetabs: ["全部", "肉类", "海鲜", "教育", "熟食", "生活用品"],
  18. pintuan: [{
  19. title: "拼团内容这里全是拼团内容",
  20. plan: 67,
  21. time: "倒计时3天12小时",
  22. statu: 1,
  23. 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']
  24. }, {
  25. title: "拼团内容这里又是拼团内容",
  26. plan: 80,
  27. time: "倒计时3天13小时",
  28. statu: 1,
  29. goods: ['https://img.alicdn.com/imgextra/i3/103680052/O1CN01DyoqTe1CFrKNUj4Gj_!!0-saturn_solar.jpg_270x270.jpg']
  30. }, {
  31. title: "拼团内容这里截团了",
  32. plan: 100,
  33. time: "2022-03-11 15:42",
  34. statu: 0,
  35. 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']
  36. }],
  37. showphone: false,
  38. phone: [{
  39. name: ''
  40. }],
  41. showfen: false,
  42. fenxiang: [{
  43. name: '分享给朋友'
  44. }, {
  45. name: '分享到朋友圈'
  46. }],
  47. sideindex: 0,
  48. enterType: 0, //进入类型
  49. /* 表单 */
  50. id: 0, //申请表ID
  51. uid: 0, //团长ID
  52. user_info: {}, //用户信息
  53. info: {}, //信息
  54. pintuan: [], //拼团列表
  55. detail: {}, //详情
  56. },
  57. _navback() {
  58. wx.navigateBack()
  59. },
  60. showfens() {
  61. this.setData({
  62. showfen: true
  63. })
  64. },
  65. sidetap(e) {
  66. this.setData({
  67. sideindex: e.currentTarget.dataset.index
  68. })
  69. },
  70. showphones() {
  71. this.setData({
  72. showphone: true
  73. })
  74. },
  75. offzhe() {
  76. this.setData({
  77. showfen: false,
  78. showphone: false
  79. })
  80. },
  81. phoneok(e) {
  82. wx.makePhoneCall({
  83. phoneNumber: e.detail.name,
  84. })
  85. },
  86. gobianji() {
  87. wx.navigateTo({
  88. url: '/pages/userinfo/userinfo',
  89. })
  90. },
  91. fenok(e) {
  92. if (e.detail.name === '分享给朋友') {
  93. console.log('分享朋友');
  94. } else {
  95. wx.navigateTo({
  96. url: '/pages/sharetofirend/sharetofirend',
  97. })
  98. }
  99. },
  100. /**
  101. * 生命周期函数--监听页面加载
  102. */
  103. onLoad: function (options) {
  104. let that = this;
  105. this.setData({
  106. height: app.globalData.height,
  107. enterType: Number(options.type),
  108. id: Number(options.id),
  109. uid: Number(options.uid)
  110. })
  111. console.log(options);
  112. // 获取团长详情
  113. wx.showLoading({
  114. title: '加载中',
  115. mask: true
  116. })
  117. wx.request({
  118. url: api.Head_info,
  119. header: {
  120. 'Authorization': wx.getStorageSync('token')
  121. },
  122. data: {
  123. id: that.data.uid,
  124. },
  125. success(res) {
  126. console.log(res);
  127. if (res.data.code === 1) {
  128. that.setData({
  129. user_info: res.data.data.user_info,
  130. classify: res.data.data.classification_info,
  131. info: res.data.data.info,
  132. pintuan: res.data.data.gang_list,
  133. phone: [{
  134. name: res.data.data.user_info.phone
  135. }]
  136. })
  137. } else {
  138. wx.showToast({
  139. title: res.data.msg,
  140. mask: true,
  141. icon: 'none'
  142. })
  143. }
  144. },
  145. fail(err) {
  146. wx.showToast({
  147. title: '发起网络请求失败',
  148. icon: 'none',
  149. mask: true
  150. })
  151. },
  152. complete() {
  153. wx.hideLoading()
  154. }
  155. })
  156. wx.request({
  157. url: api.Sellgoods_time,
  158. header: {
  159. 'Authorization': wx.getStorageSync('token')
  160. },
  161. data: {
  162. id: that.data.id,
  163. },
  164. success(res) {
  165. console.log(res);
  166. if (res.data.code === 1) {
  167. that.setData({
  168. detail: res.data.data
  169. })
  170. } else {
  171. wx.showToast({
  172. title: res.data.msg,
  173. mask: true,
  174. icon: 'none'
  175. })
  176. }
  177. },
  178. fail(err) {
  179. wx.showToast({
  180. title: '发起网络请求失败',
  181. icon: 'none',
  182. mask: true
  183. })
  184. },
  185. complete() {
  186. wx.hideLoading()
  187. }
  188. })
  189. },
  190. /**
  191. * 生命周期函数--监听页面初次渲染完成
  192. */
  193. onReady: function () {
  194. },
  195. /**
  196. * 生命周期函数--监听页面显示
  197. */
  198. onShow: function () {
  199. },
  200. /**
  201. * 生命周期函数--监听页面隐藏
  202. */
  203. onHide: function () {
  204. },
  205. /**
  206. * 生命周期函数--监听页面卸载
  207. */
  208. onUnload: function () {
  209. },
  210. /**
  211. * 页面相关事件处理函数--监听用户下拉动作
  212. */
  213. onPullDownRefresh: function () {
  214. },
  215. /**
  216. * 页面上拉触底事件的处理函数
  217. */
  218. onReachBottom: function () {
  219. },
  220. /**
  221. * 用户点击右上角分享
  222. */
  223. onShareAppMessage: function () {
  224. },
  225. // 跳转团长微信二维码
  226. navToWXQrcode() {
  227. let headimg = this.data.user_info.headimg;
  228. let name = this.data.user_info.name;
  229. let wechat_code = this.data.user_info.wechat_code;
  230. wx.navigateTo({
  231. url: '/pages/wxqrcode/wxqrcode?headimg=' + headimg + '&name=' + name + '&wechat_code=' + wechat_code
  232. })
  233. },
  234. })