tuanzdetail2status2.js 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  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. showphone: false,
  19. phone: [{
  20. name: ''
  21. }],
  22. showfen: false,
  23. fenxiang: [{
  24. name: '分享给朋友'
  25. }, {
  26. name: '分享到朋友圈'
  27. }],
  28. sideindex: 0,
  29. enterType: 0, //进入类型
  30. /* 表单 */
  31. id: 0, //申请表ID
  32. uid: 0, //团长ID
  33. user_info: {}, //用户信息
  34. info: {}, //信息
  35. pintuan: [], //拼团列表
  36. detail: {}, //详情
  37. bodytabindex2: 0, //(0:关联供应商;1:待审核;2:已审核)
  38. },
  39. _navback() {
  40. wx.navigateBack()
  41. },
  42. showfens() {
  43. this.setData({
  44. showfen: true
  45. })
  46. },
  47. sidetap(e) {
  48. this.setData({
  49. sideindex: e.currentTarget.dataset.index
  50. })
  51. },
  52. showphones() {
  53. this.setData({
  54. showphone: true
  55. })
  56. },
  57. offzhe() {
  58. this.setData({
  59. showfen: false,
  60. showphone: false
  61. })
  62. },
  63. phoneok(e) {
  64. wx.makePhoneCall({
  65. phoneNumber: e.detail.name,
  66. })
  67. },
  68. gobianji() {
  69. wx.navigateTo({
  70. url: '/pages/userinfo/userinfo',
  71. })
  72. },
  73. fenok(e) {
  74. if (e.detail.name === '分享给朋友') {
  75. console.log('分享朋友');
  76. } else {
  77. wx.navigateTo({
  78. url: '/pages/sharetofirend/sharetofirend',
  79. })
  80. }
  81. },
  82. /**
  83. * 生命周期函数--监听页面加载
  84. */
  85. onLoad: function (options) {
  86. let that = this;
  87. this.setData({
  88. height: app.globalData.height,
  89. enterType: Number(options.type),
  90. id: Number(options.id),
  91. uid: Number(options.uid),
  92. bodytabindex2: Number(options.bodytabindex2)
  93. })
  94. console.log(options);
  95. // 获取团长详情
  96. wx.showLoading({
  97. title: '加载中',
  98. mask: true
  99. })
  100. wx.request({
  101. url: api.Head_info,
  102. header: {
  103. 'Authorization': wx.getStorageSync('token')
  104. },
  105. data: {
  106. id: that.data.uid,
  107. },
  108. success(res) {
  109. console.log(res);
  110. if (res.data.code === 1) {
  111. that.setData({
  112. user_info: res.data.data.user_info,
  113. classify: res.data.data.classification_info,
  114. info: res.data.data.info,
  115. pintuan: res.data.data.gang_list,
  116. phone: [{
  117. name: res.data.data.user_info.phone
  118. }]
  119. })
  120. } else {
  121. wx.showToast({
  122. title: res.data.msg,
  123. mask: true,
  124. icon: 'none'
  125. })
  126. }
  127. },
  128. fail(err) {
  129. wx.showToast({
  130. title: '发起网络请求失败',
  131. icon: 'none',
  132. mask: true
  133. })
  134. },
  135. complete() {
  136. wx.hideLoading()
  137. }
  138. })
  139. wx.request({
  140. url: api.Sellgoods_time,
  141. header: {
  142. 'Authorization': wx.getStorageSync('token')
  143. },
  144. data: {
  145. id: that.data.id,
  146. },
  147. success(res) {
  148. console.log(res);
  149. if (res.data.code === 1) {
  150. that.setData({
  151. detail: res.data.data
  152. })
  153. } else {
  154. wx.showToast({
  155. title: res.data.msg,
  156. mask: true,
  157. icon: 'none'
  158. })
  159. }
  160. },
  161. fail(err) {
  162. wx.showToast({
  163. title: '发起网络请求失败',
  164. icon: 'none',
  165. mask: true
  166. })
  167. },
  168. complete() {
  169. wx.hideLoading()
  170. }
  171. })
  172. },
  173. /**
  174. * 生命周期函数--监听页面初次渲染完成
  175. */
  176. onReady: function () {
  177. },
  178. /**
  179. * 生命周期函数--监听页面显示
  180. */
  181. onShow: function () {
  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. navToWXQrcode() {
  210. let headimg = this.data.user_info.headimg;
  211. let name = this.data.user_info.name;
  212. let wechat_code = this.data.user_info.wechat_code;
  213. wx.navigateTo({
  214. url: '/pages/wxqrcode/wxqrcode?headimg=' + headimg + '&name=' + name + '&wechat_code=' + wechat_code
  215. })
  216. },
  217. // 取消帮卖
  218. cancelHelpSale() {
  219. let that = this;
  220. wx.showLoading({
  221. title: '提交中',
  222. mask: true
  223. })
  224. wx.request({
  225. url: api.Cancel_help_sale,
  226. header: {
  227. 'Authorization': wx.getStorageSync('token')
  228. },
  229. method: 'POST',
  230. data: {
  231. id: that.data.user_info.id
  232. },
  233. success(res) {
  234. wx.hideLoading()
  235. console.log(res);
  236. if (res.data.code === 1) {
  237. wx.showToast({
  238. title: '提交成功',
  239. mask: true,
  240. success() {
  241. setTimeout(() => {
  242. wx.navigateBack({
  243. delta: 1,
  244. })
  245. }, 1500)
  246. }
  247. })
  248. } else {
  249. wx.showToast({
  250. title: res.data.msg,
  251. mask: true,
  252. icon: 'none'
  253. })
  254. }
  255. },
  256. fail(err) {
  257. wx.hideLoading()
  258. wx.showToast({
  259. title: '发起网络请求失败',
  260. icon: 'none',
  261. mask: true
  262. })
  263. },
  264. complete() {
  265. // wx.hideLoading()
  266. }
  267. })
  268. },
  269. // 不同意帮卖
  270. disagreeHelpSell() {
  271. let that = this;
  272. let id = this.data.id;
  273. let apply_status = 2;
  274. wx.showLoading({
  275. title: '提交中',
  276. mask: true
  277. })
  278. wx.request({
  279. url: api.Sellgoods_status,
  280. header: {
  281. 'Authorization': wx.getStorageSync('token')
  282. },
  283. method: 'POST',
  284. data: {
  285. id: [id],
  286. apply_status: apply_status
  287. },
  288. success(res) {
  289. wx.hideLoading()
  290. console.log(res);
  291. if (res.data.code === 1) {
  292. wx.showToast({
  293. title: '提交成功',
  294. mask: true,
  295. success() {
  296. setTimeout(() => {
  297. wx.navigateBack({
  298. delta: 1,
  299. })
  300. }, 1500)
  301. }
  302. })
  303. } else {
  304. wx.showToast({
  305. title: res.data.msg,
  306. mask: true,
  307. icon: 'none'
  308. })
  309. }
  310. },
  311. fail(err) {
  312. wx.hideLoading()
  313. wx.showToast({
  314. title: '发起网络请求失败',
  315. icon: 'none',
  316. mask: true
  317. })
  318. },
  319. complete() {
  320. // wx.hideLoading()
  321. }
  322. })
  323. },
  324. // 同意帮卖
  325. agreeHelpSell() {
  326. let that = this;
  327. let id = this.data.id;
  328. let apply_status = 1;
  329. wx.showLoading({
  330. title: '提交中',
  331. mask: true
  332. })
  333. wx.request({
  334. url: api.Sellgoods_status,
  335. header: {
  336. 'Authorization': wx.getStorageSync('token')
  337. },
  338. method: 'POST',
  339. data: {
  340. id: [id],
  341. apply_status: apply_status
  342. },
  343. success(res) {
  344. wx.hideLoading()
  345. console.log(res);
  346. if (res.data.code === 1) {
  347. wx.showToast({
  348. title: '提交成功',
  349. mask: true,
  350. success() {
  351. setTimeout(() => {
  352. wx.navigateBack({
  353. delta: 1,
  354. })
  355. }, 1500)
  356. }
  357. })
  358. } else {
  359. wx.showToast({
  360. title: res.data.msg,
  361. mask: true,
  362. icon: 'none'
  363. })
  364. }
  365. },
  366. fail(err) {
  367. wx.hideLoading()
  368. wx.showToast({
  369. title: '发起网络请求失败',
  370. icon: 'none',
  371. mask: true
  372. })
  373. },
  374. complete() {
  375. // wx.hideLoading()
  376. }
  377. })
  378. },
  379. })