invitehelpmesell.js 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794
  1. // pages/invitehelpmesell/invitehelpmesell.js
  2. const app = getApp();
  3. const api = require('../../api/api');
  4. import tuanZhangData from '../../mocks/tuanZhang';
  5. const storageManager = require("../../utils/storage-manager.js");
  6. Page({
  7. /**
  8. * 页面的初始数据
  9. */
  10. data: {
  11. navbarData: {
  12. showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
  13. title: '发布帮卖', //导航栏 中间的标题
  14. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  15. },
  16. toptabindex: 0, //顶部标签索引
  17. /* 帮卖商品 */
  18. bodytab: ["关联供应商", "待审核", "提交申请"],
  19. bodytabindex: 0,
  20. foottab: [{
  21. id: 0,
  22. classification_name: '全部'
  23. }],
  24. leiindex: 0,
  25. checked: false,
  26. show: false,
  27. currentPriceIndex: 0,
  28. prices: [],
  29. openManageModeGood: false,
  30. mockDataGood: [], //假数据
  31. applyGoods: [], //提交申请商品
  32. checkBoxResultGood: [], //复选框结果
  33. checkedAllGood: false, //是否全选
  34. /* 卖货团长 */
  35. bodytab2: ["关联供应商", "待审核", "已审核"],
  36. bodytabindex2: 0,
  37. openManageMode: false,
  38. mockData: [], //假数据
  39. checkBoxResult: [], //复选框结果
  40. checkedAll: false, //是否全选
  41. },
  42. // 切换顶部tab
  43. toptab(e) {
  44. this.setData({
  45. toptabindex: e.currentTarget.dataset.index
  46. })
  47. },
  48. // 切换帮卖商品tab
  49. bodytab(e) {
  50. this.setData({
  51. bodytabindex: e.currentTarget.dataset.index,
  52. openManageModeGood: false,
  53. mockDataGood: [],
  54. checkBoxResultGood: [],
  55. checkedAllGood: false
  56. })
  57. if (this.data.bodytabindex === 0 || this.data.bodytabindex === 1) {
  58. this.getHelpsellList()
  59. } else {
  60. this.setData({
  61. mockDataGood: []
  62. })
  63. }
  64. },
  65. // 切换商品类型
  66. leixing(e) {
  67. this.setData({
  68. leiindex: e.currentTarget.dataset.index
  69. })
  70. this.getHelpsellList()
  71. },
  72. // 新增阶梯价行
  73. addbulk() {
  74. let bulk = {
  75. number: "",
  76. price: ""
  77. }
  78. let prices = this.data.prices;
  79. prices.push(bulk)
  80. this.setData({
  81. prices: prices
  82. })
  83. },
  84. // 删除阶梯价行
  85. delbulk(e) {
  86. let index = e.currentTarget.dataset.index
  87. let list = this.data.prices;
  88. list.splice(index, 1);
  89. this.setData({
  90. prices: list
  91. })
  92. },
  93. // 数字输入
  94. numinput(e) {
  95. let index = Number(e.currentTarget.dataset.index);
  96. let value = e.detail.value;
  97. let list = this.data.prices;
  98. list[index].number = value;
  99. this.setData({
  100. prices: list
  101. })
  102. },
  103. // 价格输入
  104. priceinput(e) {
  105. let index = Number(e.currentTarget.dataset.index);
  106. let value = e.detail.value;
  107. let list = this.data.prices;
  108. list[index].price = value;
  109. this.setData({
  110. prices: list
  111. })
  112. },
  113. // 开关改变
  114. changeIsItVisible(e) {
  115. console.log(e);
  116. let index = e.currentTarget.dataset.index;
  117. let value = e.detail;
  118. let mockDataGood = this.data.mockDataGood;
  119. mockDataGood[index].is_it_visible = value;
  120. this.setData({
  121. mockDataGood
  122. })
  123. },
  124. // 显示阶梯价弹窗
  125. showdelk(e) {
  126. let that = this;
  127. let index = e.currentTarget.dataset.index;
  128. if (that.data.bodytabindex == 2) {
  129. if (that.data.mockDataGood[index].step_price) {
  130. that.setData({
  131. show: true,
  132. currentPriceIndex: index,
  133. prices: that.data.mockDataGood[index].step_price
  134. })
  135. } else {
  136. that.setData({
  137. show: true,
  138. currentPriceIndex: index,
  139. prices: [{
  140. number: 0,
  141. price: ''
  142. },
  143. {
  144. number: '',
  145. price: ''
  146. }
  147. ]
  148. })
  149. }
  150. }
  151. },
  152. // 确认批发价
  153. confrimStepPrice() {
  154. let mockDataGood = this.data.mockDataGood;
  155. mockDataGood[this.data.currentPriceIndex].step_price = this.data.prices;
  156. this.setData({
  157. mockDataGood,
  158. show: false
  159. })
  160. },
  161. onClose() {
  162. this.setData({
  163. show: false
  164. })
  165. },
  166. /**
  167. * 生命周期函数--监听页面加载
  168. */
  169. onLoad: function (options) {
  170. let that = this;
  171. wx.showLoading({
  172. title: '加载中',
  173. mask: true
  174. })
  175. // 获取分类列表
  176. wx.request({
  177. url: api.Classification_list,
  178. header: {
  179. 'Authorization': wx.getStorageSync('token')
  180. },
  181. method: 'POST',
  182. success(res) {
  183. console.log(res);
  184. if (res.data.code === 1) {
  185. let foottab = that.data.foottab;
  186. foottab = foottab.concat(res.data.data);
  187. that.setData({
  188. foottab
  189. })
  190. // 获取帮卖商品列表
  191. that.getHelpsellList()
  192. } else {
  193. wx.showToast({
  194. title: res.data.msg,
  195. mask: true,
  196. icon: 'none'
  197. })
  198. }
  199. },
  200. fail(err) {
  201. console.log(err);
  202. },
  203. complete() {
  204. wx.hideLoading()
  205. }
  206. })
  207. },
  208. /**
  209. * 生命周期函数--监听页面初次渲染完成
  210. */
  211. onReady: function () {
  212. },
  213. /**
  214. * 生命周期函数--监听页面显示
  215. */
  216. onShow: async function () {
  217. let that = this;
  218. let result = await storageManager.get('subPageResult');
  219. if (result !== null) {
  220. for (let i = 0; i < result.length; i++) {
  221. result[i].xuan = false;
  222. result[i].is_it_visible = 0;
  223. delete result[i].step_price;
  224. }
  225. let mockDataGood = that.data.mockDataGood;
  226. mockDataGood = mockDataGood.concat(result);
  227. let newMockDataGood = that.removeDuplicateObj(mockDataGood);
  228. that.setData({
  229. mockDataGood: newMockDataGood
  230. })
  231. storageManager.set('subPageResult', null);
  232. }
  233. // 获取卖货团长列表
  234. that.getSellgoodsList()
  235. },
  236. // 数组去重
  237. removeDuplicateObj(arr) {
  238. let obj = {};
  239. arr = arr.reduce((newArr, next) => {
  240. obj[next.id] ? "" : (obj[next.id] = true && newArr.push(next));
  241. return newArr;
  242. }, []);
  243. return arr;
  244. },
  245. /**
  246. * 生命周期函数--监听页面隐藏
  247. */
  248. onHide: function () {
  249. },
  250. /**
  251. * 生命周期函数--监听页面卸载
  252. */
  253. onUnload: function () {
  254. },
  255. /**
  256. * 页面相关事件处理函数--监听用户下拉动作
  257. */
  258. onPullDownRefresh: function () {
  259. },
  260. /**
  261. * 页面上拉触底事件的处理函数
  262. */
  263. onReachBottom: function () {
  264. },
  265. /**
  266. * 用户点击右上角分享
  267. */
  268. onShareAppMessage: function () {
  269. },
  270. // 点击管理按钮
  271. clickManageBtn() {
  272. this.setData({
  273. openManageMode: !this.data.openManageMode
  274. })
  275. },
  276. // 点击管理按钮
  277. clickManageBtnGood() {
  278. this.setData({
  279. openManageModeGood: !this.data.openManageModeGood
  280. })
  281. },
  282. /* 帮卖商品 */
  283. // 获取帮卖商品
  284. getHelpsellList() {
  285. let that = this;
  286. wx.showLoading({
  287. title: '加载中',
  288. mask: true
  289. })
  290. wx.request({
  291. url: api.Helpsell_list,
  292. header: {
  293. 'Authorization': wx.getStorageSync('token')
  294. },
  295. data: {
  296. help_sell_application_status: that.data.bodytabindex,
  297. classification_id: that.data.foottab[that.data.leiindex].id,
  298. commodity_name: ''
  299. },
  300. method: 'POST',
  301. success(res) {
  302. console.log(res);
  303. if (res.data.code === 1) {
  304. that.setData({
  305. mockDataGood: res.data.data
  306. })
  307. } else {
  308. wx.showToast({
  309. title: res.data.msg,
  310. mask: true,
  311. icon: 'none'
  312. })
  313. }
  314. },
  315. fail(err) {
  316. console.log(err);
  317. },
  318. complete() {
  319. wx.hideLoading()
  320. }
  321. })
  322. },
  323. // 从商品库添加
  324. addFromGoodsBank() {
  325. wx.navigateTo({
  326. url: '/pages/goodsbankselect/goodsbankselect',
  327. })
  328. },
  329. // 添加新商品
  330. addNewGoodsBank() {
  331. wx.navigateTo({
  332. url: '/pages/addtogood/addtogood',
  333. })
  334. },
  335. // 输入建议零售价
  336. inputRetailPrice(e) {
  337. let index = e.currentTarget.dataset.index;
  338. let mockDataGood = this.data.mockDataGood;
  339. mockDataGood[index].retail_price = e.detail.value;
  340. this.setData({
  341. mockDataGood
  342. })
  343. },
  344. // 输入起批数量
  345. inputStartingPurchase(e) {
  346. let index = e.currentTarget.dataset.index;
  347. let mockDataGood = this.data.mockDataGood;
  348. mockDataGood[index].starting_purchase = e.detail.value;
  349. this.setData({
  350. mockDataGood
  351. })
  352. },
  353. // 确认提交
  354. submitHelpSellAdd() {
  355. let that = this;
  356. let mockDataGood = that.data.mockDataGood;
  357. for (let i = 0; i < mockDataGood.length; i++) {
  358. mockDataGood[i].commodity_img = mockDataGood[i].commodity_img[0]
  359. delete mockDataGood[i].scribe_price
  360. delete mockDataGood[i].specifications
  361. delete mockDataGood[i].price
  362. delete mockDataGood[i].help_sell
  363. delete mockDataGood[i].stock
  364. delete mockDataGood[i].xuan
  365. }
  366. wx.showLoading({
  367. title: '加载中',
  368. mask: true
  369. })
  370. wx.request({
  371. url: api.Helpsell_add,
  372. header: {
  373. 'Authorization': wx.getStorageSync('token')
  374. },
  375. data: {
  376. commodity_list: mockDataGood
  377. },
  378. method: 'POST',
  379. success(res) {
  380. wx.hideLoading()
  381. console.log(res);
  382. if (res.data.code === 1) {
  383. wx.showToast({
  384. title: '添加成功',
  385. mask: true,
  386. success() {
  387. that.setData({
  388. mockDataGood: [],
  389. checkBoxResultGood: [],
  390. checkedAllGood: false
  391. })
  392. }
  393. })
  394. } else {
  395. wx.showToast({
  396. title: res.data.msg,
  397. mask: true,
  398. icon: 'none',
  399. duration: 2000,
  400. success() {
  401. setTimeout(() => {
  402. if (res.data.msg === '请先进行个人认证') {
  403. wx.navigateTo({
  404. url: '/pages/phonenumber/phonenumber',
  405. })
  406. }
  407. }, 2000)
  408. }
  409. })
  410. }
  411. },
  412. fail(err) {
  413. wx.hideLoading()
  414. console.log(err);
  415. },
  416. complete() {
  417. wx.hideLoading()
  418. }
  419. })
  420. },
  421. // 复选框改变-帮卖商品
  422. checkBoxChangeGood(event) {
  423. let that = this;
  424. that.setData({
  425. checkBoxResultGood: event.detail,
  426. })
  427. const items = that.data.mockDataGood;
  428. const values = event.detail;
  429. for (let i = 0, lenI = items.length; i < lenI; ++i) {
  430. items[i].xuan = false
  431. for (let j = 0, lenJ = values.length; j < lenJ; ++j) {
  432. if (items[i].id == values[j]) {
  433. items[i].xuan = true
  434. break
  435. }
  436. }
  437. }
  438. that.setData({
  439. mockDataGood: items
  440. })
  441. if (event.detail.length == that.data.mockDataGood.length) {
  442. that.setData({
  443. checkedAllGood: true
  444. })
  445. } else {
  446. that.setData({
  447. checkedAllGood: false
  448. })
  449. }
  450. },
  451. // 全选复选框-帮卖商品
  452. selectAllGood() {
  453. // 先将checkBoxResult数组清空,之后将所有添加项上
  454. const items = this.data.mockDataGood;
  455. const checkBoxResultGood = [];
  456. for (let i = 0; i < items.length; i++) {
  457. items[i].xuan = true;
  458. checkBoxResultGood.push(items[i].id);
  459. }
  460. this.setData({
  461. mockDataGood: items,
  462. checkedAllGood: true,
  463. checkBoxResultGood: checkBoxResultGood
  464. })
  465. },
  466. // 取消全选-帮卖商品
  467. cancleAllGood() {
  468. const items = this.data.mockDataGood;
  469. for (let i = 0; i < items.length; i++) {
  470. items[i].xuan = false
  471. }
  472. this.setData({
  473. mockDataGood: items,
  474. checkedAllGood: false,
  475. checkBoxResultGood: []
  476. })
  477. },
  478. // 删除商品
  479. deleteGoods() {
  480. let that = this;
  481. if (that.data.checkBoxResultGood.length == 0) {
  482. wx.showToast({
  483. title: '请选择商品',
  484. icon: 'none',
  485. mask: true
  486. })
  487. return
  488. }
  489. let checkBoxResultGood = that.data.checkBoxResultGood.map(Number);
  490. if (that.data.bodytabindex == 2) {
  491. // 提交申请-删除本地商品
  492. let arr = that.data.mockDataGood;
  493. let arr2 = that.data.checkBoxResultGood;
  494. for (let i = 0; i < checkBoxResultGood.length; i++) {
  495. arr.splice(arr.findIndex(item => item.id === Number(checkBoxResultGood[i])), 1);
  496. arr2.splice(arr.findIndex(item => item === Number(checkBoxResultGood[i])), 1);
  497. }
  498. that.setData({
  499. mockDataGood: arr,
  500. checkBoxResultGood: arr2,
  501. checkedAllGood: false
  502. })
  503. } else {
  504. // 关联供应商和待审核-删除在线商品
  505. wx.showLoading({
  506. title: '删除中',
  507. mask: true
  508. })
  509. wx.request({
  510. url: api.Helpsell_delete,
  511. header: {
  512. 'Authorization': wx.getStorageSync('token')
  513. },
  514. method: 'POST',
  515. data: {
  516. commodity_id: checkBoxResultGood
  517. },
  518. success(res) {
  519. console.log(res);
  520. wx.hideLoading()
  521. if (res.data.code === 1) {
  522. wx.showToast({
  523. title: '删除成功',
  524. icon: 'success',
  525. mask: true,
  526. success() {
  527. setTimeout(() => {
  528. that.getHelpsellList()
  529. }, 1500)
  530. }
  531. })
  532. } else {
  533. wx.showToast({
  534. title: res.data.msg,
  535. mask: true,
  536. icon: 'none'
  537. })
  538. }
  539. },
  540. fail(err) {
  541. wx.hideLoading()
  542. wx.showToast({
  543. title: '发起网络请求失败',
  544. icon: 'none',
  545. mask: true
  546. })
  547. }
  548. })
  549. }
  550. },
  551. /* 卖货团长 */
  552. // 获取卖货团长列表
  553. getSellgoodsList() {
  554. let that = this;
  555. wx.showLoading({
  556. title: '加载中',
  557. mask: true
  558. })
  559. wx.request({
  560. url: api.Sellgoods_list,
  561. header: {
  562. 'Authorization': wx.getStorageSync('token')
  563. },
  564. data: {
  565. apply_status: that.data.bodytabindex2
  566. },
  567. method: 'POST',
  568. success(res) {
  569. console.log(res);
  570. if (res.data.code === 1) {
  571. that.setData({
  572. mockData: res.data.data
  573. })
  574. } else {
  575. wx.showToast({
  576. title: res.data.msg,
  577. mask: true,
  578. icon: 'none'
  579. })
  580. }
  581. },
  582. fail(err) {
  583. console.log(err);
  584. },
  585. complete() {
  586. wx.hideLoading()
  587. }
  588. })
  589. },
  590. // 切换卖货团长tab
  591. bodytab2(e) {
  592. this.setData({
  593. bodytabindex2: e.currentTarget.dataset.index
  594. })
  595. this.getSellgoodsList()
  596. },
  597. // 跳转团长详情
  598. navToTuanZDetail2Status(e) {
  599. let id = e.currentTarget.dataset.id;
  600. let apply_status = e.currentTarget.dataset.status;
  601. let user_id = e.currentTarget.dataset.uid;
  602. let bodytabindex2 = this.data.bodytabindex2;
  603. if (this.data.bodytabindex2 == 2) {
  604. wx.navigateTo({
  605. url: '/pages/tuanzdetail2status/tuanzdetail2status?id=' + id + '&type=' + apply_status + '&uid=' + user_id
  606. })
  607. } else {
  608. wx.navigateTo({
  609. url: '/pages/tuanzdetail2status2/tuanzdetail2status2?id=' + id + '&type=' + apply_status + '&uid=' + user_id + '&bodytabindex2=' + bodytabindex2
  610. })
  611. }
  612. },
  613. // 不同意帮卖
  614. disagreeHelpSell() {
  615. let that = this;
  616. let apply_status = 2;
  617. wx.showLoading({
  618. title: '提交中',
  619. mask: true
  620. })
  621. wx.request({
  622. url: api.Sellgoods_status,
  623. header: {
  624. 'Authorization': wx.getStorageSync('token')
  625. },
  626. method: 'POST',
  627. data: {
  628. id: that.data.checkBoxResult,
  629. apply_status: apply_status
  630. },
  631. success(res) {
  632. console.log(res);
  633. wx.hideLoading()
  634. if (res.data.code === 1) {
  635. wx.showToast({
  636. title: '提交成功',
  637. mask: true,
  638. success() {
  639. setTimeout(() => {
  640. that.setData({
  641. openManageMode: false
  642. })
  643. that.getSellgoodsList()
  644. }, 1500)
  645. }
  646. })
  647. } else {
  648. wx.showToast({
  649. title: res.data.msg,
  650. mask: true,
  651. icon: 'none'
  652. })
  653. }
  654. },
  655. fail(err) {
  656. wx.hideLoading()
  657. wx.showToast({
  658. title: '发起网络请求失败',
  659. icon: 'none',
  660. mask: true
  661. })
  662. },
  663. complete() {
  664. // wx.hideLoading()
  665. }
  666. })
  667. },
  668. // 同意帮卖
  669. agreeHelpSell() {
  670. let that = this;
  671. let apply_status = 1;
  672. wx.showLoading({
  673. title: '提交中',
  674. mask: true
  675. })
  676. wx.request({
  677. url: api.Sellgoods_status,
  678. header: {
  679. 'Authorization': wx.getStorageSync('token')
  680. },
  681. method: 'POST',
  682. data: {
  683. id: that.data.checkBoxResult,
  684. apply_status: apply_status
  685. },
  686. success(res) {
  687. console.log(res);
  688. wx.hideLoading()
  689. if (res.data.code === 1) {
  690. wx.showToast({
  691. title: '提交成功',
  692. mask: true,
  693. success() {
  694. setTimeout(() => {
  695. that.setData({
  696. openManageMode: false
  697. })
  698. that.getSellgoodsList()
  699. }, 1500)
  700. }
  701. })
  702. } else {
  703. wx.showToast({
  704. title: res.data.msg,
  705. mask: true,
  706. icon: 'none'
  707. })
  708. }
  709. },
  710. fail(err) {
  711. wx.hideLoading()
  712. wx.showToast({
  713. title: '发起网络请求失败',
  714. icon: 'none',
  715. mask: true
  716. })
  717. },
  718. complete() {
  719. // wx.hideLoading()
  720. }
  721. })
  722. },
  723. // 复选框改变-卖货团长
  724. checkBoxChange(event) {
  725. let that = this;
  726. that.setData({
  727. checkBoxResult: event.detail,
  728. })
  729. const items = that.data.mockData;
  730. const values = event.detail;
  731. for (let i = 0, lenI = items.length; i < lenI; ++i) {
  732. items[i].xuan = false
  733. for (let j = 0, lenJ = values.length; j < lenJ; ++j) {
  734. if (items[i].id == values[j]) {
  735. items[i].xuan = true
  736. break
  737. }
  738. }
  739. }
  740. that.setData({
  741. mockData: items
  742. })
  743. if (event.detail.length == that.data.mockData.length) {
  744. that.setData({
  745. checkedAll: true
  746. })
  747. } else {
  748. that.setData({
  749. checkedAll: false
  750. })
  751. }
  752. },
  753. // 全选复选框-卖货团长
  754. selectAll() {
  755. // 先将checkBoxResult数组清空,之后将所有添加项上
  756. const items = this.data.mockData;
  757. const checkBoxResult = [];
  758. for (let i = 0; i < items.length; i++) {
  759. items[i].xuan = true;
  760. checkBoxResult.push(items[i].id);
  761. }
  762. this.setData({
  763. mockData: items,
  764. checkedAll: true,
  765. checkBoxResult: checkBoxResult
  766. })
  767. },
  768. // 取消全选-卖货团长
  769. cancleAll() {
  770. const items = this.data.mockData;
  771. for (let i = 0; i < items.length; i++) {
  772. items[i].xuan = false
  773. }
  774. this.setData({
  775. mockData: items,
  776. checkedAll: false,
  777. checkBoxResult: []
  778. })
  779. },
  780. })