helptosell.js 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. // pages/helptosell/helptosell.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. tabs: ['供应大厅', '关联供应商', '我的申请'],
  15. tabindex: 0,
  16. height: 0,
  17. biaoqians: [], //供应大厅-标签数组
  18. showbiaoqian: false, //显示供应大厅-标签
  19. lists: [],
  20. bqs: 0,
  21. wlist: [],
  22. wbqs: 0,
  23. supplyhall_list: [], //供应大厅列表
  24. supplyhall_supplier_list: [], //正在帮卖列表
  25. /* 我的申请 */
  26. shenqingindex: 0, //申请状态(0未审核,1已审核)
  27. gang_name: '', //团长姓名
  28. supplyhall_help_sell: [], //我的申请列表
  29. time: -1, //防抖时间
  30. },
  31. tabtap(e) {
  32. this.setData({
  33. tabindex: e.currentTarget.dataset.index
  34. })
  35. },
  36. shenq(e) {
  37. this.setData({
  38. shenqingindex: e.currentTarget.dataset.index
  39. })
  40. this.getSupplyhallHelpSell()
  41. },
  42. // 添加标签重置
  43. chongzhi() {
  44. let list = this.data.biaoqians
  45. for (let i = 0; i < list.length; i++) {
  46. list[i].xuan = 0
  47. }
  48. this.setData({
  49. biaoqians: list,
  50. lists: list,
  51. bqs: 0,
  52. showbiaoqian: false,
  53. wbqs: 0
  54. })
  55. this.getSupplyhallList()
  56. this.getSupplyhallSupplierList()
  57. },
  58. // 添加标签完成
  59. wancheng() {
  60. let that = this;
  61. that.setData({
  62. lists: that.data.wlist,
  63. bqs: that.data.wbqs,
  64. showbiaoqian: false
  65. })
  66. let classification_id = [];
  67. for (let i = 0; i < that.data.lists.length; i++) {
  68. if (that.data.lists[i].xuan === 1) {
  69. classification_id.push(that.data.lists[i].id)
  70. }
  71. }
  72. wx.showLoading({
  73. title: '加载中',
  74. mask: true
  75. })
  76. wx.request({
  77. url: api.Supplyhall_list,
  78. header: {
  79. 'Authorization': wx.getStorageSync('token')
  80. },
  81. data: {
  82. classification_id: classification_id
  83. },
  84. method: 'POST',
  85. success(res) {
  86. console.log(res);
  87. if (res.data.code === 1) {
  88. that.setData({
  89. supplyhall_list: res.data.data
  90. })
  91. } else {
  92. wx.showToast({
  93. title: res.data.msg,
  94. mask: true,
  95. icon: 'none'
  96. })
  97. }
  98. },
  99. fail(err) {
  100. wx.showToast({
  101. title: '发起网络请求失败',
  102. icon: 'none',
  103. mask: true
  104. })
  105. },
  106. complete() {
  107. wx.hideLoading()
  108. }
  109. })
  110. wx.request({
  111. url: api.Supplyhall_supplier_list,
  112. header: {
  113. 'Authorization': wx.getStorageSync('token')
  114. },
  115. data: {
  116. id: classification_id
  117. },
  118. method: 'POST',
  119. success(res) {
  120. console.log(res);
  121. if (res.data.code === 1) {
  122. that.setData({
  123. supplyhall_supplier_list: res.data.data
  124. })
  125. } else {
  126. wx.showToast({
  127. title: res.data.msg,
  128. mask: true,
  129. icon: 'none'
  130. })
  131. }
  132. },
  133. fail(err) {
  134. wx.showToast({
  135. title: '发起网络请求失败',
  136. icon: 'none',
  137. mask: true
  138. })
  139. },
  140. complete() {
  141. wx.hideLoading()
  142. }
  143. })
  144. },
  145. // 关闭添加标签弹窗
  146. closebiaoqian() {
  147. this.setData({
  148. showbiaoqian: false
  149. })
  150. },
  151. // 显示添加标签弹窗
  152. biaoqianshow() {
  153. this.setData({
  154. showbiaoqian: true
  155. })
  156. },
  157. // 选择标签
  158. xuan(e) {
  159. let list = this.data.biaoqians;
  160. let bqs = this.data.wbqs;
  161. let index = e.currentTarget.dataset.index;
  162. if (list[index].xuan == 0) {
  163. list[index].xuan = 1;
  164. bqs++;
  165. } else {
  166. list[index].xuan = 0;
  167. bqs--;
  168. };
  169. this.setData({
  170. biaoqians: list,
  171. wlist: list,
  172. wbqs: bqs
  173. })
  174. },
  175. /**
  176. * 生命周期函数--监听页面加载
  177. */
  178. onLoad: function (options) {
  179. this.setData({
  180. height: app.globalData.height
  181. })
  182. },
  183. /**
  184. * 生命周期函数--监听页面初次渲染完成
  185. */
  186. onReady: function () {
  187. },
  188. /**
  189. * 生命周期函数--监听页面显示
  190. */
  191. onShow: function () {
  192. let that = this;
  193. // 商品分类列表
  194. wx.showLoading({
  195. title: '加载中',
  196. mask: true
  197. })
  198. wx.request({
  199. url: api.Classification_list,
  200. header: {
  201. 'Authorization': wx.getStorageSync('token')
  202. },
  203. method: 'POST',
  204. success(res) {
  205. console.log(res);
  206. if (res.data.code === 1) {
  207. let arr = res.data.data;
  208. for (let i = 0; i < arr.length; i++) {
  209. arr[i].xuan = 0;
  210. }
  211. that.setData({
  212. biaoqians: arr
  213. })
  214. } else {
  215. wx.showToast({
  216. title: res.data.msg,
  217. mask: true,
  218. icon: 'none'
  219. })
  220. }
  221. },
  222. fail(err) {
  223. wx.showToast({
  224. title: '发起网络请求失败',
  225. icon: 'none',
  226. mask: true
  227. })
  228. },
  229. complete() {
  230. wx.hideLoading()
  231. }
  232. })
  233. // 获取供应大厅列表
  234. that.getSupplyhallList()
  235. // 获取正在帮卖列表(关联供应商)
  236. that.getSupplyhallSupplierList()
  237. // 获取我的申请列表
  238. that.getSupplyhallHelpSell()
  239. },
  240. /**
  241. * 生命周期函数--监听页面隐藏
  242. */
  243. onHide: function () {
  244. },
  245. /**
  246. * 生命周期函数--监听页面卸载
  247. */
  248. onUnload: function () {
  249. },
  250. /**
  251. * 页面相关事件处理函数--监听用户下拉动作
  252. */
  253. onPullDownRefresh: function () {
  254. },
  255. /**
  256. * 页面上拉触底事件的处理函数
  257. */
  258. onReachBottom: function () {
  259. },
  260. /**
  261. * 用户点击右上角分享
  262. */
  263. onShareAppMessage: function () {
  264. },
  265. // 获取供应大厅列表
  266. getSupplyhallList() {
  267. let that = this;
  268. wx.showLoading({
  269. title: '加载中',
  270. mask: true
  271. })
  272. wx.request({
  273. url: api.Supplyhall_list,
  274. header: {
  275. 'Authorization': wx.getStorageSync('token')
  276. },
  277. method: 'POST',
  278. success(res) {
  279. console.log(res);
  280. if (res.data.code === 1) {
  281. that.setData({
  282. supplyhall_list: res.data.data
  283. })
  284. } else {
  285. wx.showToast({
  286. title: res.data.msg,
  287. mask: true,
  288. icon: 'none'
  289. })
  290. }
  291. },
  292. fail(err) {
  293. wx.showToast({
  294. title: '发起网络请求失败',
  295. icon: 'none',
  296. mask: true
  297. })
  298. },
  299. complete() {
  300. wx.hideLoading()
  301. }
  302. })
  303. },
  304. // 获取关联供货商列表
  305. getSupplyhallSupplierList() {
  306. let that = this;
  307. wx.showLoading({
  308. title: '加载中',
  309. mask: true
  310. })
  311. wx.request({
  312. url: api.Supplyhall_supplier_list,
  313. header: {
  314. 'Authorization': wx.getStorageSync('token')
  315. },
  316. method: 'POST',
  317. success(res) {
  318. console.log(res);
  319. if (res.data.code === 1) {
  320. that.setData({
  321. supplyhall_supplier_list: res.data.data
  322. })
  323. } else {
  324. wx.showToast({
  325. title: res.data.msg,
  326. mask: true,
  327. icon: 'none'
  328. })
  329. }
  330. },
  331. fail(err) {
  332. wx.showToast({
  333. title: '发起网络请求失败',
  334. icon: 'none',
  335. mask: true
  336. })
  337. },
  338. complete() {
  339. wx.hideLoading()
  340. }
  341. })
  342. },
  343. // 输入拼团名称
  344. inputGangName(e) {
  345. let that = this;
  346. that.setData({
  347. gang_name: e.detail.value
  348. })
  349. // 清除定时器
  350. clearTimeout(that.data.time);
  351. // 开启定时器
  352. this.data.time = setTimeout(() => {
  353. that.getSupplyhallHelpSell()
  354. }, 500)
  355. },
  356. // 我的申请
  357. getSupplyhallHelpSell() {
  358. let that = this;
  359. wx.showLoading({
  360. title: '加载中',
  361. mask: true
  362. })
  363. wx.request({
  364. url: api.Supplyhall_help_sell,
  365. header: {
  366. 'Authorization': wx.getStorageSync('token')
  367. },
  368. data: {
  369. apply_status: Number(that.data.shenqingindex),
  370. gang_name: that.data.gang_name
  371. },
  372. method: 'POST',
  373. success(res) {
  374. console.log(res);
  375. if (res.data.code === 1) {
  376. that.setData({
  377. supplyhall_help_sell: res.data.data
  378. })
  379. } else {
  380. wx.showToast({
  381. title: res.data.msg,
  382. mask: true,
  383. icon: 'none'
  384. })
  385. }
  386. },
  387. fail(err) {
  388. wx.showToast({
  389. title: '发起网络请求失败',
  390. icon: 'none',
  391. mask: true
  392. })
  393. },
  394. complete() {
  395. wx.hideLoading()
  396. }
  397. })
  398. },
  399. // 跳转来自供应大厅
  400. navFromGYDT(e) {
  401. // console.log(e);
  402. let id = e.currentTarget.dataset.id;
  403. wx.navigateTo({
  404. url: '/pages/tuanzdetail/tuanzdetail?type=0&id=' + id,
  405. })
  406. },
  407. // 跳转来自关联供应商
  408. navFromGLGYS(e) {
  409. // console.log(e);
  410. let id = e.currentTarget.dataset.id;
  411. wx.navigateTo({
  412. url: '/pages/tuanzdetail/tuanzdetail?type=1&id=' + id,
  413. })
  414. },
  415. // 跳转来自我的申请
  416. navFromWDSQ(e) {
  417. let id = e.currentTarget.dataset.id;
  418. let status = e.currentTarget.dataset.status;
  419. let uid = e.currentTarget.dataset.uid;
  420. wx.navigateTo({
  421. url: '/pages/myapplyfor/myapplyfor?id=' + id + '&status=' + status + '&uid=' + uid,
  422. })
  423. }
  424. })