tuanzdetail.js 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  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. sidetabs: [{
  16. id: null,
  17. classification_name: '全部'
  18. }],
  19. pintuan: [],
  20. showphone: false,
  21. phone: [{
  22. name: ''
  23. }],
  24. showfen: false,
  25. fenxiang: [{
  26. name: '分享给朋友'
  27. }, {
  28. name: '分享到朋友圈'
  29. }],
  30. sideindex: 0,
  31. enterType: 0, //进入类型(0:供应大厅;1:正在帮卖;2:我的申请-未审核-审核中;3:我的申请-已审核-审核拒绝;4:我的申请-已审核-审核同意;)
  32. /* 表单 */
  33. id: 0, //团长id
  34. commodity_list: [], //商品列表
  35. info: {}, //拼团信息
  36. user_info: {}, //用户信息
  37. },
  38. _navback() {
  39. wx.navigateBack()
  40. },
  41. // 显示分享菜单
  42. showfens() {
  43. this.setData({
  44. showfen: true
  45. })
  46. },
  47. // 点击切换侧边栏
  48. sidetap(e) {
  49. this.setData({
  50. sideindex: e.currentTarget.dataset.index
  51. })
  52. },
  53. // 显示拨打电话菜单
  54. showphones() {
  55. this.setData({
  56. showphone: true
  57. })
  58. },
  59. // 关闭
  60. offzhe() {
  61. this.setData({
  62. showfen: false,
  63. showphone: false
  64. })
  65. },
  66. // 确认拨打电话
  67. phoneok(e) {
  68. wx.makePhoneCall({
  69. phoneNumber: e.detail.name,
  70. })
  71. },
  72. // 编辑团长信息
  73. gobianji() {
  74. wx.navigateTo({
  75. url: '/pages/userinfo/userinfo',
  76. })
  77. },
  78. // 点击分享
  79. fenok(e) {
  80. console.log("我点击分享了")
  81. },
  82. /**
  83. * 生命周期函数--监听页面加载
  84. */
  85. onLoad: function (options) {
  86. this.setData({
  87. height: app.globalData.height
  88. })
  89. this.setData({
  90. id: Number(options.id),
  91. enterType: Number(options.type)
  92. })
  93. let that = this;
  94. wx.showLoading({
  95. title: '加载中',
  96. mask: true
  97. })
  98. wx.request({
  99. url: api.Supplyhall_head_info,
  100. header: {
  101. 'Authorization': wx.getStorageSync('token')
  102. },
  103. method: 'POST',
  104. data: {
  105. id: that.data.id
  106. },
  107. success(res) {
  108. console.log(res);
  109. if (res.data.code === 1) {
  110. let arr = that.data.sidetabs;
  111. arr = arr.concat(res.data.data.classification_info);
  112. that.setData({
  113. classify: res.data.data.classification_info,
  114. commodity_list: res.data.data.commodity_list,
  115. info: res.data.data.info,
  116. user_info: res.data.data.user_info,
  117. phone: [{
  118. name: res.data.data.user_info.phone
  119. }],
  120. sidetabs: arr
  121. })
  122. } else {
  123. wx.showToast({
  124. title: res.data.msg,
  125. mask: true,
  126. icon: 'none'
  127. })
  128. }
  129. },
  130. fail(err) {
  131. wx.showToast({
  132. title: '发起网络请求失败',
  133. icon: 'none',
  134. mask: true
  135. })
  136. },
  137. complete() {
  138. wx.hideLoading()
  139. }
  140. })
  141. },
  142. /**
  143. * 生命周期函数--监听页面初次渲染完成
  144. */
  145. onReady: function () {
  146. },
  147. /**
  148. * 生命周期函数--监听页面显示
  149. */
  150. onShow: function () {
  151. },
  152. /**
  153. * 生命周期函数--监听页面隐藏
  154. */
  155. onHide: function () {
  156. },
  157. /**
  158. * 生命周期函数--监听页面卸载
  159. */
  160. onUnload: function () {
  161. },
  162. /**
  163. * 页面相关事件处理函数--监听用户下拉动作
  164. */
  165. onPullDownRefresh: function () {
  166. },
  167. /**
  168. * 页面上拉触底事件的处理函数
  169. */
  170. onReachBottom: function () {
  171. },
  172. /**
  173. * 用户点击右上角分享
  174. */
  175. onShareAppMessage: function () {
  176. },
  177. // 申请帮卖
  178. applyHelpSell() {
  179. let that = this;
  180. wx.showLoading({
  181. title: '提交中',
  182. mask: true
  183. })
  184. wx.request({
  185. url: api.Supplyhall_apply,
  186. header: {
  187. 'Authorization': wx.getStorageSync('token')
  188. },
  189. method: 'POST',
  190. data: {
  191. id: that.data.id
  192. },
  193. success(res) {
  194. wx.hideLoading()
  195. console.log(res);
  196. if (res.data.code === 1) {
  197. wx.showToast({
  198. title: '提交成功',
  199. mask: true,
  200. success() {
  201. setTimeout(() => {
  202. wx.navigateBack({
  203. delta: 1,
  204. })
  205. }, 1500)
  206. }
  207. })
  208. } else {
  209. wx.showToast({
  210. title: res.data.msg,
  211. mask: true,
  212. icon: 'none',
  213. duration: 2000,
  214. success() {
  215. setTimeout(() => {
  216. if (res.data.msg === '请先进行个人认证') {
  217. wx.navigateTo({
  218. url: '/pages/phonenumber/phonenumber',
  219. })
  220. }
  221. }, 2000)
  222. }
  223. })
  224. }
  225. },
  226. fail(err) {
  227. wx.hideLoading()
  228. wx.showToast({
  229. title: '发起网络请求失败',
  230. icon: 'none',
  231. mask: true
  232. })
  233. },
  234. complete() {
  235. // wx.hideLoading()
  236. }
  237. })
  238. },
  239. // 取消帮卖
  240. cancelHelpSale() {
  241. let that = this;
  242. wx.showLoading({
  243. title: '提交中',
  244. mask: true
  245. })
  246. wx.request({
  247. url: api.Cancel_help_sale,
  248. header: {
  249. 'Authorization': wx.getStorageSync('token')
  250. },
  251. method: 'POST',
  252. data: {
  253. id: that.data.id
  254. },
  255. success(res) {
  256. wx.hideLoading()
  257. console.log(res);
  258. if (res.data.code === 1) {
  259. wx.showToast({
  260. title: '提交成功',
  261. mask: true,
  262. success() {
  263. setTimeout(() => {
  264. wx.navigateBack({
  265. delta: 1,
  266. })
  267. }, 1500)
  268. }
  269. })
  270. } else {
  271. wx.showToast({
  272. title: res.data.msg,
  273. mask: true,
  274. icon: 'none'
  275. })
  276. }
  277. },
  278. fail(err) {
  279. wx.hideLoading()
  280. wx.showToast({
  281. title: '发起网络请求失败',
  282. icon: 'none',
  283. mask: true
  284. })
  285. },
  286. complete() {
  287. // wx.hideLoading()
  288. }
  289. })
  290. },
  291. // 跳转团长微信二维码
  292. navToWXQrcode() {
  293. let headimg = this.data.user_info.headimg;
  294. let name = this.data.user_info.name;
  295. let wechat_code = this.data.user_info.wechat_code;
  296. wx.navigateTo({
  297. url: '/pages/wxqrcode/wxqrcode?headimg=' + headimg + '&name=' + name + '&wechat_code=' + wechat_code
  298. })
  299. },
  300. })