pintuandetail.js 30 KB

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