myapplyfor.js 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. // pages/myapplyfor/myapplyfor.js
  2. const app = getApp();
  3. const api = require('../../api/api');
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. navbarData: {
  10. showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
  11. title: '', //导航栏 中间的标题
  12. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  13. },
  14. classify: [],
  15. showphone: false,
  16. phone: [{
  17. name: ''
  18. }],
  19. showfen: false,
  20. fenxiang: [{
  21. name: '分享给朋友'
  22. }, {
  23. name: '分享到朋友圈'
  24. }],
  25. sidetabs: [{
  26. id: null,
  27. classification_name: '全部'
  28. }],
  29. sideindex: 0,
  30. enterType: 2, //进入类型(0:审核中;1:申请失败;2:申请成功) (0申请中,1申请成功,2拒绝,3撤销申请)
  31. /* 表单 */
  32. id: 0, //申请表ID
  33. billdata: {}, //详细信息
  34. user_id: 0, //团长id
  35. commodity_list: [], //商品列表
  36. info: {}, //拼团信息
  37. user_info: {}, //用户信息
  38. },
  39. // 显示分享菜单
  40. showfens() {
  41. this.setData({
  42. showfen: true
  43. })
  44. },
  45. // 显示拨打电话菜单
  46. showphones() {
  47. this.setData({
  48. showphone: true
  49. })
  50. },
  51. // 点击切换侧边栏
  52. sidetap(e) {
  53. this.setData({
  54. sideindex: e.currentTarget.dataset.index
  55. })
  56. },
  57. // 关闭
  58. offzhe() {
  59. this.setData({
  60. showfen: false,
  61. showphone: false
  62. })
  63. },
  64. // 确认拨打电话
  65. phoneok(e) {
  66. wx.makePhoneCall({
  67. phoneNumber: e.detail.name,
  68. })
  69. },
  70. // 点击分享
  71. fenok(e) {
  72. console.log("我点击分享了")
  73. },
  74. /**
  75. * 生命周期函数--监听页面加载
  76. */
  77. onLoad: function (options) {
  78. // console.log(options);
  79. this.setData({
  80. id: Number(options.id),
  81. enterType: Number(options.status),
  82. user_id: Number(options.uid)
  83. })
  84. let that = this;
  85. wx.showLoading({
  86. title: '加载中',
  87. mask: true
  88. })
  89. wx.request({
  90. url: api.Supplyhall_head_info,
  91. header: {
  92. 'Authorization': wx.getStorageSync('token')
  93. },
  94. method: 'POST',
  95. data: {
  96. id: that.data.user_id
  97. },
  98. success(res) {
  99. console.log(res);
  100. if (res.data.code === 1) {
  101. let arr = that.data.sidetabs;
  102. arr = arr.concat(res.data.data.classification_info);
  103. that.setData({
  104. classify: res.data.data.classification_info,
  105. commodity_list: res.data.data.commodity_list,
  106. info: res.data.data.info,
  107. user_info: res.data.data.user_info,
  108. phone: [{
  109. name: res.data.data.user_info.phone
  110. }],
  111. sidetabs: arr
  112. })
  113. } else {
  114. wx.showToast({
  115. title: res.data.msg,
  116. mask: true,
  117. icon: 'none'
  118. })
  119. }
  120. },
  121. fail(err) {
  122. wx.showToast({
  123. title: '发起网络请求失败',
  124. icon: 'none',
  125. mask: true
  126. })
  127. },
  128. complete() {
  129. wx.hideLoading()
  130. }
  131. })
  132. },
  133. /**
  134. * 生命周期函数--监听页面初次渲染完成
  135. */
  136. onReady: function () {
  137. },
  138. /**
  139. * 生命周期函数--监听页面显示
  140. */
  141. onShow: function () {
  142. let that = this;
  143. // 申请详情
  144. wx.showLoading({
  145. title: '加载中',
  146. mask: true
  147. })
  148. wx.request({
  149. url: api.Supplyhall_apply_info,
  150. header: {
  151. 'Authorization': wx.getStorageSync('token')
  152. },
  153. data: {
  154. id: that.data.id
  155. },
  156. method: 'POST',
  157. success(res) {
  158. console.log(res);
  159. if (res.data.code === 1) {
  160. that.setData({
  161. billdata: res.data.data
  162. })
  163. } else {
  164. wx.showToast({
  165. title: res.data.msg,
  166. mask: true,
  167. icon: 'none'
  168. })
  169. }
  170. },
  171. fail(err) {
  172. wx.showToast({
  173. title: '发起网络请求失败',
  174. icon: 'none',
  175. mask: true
  176. })
  177. },
  178. complete() {
  179. wx.hideLoading()
  180. }
  181. })
  182. },
  183. /**
  184. * 生命周期函数--监听页面隐藏
  185. */
  186. onHide: function () {
  187. },
  188. /**
  189. * 生命周期函数--监听页面卸载
  190. */
  191. onUnload: function () {
  192. },
  193. /**
  194. * 页面相关事件处理函数--监听用户下拉动作
  195. */
  196. onPullDownRefresh: function () {
  197. },
  198. /**
  199. * 页面上拉触底事件的处理函数
  200. */
  201. onReachBottom: function () {
  202. },
  203. /**
  204. * 用户点击右上角分享
  205. */
  206. onShareAppMessage: function () {
  207. },
  208. // 撤销申请
  209. cancleApplay() {
  210. let that = this;
  211. wx.showLoading({
  212. title: '提交中',
  213. mask: true
  214. })
  215. wx.request({
  216. url: api.Supplyhall_apply_cancel,
  217. header: {
  218. 'Authorization': wx.getStorageSync('token')
  219. },
  220. method: 'POST',
  221. data: {
  222. id: that.data.id
  223. },
  224. success(res) {
  225. wx.hideLoading()
  226. console.log(res);
  227. if (res.data.code === 1) {
  228. wx.showToast({
  229. title: '提交成功',
  230. mask: true,
  231. success() {
  232. setTimeout(() => {
  233. wx.navigateBack({
  234. delta: 1,
  235. })
  236. }, 1500)
  237. }
  238. })
  239. } else {
  240. wx.showToast({
  241. title: res.data.msg,
  242. mask: true,
  243. icon: 'none'
  244. })
  245. }
  246. },
  247. fail(err) {
  248. wx.hideLoading()
  249. wx.showToast({
  250. title: '发起网络请求失败',
  251. icon: 'none',
  252. mask: true
  253. })
  254. },
  255. complete() {
  256. // wx.hideLoading()
  257. }
  258. })
  259. }
  260. })