pintuandetail.js 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155
  1. // pages/pintuandetail/pintuandetail.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. mode: '', //进入模式(manage: 拼团管理, dingyue: 订阅团长)
  14. height: 0,
  15. tabs: ['订单列表', '评价'],
  16. tabIndex: 0,
  17. goodCardMode: true, //商品卡片模式
  18. showGoodDetail: false, //显示商品详情
  19. showShoppingCart: false, //显示购物车
  20. guigeIndex: 0, //规格索引
  21. showManageMenu: false, //打开管理
  22. manageMenus: [{
  23. name: '编辑拼团'
  24. }],
  25. showBottomBar: true, //显示底部栏
  26. showAddComment: false, //弹出评论输入
  27. /* 表单 */
  28. id: 0, //拼团ID
  29. pintuandetail: {}, //拼团详情
  30. categorys: [{
  31. id: null,
  32. classification_name: '全部'
  33. }], //分类
  34. categoryIndex: 0,
  35. isSubscription: false, //是否订阅
  36. user_info: {}, //用户信息
  37. info: {}, //信息
  38. goods: [], //拼团商品列表
  39. currentGood: {}, //当前显示的商品详情
  40. currentGoodIndex: 0, //当前商品索引
  41. orders: [], //拼团订单列表
  42. comments: [], //拼团评论列表
  43. shopcart: [], //购物车
  44. all_scribe_price: 0, //划线价格总价
  45. all_price: 0, //实际价格总价
  46. /* 提交数据 */
  47. comment: '', //评论
  48. },
  49. /**
  50. * 生命周期函数--监听页面加载
  51. */
  52. onLoad(options) {
  53. this.setData({
  54. height: app.globalData.height
  55. })
  56. let id = Number(options.id);
  57. let mode = options.type;
  58. this.setData({
  59. mode,
  60. id
  61. })
  62. let that = this;
  63. wx.showLoading({
  64. title: '加载中',
  65. mask: true
  66. })
  67. // 获取拼团详情信息
  68. wx.request({
  69. url: api.Gang_info,
  70. header: {
  71. 'Authorization': wx.getStorageSync('token')
  72. },
  73. data: {
  74. id: that.data.id
  75. },
  76. method: 'POST',
  77. success(res) {
  78. console.log(res);
  79. if (res.data.code === 1) {
  80. that.setData({
  81. pintuandetail: res.data.data
  82. })
  83. if (that.data.pintuandetail.gang_status == 0) {
  84. let manageMenus = that.data.manageMenus;
  85. manageMenus.push({
  86. name: '开启拼团'
  87. })
  88. that.setData({
  89. manageMenus
  90. })
  91. } else if (that.data.pintuandetail.gang_status == 1) {
  92. let manageMenus = that.data.manageMenus;
  93. manageMenus.push({
  94. name: '截止拼团'
  95. })
  96. that.setData({
  97. manageMenus
  98. })
  99. }
  100. // 获取团长信息
  101. let user_id = res.data.data.user_id;
  102. wx.request({
  103. url: api.Head_info,
  104. header: {
  105. 'Authorization': wx.getStorageSync('token')
  106. },
  107. data: {
  108. id: user_id,
  109. },
  110. success(res) {
  111. console.log(res);
  112. if (res.data.code === 1) {
  113. that.setData({
  114. user_info: res.data.data.user_info,
  115. isSubscription: res.data.data.subscribe === 1 ? true : false,
  116. info: res.data.data.info
  117. })
  118. } else {
  119. wx.showToast({
  120. title: res.data.msg,
  121. mask: true,
  122. icon: 'none'
  123. })
  124. }
  125. },
  126. fail(err) {
  127. wx.showToast({
  128. title: '发起网络请求失败',
  129. icon: 'none',
  130. mask: true
  131. })
  132. },
  133. complete() {
  134. wx.hideLoading()
  135. }
  136. })
  137. } else {
  138. wx.showToast({
  139. title: res.data.msg,
  140. mask: true,
  141. icon: 'none'
  142. })
  143. }
  144. },
  145. fail(err) {
  146. wx.showToast({
  147. title: '发起网络请求失败',
  148. icon: 'none',
  149. mask: true
  150. })
  151. }
  152. })
  153. // 商品分类列表
  154. wx.request({
  155. url: api.Classification_list,
  156. header: {
  157. 'Authorization': wx.getStorageSync('token')
  158. },
  159. method: 'POST',
  160. success(res) {
  161. console.log(res);
  162. if (res.data.code === 1) {
  163. let arr = res.data.data;
  164. let categorys = that.data.categorys;
  165. categorys = categorys.concat(arr);
  166. that.setData({
  167. categorys
  168. })
  169. } else {
  170. wx.showToast({
  171. title: res.data.msg,
  172. mask: true,
  173. icon: 'none'
  174. })
  175. }
  176. },
  177. fail(err) {
  178. wx.showToast({
  179. title: '发起网络请求失败',
  180. icon: 'none',
  181. mask: true
  182. })
  183. },
  184. complete() {
  185. wx.hideLoading()
  186. }
  187. })
  188. // 商品列表
  189. wx.request({
  190. url: api.Gang_commodity,
  191. header: {
  192. 'Authorization': wx.getStorageSync('token')
  193. },
  194. data: {
  195. id: that.data.id
  196. },
  197. method: 'POST',
  198. success(res) {
  199. console.log(res);
  200. if (res.data.code === 1) {
  201. for (let i = 0; i < res.data.data.length; i++) {
  202. res.data.data[i].count = 0; //新增商品数量字段
  203. // 如果为规格商品-增加类型、规格索引
  204. if (res.data.data[i].specifications) {
  205. res.data.data[i].type = 'guige';
  206. res.data.data[i].guige_index = 0;
  207. }
  208. // 如果为阶梯价商品-增加类型、阶梯价索引
  209. if (res.data.data[i].step_price) {
  210. res.data.data[i].type = 'step';
  211. res.data.data[i].step_index = 0;
  212. }
  213. }
  214. // 商品数量少于3时只能使用列表展示
  215. if(res.data.data.length>3){
  216. that.setData({
  217. goodCardMode: true
  218. })
  219. }else{
  220. that.setData({
  221. goodCardMode: false
  222. })
  223. }
  224. that.setData({
  225. goods: res.data.data
  226. })
  227. } else {
  228. wx.showToast({
  229. title: res.data.msg,
  230. mask: true,
  231. icon: 'none'
  232. })
  233. }
  234. },
  235. fail(err) {
  236. wx.showToast({
  237. title: '发起网络请求失败',
  238. icon: 'none',
  239. mask: true
  240. })
  241. },
  242. complete() {
  243. wx.hideLoading()
  244. }
  245. })
  246. // 拼团订单列表
  247. wx.request({
  248. url: api.Gang_order,
  249. header: {
  250. 'Authorization': wx.getStorageSync('token')
  251. },
  252. data: {
  253. id: that.data.id
  254. },
  255. method: 'POST',
  256. success(res) {
  257. console.log(res);
  258. if (res.data.code === 1) {
  259. that.setData({
  260. orders: res.data.data
  261. })
  262. } else {
  263. // wx.showToast({
  264. // title: res.data.msg,
  265. // mask: true,
  266. // icon: 'none'
  267. // })
  268. }
  269. },
  270. fail(err) {
  271. wx.showToast({
  272. title: '发起网络请求失败',
  273. icon: 'none',
  274. mask: true
  275. })
  276. },
  277. complete() {
  278. wx.hideLoading()
  279. }
  280. })
  281. // 评论列表
  282. wx.request({
  283. url: api.Comment_list,
  284. header: {
  285. 'Authorization': wx.getStorageSync('token')
  286. },
  287. data: {
  288. id: that.data.id
  289. },
  290. method: 'POST',
  291. success(res) {
  292. console.log(res);
  293. if (res.data.code === 1) {
  294. that.setData({
  295. comments: res.data.data
  296. })
  297. } else {
  298. wx.showToast({
  299. title: res.data.msg,
  300. mask: true,
  301. icon: 'none'
  302. })
  303. }
  304. },
  305. fail(err) {
  306. wx.showToast({
  307. title: '发起网络请求失败',
  308. icon: 'none',
  309. mask: true
  310. })
  311. },
  312. complete() {
  313. wx.hideLoading()
  314. }
  315. })
  316. },
  317. /**
  318. * 生命周期函数--监听页面初次渲染完成
  319. */
  320. onReady() {
  321. },
  322. /**
  323. * 生命周期函数--监听页面显示
  324. */
  325. onShow() {
  326. },
  327. /**
  328. * 生命周期函数--监听页面隐藏
  329. */
  330. onHide() {
  331. },
  332. /**
  333. * 生命周期函数--监听页面卸载
  334. */
  335. onUnload() {
  336. },
  337. /**
  338. * 页面相关事件处理函数--监听用户下拉动作
  339. */
  340. onPullDownRefresh() {
  341. },
  342. /**
  343. * 页面上拉触底事件的处理函数
  344. */
  345. onReachBottom() {
  346. },
  347. /**
  348. * 用户点击右上角分享
  349. */
  350. onShareAppMessage() {
  351. let pintuan_id = this.data.pintuandetail.id; //订单ID
  352. return {
  353. title: this.data.pintuandetail.user_info.name +' '+ this.data.pintuandetail.gang_name,
  354. path: '/pages/pintuandetail/pintuandetail?type=dingyue&id=' + pintuan_id,
  355. imageUrl: this.data.pintuandetail.cover_img
  356. }
  357. },
  358. // 返回上一页
  359. _navback() {
  360. wx.navigateBack()
  361. },
  362. // 订阅
  363. subscription() {
  364. let that = this;
  365. wx.showLoading({
  366. title: '加载中',
  367. mask: true
  368. })
  369. wx.request({
  370. url: api.subscribe,
  371. header: {
  372. 'Authorization': wx.getStorageSync('token')
  373. },
  374. method: 'POST',
  375. data: {
  376. id: that.data.user_info.id
  377. },
  378. success(res) {
  379. console.log(res);
  380. if (res.data.code === 1) {
  381. that.setData({
  382. isSubscription: true
  383. })
  384. wx.showToast({
  385. title: res.data.msg,
  386. icon: 'success',
  387. mask: true
  388. })
  389. } else {
  390. wx.showToast({
  391. title: res.data.msg,
  392. mask: true,
  393. icon: 'none'
  394. })
  395. }
  396. },
  397. fail(err) {
  398. wx.showToast({
  399. title: '发起网络请求失败',
  400. icon: 'none',
  401. mask: true
  402. })
  403. },
  404. complete() {
  405. wx.hideLoading()
  406. }
  407. })
  408. },
  409. // 取消订阅
  410. noSubscription() {
  411. let that = this;
  412. wx.showLoading({
  413. title: '加载中',
  414. mask: true
  415. })
  416. wx.request({
  417. url: api.unsubscribe,
  418. header: {
  419. 'Authorization': wx.getStorageSync('token')
  420. },
  421. method: 'POST',
  422. data: {
  423. id: that.data.user_info.id
  424. },
  425. success(res) {
  426. console.log(res);
  427. if (res.data.code === 1) {
  428. that.setData({
  429. isSubscription: false
  430. })
  431. wx.showToast({
  432. title: res.data.msg,
  433. icon: 'success',
  434. mask: true
  435. })
  436. } else {
  437. wx.showToast({
  438. title: res.data.msg,
  439. mask: true,
  440. icon: 'none'
  441. })
  442. }
  443. },
  444. fail(err) {
  445. wx.showToast({
  446. title: '发起网络请求失败',
  447. icon: 'none',
  448. mask: true
  449. })
  450. },
  451. complete() {
  452. wx.hideLoading()
  453. }
  454. })
  455. },
  456. // 打开管理菜单
  457. openManageMenu() {
  458. this.setData({
  459. showManageMenu: true,
  460. showBottomBar: false
  461. })
  462. },
  463. // 关闭管理菜单
  464. closeManageMenu() {
  465. this.setData({
  466. showManageMenu: false,
  467. showBottomBar: true
  468. })
  469. },
  470. // 选择分类
  471. changeCategory(e) {
  472. let that = this;
  473. let index = e.currentTarget.dataset.index;
  474. let classification_id = that.data.categorys[index].id;
  475. wx.showLoading({
  476. title: '加载中',
  477. mask: true
  478. })
  479. // 商品列表
  480. wx.request({
  481. url: api.Gang_commodity,
  482. header: {
  483. 'Authorization': wx.getStorageSync('token')
  484. },
  485. data: {
  486. id: that.data.id,
  487. classification_id: classification_id
  488. },
  489. method: 'POST',
  490. success(res) {
  491. console.log(res);
  492. if (res.data.code === 1) {
  493. for (let i = 0; i < res.data.data.length; i++) {
  494. res.data.data[i].count = 0; //新增商品数量字段
  495. // 如果为规格商品-增加类型、规格索引
  496. if (res.data.data[i].specifications) {
  497. res.data.data[i].type = 'guige';
  498. res.data.data[i].guige_index = 0;
  499. }
  500. // 如果为阶梯价商品-增加类型、阶梯价索引
  501. if (res.data.data[i].step_price) {
  502. res.data.data[i].type = 'step';
  503. res.data.data[i].step_index = 0;
  504. }
  505. }
  506. that.setData({
  507. goods: res.data.data,
  508. categoryIndex: index,
  509. shopcart: [],
  510. all_price: 0,
  511. all_scribe_price: 0
  512. })
  513. if(res.data.data.length>3){
  514. that.setData({
  515. goodCardMode: true
  516. })
  517. }else{
  518. that.setData({
  519. goodCardMode: false
  520. })
  521. }
  522. } else {
  523. wx.showToast({
  524. title: res.data.msg,
  525. mask: true,
  526. icon: 'none'
  527. })
  528. }
  529. },
  530. fail(err) {
  531. wx.showToast({
  532. title: '发起网络请求失败',
  533. icon: 'none',
  534. mask: true
  535. })
  536. },
  537. complete() {
  538. wx.hideLoading()
  539. }
  540. })
  541. },
  542. // 切换商品卡片模式
  543. changeGoodCardMode() {
  544. this.setData({
  545. goodCardMode: !this.data.goodCardMode
  546. })
  547. },
  548. // 打开商品详情
  549. openGoodDetail(e) {
  550. let that = this;
  551. let index = Number(e.currentTarget.dataset.index);
  552. wx.showLoading({
  553. title: '加载中',
  554. mask: true
  555. })
  556. wx.request({
  557. url: api.Commodity_info,
  558. header: {
  559. 'Authorization': wx.getStorageSync('token')
  560. },
  561. data: {
  562. id: that.data.goods[index].commodity_id
  563. },
  564. method: 'POST',
  565. success(res) {
  566. console.log(res);
  567. if (res.data.code === 1) {
  568. let currentGood = res.data.data;
  569. if (that.data.goods[index].type == 'guige') {
  570. currentGood.type = that.data.goods[index].type;
  571. currentGood.guige_index = that.data.goods[index].guige_index;
  572. } else if (that.data.goods[index].type == 'step') {
  573. currentGood.type = that.data.goods[index].type;
  574. currentGood.step_index = that.data.goods[index].step_index;
  575. }
  576. that.setData({
  577. currentGood: res.data.data,
  578. currentGoodIndex: index,
  579. showGoodDetail: true,
  580. showShoppingCart: false
  581. })
  582. } else {
  583. wx.showToast({
  584. title: res.data.msg,
  585. mask: true,
  586. icon: 'none'
  587. })
  588. }
  589. },
  590. fail(err) {
  591. wx.showToast({
  592. title: '发起网络请求失败',
  593. icon: 'none',
  594. mask: true
  595. })
  596. },
  597. complete() {
  598. wx.hideLoading()
  599. }
  600. })
  601. },
  602. // 关闭商品详情
  603. closeGoodDetail() {
  604. this.setData({
  605. showGoodDetail: false,
  606. showShoppingCart: false
  607. })
  608. },
  609. // 切换订单列表与评价
  610. changeTab(e) {
  611. this.setData({
  612. tabIndex: e.currentTarget.dataset.index
  613. })
  614. },
  615. // 弹出购物车
  616. openShoppingCart() {
  617. this.setData({
  618. showShoppingCart: !this.data.showShoppingCart,
  619. showGoodDetail: false
  620. })
  621. },
  622. // 关闭购物车
  623. closeShoppingCart() {
  624. this.setData({
  625. showShoppingCart: false,
  626. showGoodDetail: false
  627. })
  628. },
  629. // 打开输入评论
  630. openAddComment() {
  631. this.setData({
  632. showAddComment: true,
  633. showBottomBar: false
  634. })
  635. },
  636. // 关闭输入评论
  637. closeAddComment() {
  638. this.setData({
  639. showAddComment: false,
  640. showBottomBar: true
  641. })
  642. },
  643. // 输入评论
  644. inputComment(e) {
  645. this.setData({
  646. comment: e.detail.value
  647. })
  648. },
  649. // 提交评论
  650. submitComment() {
  651. let that = this;
  652. if (that.data.comment == '') {
  653. wx.showToast({
  654. title: '请输入评论内容',
  655. icon: 'none',
  656. mask: true
  657. })
  658. return
  659. }
  660. wx.showLoading({
  661. title: '提交中',
  662. mask: true
  663. })
  664. wx.request({
  665. url: api.Comment_add,
  666. header: {
  667. 'Authorization': wx.getStorageSync('token')
  668. },
  669. data: {
  670. id: that.data.id,
  671. content: that.data.comment
  672. },
  673. method: 'POST',
  674. success(res) {
  675. wx.hideLoading()
  676. console.log(res);
  677. if (res.data.code === 1) {
  678. wx.showToast({
  679. title: '发表评论成功',
  680. mask: true
  681. })
  682. // 评论列表
  683. wx.request({
  684. url: api.Comment_list,
  685. header: {
  686. 'Authorization': wx.getStorageSync('token')
  687. },
  688. data: {
  689. id: that.data.id
  690. },
  691. method: 'POST',
  692. success(res) {
  693. console.log(res);
  694. if (res.data.code === 1) {
  695. that.setData({
  696. comment: '',
  697. comments: res.data.data,
  698. showAddComment: false
  699. })
  700. } else {
  701. wx.showToast({
  702. title: res.data.msg,
  703. mask: true,
  704. icon: 'none'
  705. })
  706. }
  707. },
  708. fail(err) {
  709. wx.showToast({
  710. title: '发起网络请求失败',
  711. icon: 'none',
  712. mask: true
  713. })
  714. },
  715. complete() {
  716. wx.hideLoading()
  717. }
  718. })
  719. } else {
  720. wx.showToast({
  721. title: res.data.msg,
  722. mask: true,
  723. icon: 'none'
  724. })
  725. }
  726. },
  727. fail(err) {
  728. wx.hideLoading()
  729. wx.showToast({
  730. title: '发起网络请求失败',
  731. icon: 'none',
  732. mask: true
  733. })
  734. },
  735. complete() {
  736. // wx.hideLoading()
  737. }
  738. })
  739. },
  740. // 选择商品规格
  741. selectCurrentGoodGuige(e) {
  742. let that = this;
  743. let index = Number(e.currentTarget.dataset.index); //当前选中的规格索引
  744. let currentGoodIndex = that.data.currentGoodIndex;
  745. let key = `goods[${currentGoodIndex}].guige_index`;
  746. let key2 = `currentGood.guige_index`;
  747. that.setData({
  748. [key]: index,
  749. [key2]: index
  750. })
  751. // 重新计算商品价格
  752. let goods = that.data.goods;
  753. let shopcart = [];
  754. let all_scribe_price = 0; //划线价格总价
  755. let all_price = 0; //实际价格总价
  756. for (let i = 0; i < goods.length; i++) {
  757. if (goods[i].count > 0) {
  758. // 计算划线价格总价
  759. all_scribe_price = all_scribe_price + (Number(goods[i].scribe_price) * Number(goods[i].count));
  760. // 计算商品价格
  761. if (goods[i].type == 'guige') {
  762. // 规格商品
  763. let guige_index = goods[i].guige_index;
  764. let price = Number(goods[i].specifications[guige_index].price); //商品当前规格单价
  765. all_price = all_price + (price * Number(goods[i].count));
  766. } else if (goods[i].type == 'step') {
  767. // 阶梯价商品
  768. let step_price = goods[i].step_price; //当前阶梯价商品的阶梯价
  769. // 冒泡排序-防止SB不按顺序输阶梯价-开始
  770. // for (let i = 0; i < step_price.length - 1; i++) { //确定轮数
  771. // for (let j = 0; j < step_price.length - i - 1; j++) { //确定每次比较的次数
  772. // if (step_price[j].number > step_price[j + 1].number) {
  773. // let tem = step_price[j];
  774. // step_price[j] = step_price[j + 1];
  775. // step_price[j + 1] = tem;
  776. // }
  777. // }
  778. // }
  779. // 冒泡排序-防止SB不按顺序输阶梯价-结束
  780. let count = Number(goods[i].count); //数量
  781. let index = 0; //索引
  782. for (let i = 0; i < step_price.length; i++) {
  783. if (count > step_price[i].number) {
  784. index++;
  785. }
  786. }
  787. let key = `goods[${i}].step_index`
  788. that.setData({
  789. [key]: index
  790. })
  791. let step_index = goods[i].step_index;
  792. let price = Number(goods[i].step_price[step_index].price); //商品当前阶梯单价
  793. all_price = all_price + (price * Number(goods[i].count));
  794. }
  795. // 添加商品到购物车
  796. shopcart.push(goods[i]);
  797. }
  798. }
  799. that.setData({
  800. shopcart,
  801. all_price,
  802. all_scribe_price
  803. })
  804. },
  805. // 增加数量
  806. increaseCount(e) {
  807. let that = this;
  808. let id = e.currentTarget.dataset.id; //商品ID
  809. let index = that.data.goods.findIndex(item => item.commodity_id == id); //根据ID找出在goods中的索引
  810. let key = `goods[${index}].count`;
  811. that.setData({
  812. [key]: that.data.goods[index].count + 1
  813. })
  814. // 计算购物车
  815. let goods = that.data.goods;
  816. let shopcart = [];
  817. let all_scribe_price = 0; //划线价格总价
  818. let all_price = 0; //实际价格总价
  819. for (let i = 0; i < goods.length; i++) {
  820. if (goods[i].count > 0) {
  821. // 计算划线价格总价
  822. all_scribe_price = all_scribe_price + (Number(goods[i].scribe_price) * Number(goods[i].count));
  823. // 计算商品价格
  824. if (goods[i].type == 'guige') {
  825. // 规格商品
  826. let guige_index = goods[i].guige_index;
  827. let price = Number(goods[i].specifications[guige_index].price); //商品当前规格单价
  828. all_price = all_price + (price * Number(goods[i].count));
  829. } else if (goods[i].type == 'step') {
  830. // 阶梯价商品
  831. let step_price = goods[i].step_price; //当前阶梯价商品的阶梯价
  832. // 冒泡排序-防止SB不按顺序输阶梯价-开始
  833. // for (let i = 0; i < step_price.length - 1; i++) { //确定轮数
  834. // for (let j = 0; j < step_price.length - i - 1; j++) { //确定每次比较的次数
  835. // if (step_price[j].number > step_price[j + 1].number) {
  836. // let tem = step_price[j];
  837. // step_price[j] = step_price[j + 1];
  838. // step_price[j + 1] = tem;
  839. // }
  840. // }
  841. // }
  842. // 冒泡排序-防止SB不按顺序输阶梯价-结束
  843. let count = Number(goods[i].count); //数量
  844. let index = 0; //索引
  845. for (let i = 0; i < step_price.length; i++) {
  846. if (count > step_price[i].number) {
  847. index++;
  848. }
  849. }
  850. let key = `goods[${i}].step_index`
  851. that.setData({
  852. [key]: index
  853. })
  854. let step_index = goods[i].step_index;
  855. let price = Number(goods[i].step_price[step_index].price); //商品当前阶梯单价
  856. all_price = all_price + (price * Number(goods[i].count));
  857. }
  858. // 添加商品到购物车
  859. shopcart.push(goods[i]);
  860. }
  861. }
  862. that.setData({
  863. shopcart,
  864. all_price,
  865. all_scribe_price
  866. })
  867. },
  868. // 减少数量
  869. decreaseCount(e) {
  870. let that = this;
  871. let id = e.currentTarget.dataset.id; //商品ID
  872. let index = that.data.goods.findIndex(item => item.commodity_id == id); //根据ID找出在goods中的索引
  873. let key = `goods[${index}].count`;
  874. that.setData({
  875. [key]: that.data.goods[index].count - 1
  876. })
  877. // 计算购物车
  878. let goods = that.data.goods;
  879. let shopcart = [];
  880. let all_scribe_price = 0; //划线价格总价
  881. let all_price = 0; //实际价格总价
  882. for (let i = 0; i < goods.length; i++) {
  883. if (goods[i].count > 0) {
  884. // 计算划线价格总价
  885. all_scribe_price = all_scribe_price + (Number(goods[i].scribe_price) * Number(goods[i].count));
  886. // 计算商品价格
  887. if (goods[i].type == 'guige') {
  888. // 规格商品
  889. let guige_index = goods[i].guige_index;
  890. let price = Number(goods[i].specifications[guige_index].price); //商品当前规格单价
  891. all_price = all_price + (price * Number(goods[i].count));
  892. } else if (goods[i].type == 'step') {
  893. // 阶梯价商品
  894. let step_price = goods[i].step_price; //当前阶梯价商品的阶梯价
  895. // 冒泡排序-防止SB不按顺序输阶梯价-开始
  896. // for (let i = 0; i < step_price.length - 1; i++) { //确定轮数
  897. // for (let j = 0; j < step_price.length - i - 1; j++) { //确定每次比较的次数
  898. // if (step_price[j].number > step_price[j + 1].number) {
  899. // let tem = step_price[j];
  900. // step_price[j] = step_price[j + 1];
  901. // step_price[j + 1] = tem;
  902. // }
  903. // }
  904. // }
  905. // 冒泡排序-防止SB不按顺序输阶梯价-结束
  906. let count = Number(goods[i].count); //数量
  907. let index = 0; //索引
  908. for (let i = 0; i < step_price.length; i++) {
  909. if (count > step_price[i].number) {
  910. index++;
  911. }
  912. }
  913. let key = `goods[${i}].step_index`
  914. that.setData({
  915. [key]: index
  916. })
  917. let step_index = goods[i].step_index;
  918. let price = Number(goods[i].step_price[step_index].price); //商品当前阶梯单价
  919. all_price = all_price + (price * Number(goods[i].count));
  920. }
  921. // 添加商品到购物车
  922. shopcart.push(goods[i]);
  923. }
  924. }
  925. that.setData({
  926. shopcart,
  927. all_price,
  928. all_scribe_price
  929. })
  930. },
  931. // 清空购物车
  932. clearShopCart() {
  933. let that = this;
  934. let goods = that.data.goods;
  935. for (let i = 0; i < goods.length; i++) {
  936. goods[i].count = 0;
  937. }
  938. that.setData({
  939. goods: goods,
  940. shopcart: [],
  941. all_price: 0,
  942. all_scribe_price: 0
  943. })
  944. },
  945. // 下单
  946. placeOrder() {
  947. let that = this;
  948. // 已闭团无法购买商品
  949. if (that.data.pintuandetail.gang_status == 0) {
  950. wx.showToast({
  951. title: '该拼团已结束,无法下单',
  952. mask: true,
  953. icon: 'none'
  954. })
  955. return
  956. }
  957. // 超出库存数量无法购买商品
  958. for (let i = 0; i < that.data.shopcart.length; i++) {
  959. if (that.data.shopcart[i].count > that.data.shopcart[i].stock) {
  960. wx.showToast({
  961. title: that.data.shopcart[i].commodity_name + '的购买数量超出库存数量',
  962. mask: true,
  963. icon: 'none',
  964. duration: 2000
  965. })
  966. return
  967. }
  968. }
  969. let id = that.data.id; //拼团id
  970. let gang_name = that.data.pintuandetail.gang_name; //拼团名称
  971. let all_scribe_price = that.data.all_scribe_price; //原价
  972. let all_price = that.data.all_price; //总价
  973. let shopcart = that.data.shopcart; //购物车
  974. let logistics_mode = that.data.pintuandetail.logistics_mode; //物流方式(0没有物流,1取货点自提,2送货或者自提)
  975. let head_phone = that.data.user_info.phone; //团长手机号
  976. let userName = that.data.user_info.name; //团长名称
  977. let expected_arrival_time = that.data.pintuandetail.expected_arrival_time; //预计到货时间
  978. if (shopcart.length > 0) {
  979. wx.setStorageSync('shopcart', shopcart);
  980. wx.navigateTo({
  981. url: '/pages/confirmorder/confirmorder?id=' + id + '&all_scribe_price=' + all_scribe_price + '&all_price=' + all_price + '&gang_name=' + gang_name + '&logistics_mode=' + logistics_mode + '&head_phone=' + head_phone + '&expected_arrival_time=' + expected_arrival_time + '&user_name=' + userName,
  982. })
  983. } else {
  984. wx.showToast({
  985. title: '购物车为空',
  986. mask: true,
  987. icon: 'none'
  988. })
  989. }
  990. },
  991. // 节点跳转
  992. goAnchorPoint(e) {
  993. let type = e.currentTarget.dataset.type;
  994. if (type == 'comment') {
  995. this.setData({
  996. tabIndex: 1
  997. })
  998. } else {
  999. this.setData({
  1000. tabIndex: 0
  1001. })
  1002. }
  1003. let id = e.currentTarget.dataset.id;
  1004. //1、返回一个查询实例
  1005. const query = wx.createSelectorQuery();
  1006. //2、选择要跳转的节点id
  1007. query.select(id).boundingClientRect();
  1008. //3、获取显示区域的尺寸、滚动等位置等信息,然后添加节点的滚动位置查询
  1009. query.selectViewport().scrollOffset();
  1010. //4、执行跳转
  1011. query.exec((res) => {
  1012. //5、res[0]是步骤2中的数据,res[1]是步骤3中的数据
  1013. if (res[0] && res[1]) {
  1014. //6、将页面滚动到目标位置
  1015. wx.pageScrollTo({
  1016. //7、计算滚动到目标的位置
  1017. scrollTop: res[0].top + res[1].scrollTop,
  1018. duration: 300
  1019. })
  1020. }
  1021. });
  1022. },
  1023. // 管理拼团菜单
  1024. selectManageMenu(e) {
  1025. if (e.detail.name == '编辑拼团') {
  1026. // console.log('编辑拼团');
  1027. let id = this.data.pintuandetail.id;
  1028. wx.navigateTo({
  1029. url: '/pages/announce/announce?type=edit&id=' + id,
  1030. })
  1031. } else if (e.detail.name == '开启拼团') {
  1032. // console.log('开启拼团');
  1033. let that = this;
  1034. wx.showLoading({
  1035. title: '加载中',
  1036. mask: true
  1037. })
  1038. wx.request({
  1039. url: api.Gang_open,
  1040. header: {
  1041. 'Authorization': wx.getStorageSync('token')
  1042. },
  1043. method: 'POST',
  1044. data: {
  1045. id: that.data.pintuandetail.id
  1046. },
  1047. success(res) {
  1048. wx.hideLoading()
  1049. console.log(res);
  1050. if (res.data.code === 1) {
  1051. wx.showToast({
  1052. title: '开启拼团成功',
  1053. icon: 'success',
  1054. mask: true,
  1055. success() {
  1056. setTimeout(() => {
  1057. wx.navigateBack({
  1058. delta: 1,
  1059. })
  1060. }, 1500)
  1061. }
  1062. })
  1063. } else {
  1064. wx.showToast({
  1065. title: res.data.msg,
  1066. mask: true,
  1067. icon: 'none'
  1068. })
  1069. }
  1070. },
  1071. fail(err) {
  1072. wx.hideLoading()
  1073. wx.showToast({
  1074. title: '发起网络请求失败',
  1075. icon: 'none',
  1076. mask: true
  1077. })
  1078. },
  1079. complete() {
  1080. // wx.hideLoading()
  1081. }
  1082. })
  1083. } else if (e.detail.name == '截止拼团') {
  1084. // console.log('截止拼团');
  1085. let that = this;
  1086. wx.showLoading({
  1087. title: '加载中',
  1088. mask: true
  1089. })
  1090. wx.request({
  1091. url: api.Gang_by,
  1092. header: {
  1093. 'Authorization': wx.getStorageSync('token')
  1094. },
  1095. method: 'POST',
  1096. data: {
  1097. id: that.data.pintuandetail.id
  1098. },
  1099. success(res) {
  1100. wx.hideLoading()
  1101. console.log(res);
  1102. if (res.data.code === 1) {
  1103. wx.showToast({
  1104. title: '截止拼团成功',
  1105. icon: 'success',
  1106. mask: true,
  1107. success() {
  1108. setTimeout(() => {
  1109. wx.navigateBack({
  1110. delta: 1,
  1111. })
  1112. }, 1500)
  1113. }
  1114. })
  1115. } else {
  1116. wx.showToast({
  1117. title: res.data.msg,
  1118. mask: true,
  1119. icon: 'none'
  1120. })
  1121. }
  1122. },
  1123. fail(err) {
  1124. wx.hideLoading()
  1125. wx.showToast({
  1126. title: '发起网络请求失败',
  1127. icon: 'none',
  1128. mask: true
  1129. })
  1130. },
  1131. complete() {
  1132. // wx.hideLoading()
  1133. }
  1134. })
  1135. }
  1136. }
  1137. })