addtogood.js 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763
  1. // pages/addtogood/addtogood.js
  2. const app = getApp();
  3. const api = require('../../api/api');
  4. const storageManager = require("../../utils/storage-manager.js");
  5. Page({
  6. /**
  7. * 页面的初始数据
  8. */
  9. data: {
  10. navbarData: {
  11. showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
  12. title: '添加商品', //导航栏 中间的标题
  13. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  14. },
  15. enterType: '', //进入方式
  16. arealength: 0,
  17. showLadderPrice: false, //阶梯价弹出层显示
  18. showCategory: false, //分类弹出层显示
  19. showSpecification: false, //规格弹出层显示
  20. specificationText: '统一规格', //
  21. /* 表单 */
  22. goodName: '', //商品名称
  23. goodIntro: '', //商品简介
  24. imageList: [], //图片列表
  25. scribePrice: '', //划线价格
  26. specifications: [], //规格数组
  27. price: '', //售价
  28. stock: '', //库存
  29. categorys: [], //分类数组
  30. categoryIndex: 0, //分类索引
  31. isAddToGoodsBank: 1, //是否添加到商品库
  32. startingPurchase: '', //起购数量
  33. purchaseRestrictionsNumber: '', //限购数量
  34. purchaseRestrictionsSecond: '', //限购次数
  35. startingPurchaseNumber: '', //起购团数
  36. prices: [], //阶梯价格数组
  37. },
  38. /**
  39. * 生命周期函数--监听页面加载
  40. */
  41. onLoad(options) {
  42. let that = this;
  43. that.setData({
  44. enterType: options.enterType
  45. })
  46. // 获取分类列表
  47. wx.showLoading({
  48. title: '加载中',
  49. mask: true
  50. })
  51. wx.request({
  52. url: api.Classification_list,
  53. header: {
  54. 'Authorization': wx.getStorageSync('token')
  55. },
  56. method: 'POST',
  57. success(res) {
  58. console.log(res);
  59. if (res.data.code === 1) {
  60. that.setData({
  61. categorys: res.data.data
  62. })
  63. } else {
  64. wx.showToast({
  65. title: res.data.msg,
  66. mask: true,
  67. icon: 'none'
  68. })
  69. }
  70. },
  71. fail(err) {
  72. wx.showToast({
  73. title: '发起网络请求失败',
  74. icon: 'none',
  75. mask: true
  76. })
  77. },
  78. complete() {
  79. wx.hideLoading()
  80. }
  81. })
  82. },
  83. /**
  84. * 生命周期函数--监听页面初次渲染完成
  85. */
  86. onReady() {
  87. },
  88. /**
  89. * 生命周期函数--监听页面显示
  90. */
  91. onShow() {
  92. },
  93. /**
  94. * 生命周期函数--监听页面隐藏
  95. */
  96. onHide() {
  97. },
  98. /**
  99. * 生命周期函数--监听页面卸载
  100. */
  101. onUnload() {
  102. },
  103. /**
  104. * 页面相关事件处理函数--监听用户下拉动作
  105. */
  106. onPullDownRefresh() {
  107. },
  108. /**
  109. * 页面上拉触底事件的处理函数
  110. */
  111. onReachBottom() {
  112. },
  113. /**
  114. * 用户点击右上角分享
  115. */
  116. onShareAppMessage() {
  117. },
  118. // 输入商品名称
  119. inputGoodName(e) {
  120. this.setData({
  121. goodName: e.detail.value
  122. })
  123. },
  124. // 输入商品简介
  125. inputGoodIntro(e) {
  126. this.setData({
  127. goodIntro: e.detail.value,
  128. arealength: e.detail.value.length
  129. })
  130. },
  131. // 添加商品图片
  132. uploadSmallImage() {
  133. let that = this;
  134. if (that.data.imageList.length < 5) {
  135. // wx.showLoading({
  136. // title: '文件上传中',
  137. // mask: true
  138. // })
  139. wx.request({
  140. url: api.getSignedUrl,
  141. data: {
  142. type: 'image'
  143. },
  144. success: (oss) => {
  145. console.log(oss);
  146. if (oss.statusCode === 200) {
  147. wx.chooseMedia({
  148. count: 1,
  149. mediaType: ['image'],
  150. success: (img) => {
  151. console.log(img);
  152. let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png';
  153. wx.showLoading({
  154. title: '文件上传中',
  155. mask: true
  156. })
  157. wx.uploadFile({
  158. filePath: img.tempFiles[0].tempFilePath,
  159. name: 'file',
  160. url: 'https://' + oss.data.data.host, //输入你的bucketname.endpoint
  161. formData: {
  162. key: key,
  163. policy: oss.data.data.policy, // 输入你获取的的policy
  164. OSSAccessKeyId: oss.data.data.OSSAccessKeyId, // 输入你的AccessKeyId
  165. success_action_status: '200', // 让服务端返回200,不然,默认会返回204
  166. signature: oss.data.data.Signature, // 输入你获取的的signature
  167. },
  168. success: (res) => {
  169. if (res.statusCode == 200) {
  170. let src = 'https://' + oss.data.data.host + '/' + key;
  171. console.log(src);
  172. let imageList = that.data.imageList;;
  173. imageList.push(src);
  174. that.setData({
  175. imageList
  176. })
  177. }
  178. },
  179. fail: (err) => {
  180. console.log(err);
  181. },
  182. complete: () => {
  183. wx.hideLoading()
  184. }
  185. })
  186. },
  187. fail: (err) => {
  188. wx.hideLoading()
  189. }
  190. })
  191. } else {
  192. wx.showToast({
  193. title: '服务器出现错误',
  194. icon: 'none'
  195. })
  196. }
  197. },
  198. fail: (err) => {
  199. console.log(err);
  200. }
  201. })
  202. }
  203. },
  204. // 删除某个小图
  205. deleteSmallImage(e) {
  206. let that = this;
  207. let index = e.currentTarget.dataset.index;
  208. let imageList = that.data.imageList;
  209. imageList.splice(index, 1);
  210. this.setData({
  211. imageList
  212. })
  213. },
  214. // 输入商品划线价格
  215. inputScribePrice(e) {
  216. this.setData({
  217. scribePrice: e.detail.value
  218. })
  219. },
  220. // 打开规格弹出层
  221. showSpecificationPopup() {
  222. let that = this;
  223. if (that.data.prices.length == 0) {
  224. if (that.data.specifications.length == 0) {
  225. that.setData({
  226. showSpecification: true,
  227. specifications: [{
  228. title: '',
  229. price: ''
  230. },
  231. {
  232. title: '',
  233. price: ''
  234. }
  235. ]
  236. })
  237. } else {
  238. that.setData({
  239. showSpecification: true
  240. })
  241. }
  242. } else {
  243. wx.showModal({
  244. title: '提示',
  245. content: '规格和阶梯价不可同时设置,如需设置规格,则会清除阶梯价内所有设置',
  246. success(res) {
  247. if (res.confirm) {
  248. if (that.data.specifications.length == 0) {
  249. that.setData({
  250. prices: [],
  251. showSpecification: true,
  252. specifications: [{
  253. title: '',
  254. price: ''
  255. },
  256. {
  257. title: '',
  258. price: ''
  259. }
  260. ]
  261. })
  262. } else {
  263. that.setData({
  264. prices: [],
  265. showSpecification: true
  266. })
  267. }
  268. } else if (res.cancel) {
  269. console.log('用户点击取消')
  270. }
  271. }
  272. })
  273. }
  274. },
  275. // 关闭规格弹出层
  276. closeSpecificationPopup() {
  277. let that = this;
  278. let isOK = that.judgeNoyNullSpecifications(that.data.specifications);
  279. if (isOK) {
  280. that.setData({
  281. specificationText: that.data.specifications[0].title + '/' + that.data.specifications[0].price + '加币',
  282. price: Number(that.data.specifications[0].price),
  283. showSpecification: false
  284. })
  285. } else {
  286. wx.showToast({
  287. title: '您未完整录入数据',
  288. icon: 'none',
  289. mask: true,
  290. success() {
  291. setTimeout(() => {
  292. that.setData({
  293. specificationText: '统一规格',
  294. specifications: [],
  295. showSpecification: false
  296. })
  297. }, 1500)
  298. }
  299. })
  300. }
  301. },
  302. // 规格输入
  303. specificationsInput(e) {
  304. let index = e.currentTarget.dataset.index;
  305. let value = e.detail.value;
  306. let list = this.data.specifications;
  307. list[index].title = value;
  308. this.setData({
  309. specifications: list
  310. })
  311. },
  312. // 规格金额输入
  313. specificationsPriceInput(e) {
  314. let index = e.currentTarget.dataset.index;
  315. let value = e.detail.value;
  316. let list = this.data.specifications;
  317. list[index].price = value;
  318. this.setData({
  319. specifications: list
  320. })
  321. },
  322. // 添加规格
  323. addSpecification() {
  324. let bulk = {
  325. title: '',
  326. price: ''
  327. }
  328. let specifications = this.data.specifications;
  329. specifications.push(bulk)
  330. this.setData({
  331. specifications: specifications
  332. })
  333. },
  334. // 删除规格
  335. delSpecification(e) {
  336. let index = e.currentTarget.dataset.index
  337. let list = this.data.specifications;
  338. list.splice(index, 1);
  339. this.setData({
  340. specifications: list
  341. })
  342. },
  343. // 输入售价
  344. inputPrice(e) {
  345. this.setData({
  346. price: e.detail.value
  347. })
  348. },
  349. // 输入库存
  350. inputStock(e) {
  351. this.setData({
  352. stock: e.detail.value
  353. })
  354. },
  355. // 打开分类弹出层
  356. showCategoryPopup() {
  357. this.setData({
  358. showCategory: true
  359. })
  360. },
  361. // 关闭分类弹出层
  362. closeCategoryPopup() {
  363. this.setData({
  364. showCategory: false
  365. })
  366. },
  367. // 选择分类
  368. selectCategory(e) {
  369. this.setData({
  370. categoryIndex: e.currentTarget.dataset.index
  371. })
  372. },
  373. // 是否添加到商品库
  374. changeIsAddToGoodsBank(e) {
  375. this.setData({
  376. isAddToGoodsBank: e.detail
  377. })
  378. },
  379. // 输入起购数量
  380. inputStartingPurchase(e) {
  381. this.setData({
  382. startingPurchase: e.detail.value
  383. })
  384. },
  385. // 输入限购数量
  386. inputPurchaseRestrictionsNumber(e) {
  387. this.setData({
  388. purchaseRestrictionsNumber: e.detail.value
  389. })
  390. },
  391. // 输入限购次数
  392. inputPurchaseRestrictionsSecond(e) {
  393. this.setData({
  394. purchaseRestrictionsSecond: e.detail.value
  395. })
  396. },
  397. // 输入起购团数
  398. inputStartingPurchaseNumber(e) {
  399. this.setData({
  400. startingPurchaseNumber: e.detail.value
  401. })
  402. },
  403. // 打开阶梯价弹出层
  404. showLadderPricePopup() {
  405. let that = this;
  406. if (that.data.specifications.length == 0) {
  407. if (that.data.prices.length == 0) {
  408. that.setData({
  409. showLadderPrice: true,
  410. prices: [{
  411. number: '',
  412. price: ''
  413. },
  414. {
  415. number: '',
  416. price: ''
  417. }
  418. ]
  419. })
  420. } else {
  421. that.setData({
  422. showLadderPrice: true
  423. })
  424. }
  425. } else {
  426. wx.showModal({
  427. title: '提示',
  428. content: '规格和阶梯价不可同时设置,如需设置阶梯价,则会清除规格内所有设置',
  429. success(res) {
  430. if (res.confirm) {
  431. if (that.data.prices.length == 0) {
  432. that.setData({
  433. specifications: [],
  434. showLadderPrice: true,
  435. prices: [{
  436. number: '',
  437. price: ''
  438. },
  439. {
  440. number: '',
  441. price: ''
  442. }
  443. ]
  444. })
  445. } else {
  446. that.setData({
  447. specifications: [],
  448. showLadderPrice: true
  449. })
  450. }
  451. } else if (res.cancel) {
  452. console.log('用户点击取消')
  453. }
  454. }
  455. })
  456. }
  457. },
  458. // 关闭阶梯价弹出层
  459. closeLadderPricePopup() {
  460. let that = this;
  461. let isOK = that.judgeNoyNullStepPrice(that.data.prices);
  462. if (isOK) {
  463. that.setData({
  464. specificationText: '统一规格',
  465. price: Number(that.data.prices[0].price),
  466. showLadderPrice: false
  467. })
  468. } else {
  469. wx.showToast({
  470. title: '您未完整录入数据',
  471. icon: 'none',
  472. mask: true,
  473. success() {
  474. setTimeout(() => {
  475. that.setData({
  476. specificationText: '统一规格',
  477. prices: [],
  478. showLadderPrice: false
  479. })
  480. }, 1500)
  481. }
  482. })
  483. }
  484. },
  485. // 阶梯价个数输入
  486. ladderPriceNumInput(e) {
  487. let index = e.currentTarget.dataset.index;
  488. let value = e.detail.value;
  489. let list = this.data.prices;
  490. list[index].number = value;
  491. this.setData({
  492. prices: list
  493. })
  494. },
  495. // 阶梯价金额输入
  496. ladderPricePriceInput(e) {
  497. let index = e.currentTarget.dataset.index;
  498. let value = e.detail.value;
  499. let list = this.data.prices;
  500. list[index].price = value;
  501. this.setData({
  502. prices: list
  503. })
  504. },
  505. // 添加阶梯
  506. addbulk() {
  507. let bulk = {
  508. number: '',
  509. price: ''
  510. }
  511. let prices = this.data.prices;
  512. prices.push(bulk)
  513. this.setData({
  514. prices: prices
  515. })
  516. },
  517. // 删除阶梯
  518. delbulk(e) {
  519. let index = e.currentTarget.dataset.index
  520. let list = this.data.prices;
  521. list.splice(index, 1);
  522. this.setData({
  523. prices: list
  524. })
  525. },
  526. // 确认添加
  527. submit() {
  528. let that = this;
  529. // 商品名称必录校验
  530. if (that.data.goodName == '') {
  531. wx.showToast({
  532. title: '商品名称未录入',
  533. icon: 'none',
  534. mask: true
  535. })
  536. return
  537. }
  538. // 商品简介必录校验
  539. if (that.data.goodIntro == '') {
  540. wx.showToast({
  541. title: '商品简介未录入',
  542. icon: 'none',
  543. mask: true
  544. })
  545. return
  546. }
  547. // 商品图片必录校验
  548. if (that.data.imageList.length == 0) {
  549. wx.showToast({
  550. title: '商品图片未添加',
  551. icon: 'none',
  552. mask: true
  553. })
  554. return
  555. }
  556. // 划线价格必录校验
  557. if (that.data.scribePrice == '') {
  558. wx.showToast({
  559. title: '划线价格未录入',
  560. icon: 'none',
  561. mask: true
  562. })
  563. return
  564. }
  565. // 售价必录校验
  566. if (that.data.price == '') {
  567. wx.showToast({
  568. title: '售价未录入',
  569. icon: 'none',
  570. mask: true
  571. })
  572. return
  573. }
  574. // 库存
  575. let stock = that.data.stock;
  576. if (stock == '') {
  577. stock = '99999999';
  578. }
  579. // 起购数量必录校验
  580. /*
  581. if (that.data.startingPurchase == '') {
  582. wx.showToast({
  583. title: '起购数量未录入',
  584. icon: 'none',
  585. mask: true
  586. })
  587. return
  588. }
  589. */
  590. // 限购数量必录校验
  591. /*
  592. if (that.data.purchaseRestrictionsNumber == '') {
  593. wx.showToast({
  594. title: '限购数量未录入',
  595. icon: 'none',
  596. mask: true
  597. })
  598. return
  599. }
  600. */
  601. // 限购次数必录校验
  602. /*
  603. if (that.data.purchaseRestrictionsSecond == '') {
  604. wx.showToast({
  605. title: '限购次数未录入',
  606. icon: 'none',
  607. mask: true
  608. })
  609. return
  610. }
  611. */
  612. // 起购团数必录校验
  613. /*
  614. if (that.data.startingPurchaseNumber == '') {
  615. wx.showToast({
  616. title: '起购团数未录入',
  617. icon: 'none',
  618. mask: true
  619. })
  620. return
  621. }
  622. */
  623. // 如果不录规格也不录阶梯价-规格为统一规格,价格为售价
  624. if (that.data.specifications.length == 0 && that.data.prices.length == 0) {
  625. let list = that.data.specifications;
  626. let obj = {};
  627. obj.title = '统一规格';
  628. obj.price = that.data.price;
  629. list.push(obj);
  630. that.setData({
  631. specifications: list
  632. })
  633. }
  634. wx.showLoading({
  635. title: '提交中',
  636. mask: true
  637. })
  638. wx.request({
  639. url: api.Commodity_add,
  640. header: {
  641. 'Authorization': wx.getStorageSync('token')
  642. },
  643. method: 'POST',
  644. data: {
  645. commodity_name: that.data.goodName,
  646. commodity_img: that.data.imageList,
  647. commodity_introduction: that.data.goodIntro,
  648. scribe_price: that.data.scribePrice,
  649. specifications: that.data.specifications,
  650. price: that.data.price,
  651. stock: stock,
  652. classification_id: that.data.categorys[that.data.categoryIndex].id,
  653. commodity_warehouse: that.data.isAddToGoodsBank,
  654. starting_purchase: that.data.startingPurchase,
  655. purchase_restrictions_number: that.data.purchaseRestrictionsNumber,
  656. purchase_restrictions_second: that.data.purchaseRestrictionsSecond,
  657. starting_purchase_number: that.data.startingPurchaseNumber,
  658. step_price: that.data.prices
  659. },
  660. success(res) {
  661. console.log(res);
  662. wx.hideLoading()
  663. if (res.data.code === 1) {
  664. wx.showToast({
  665. title: '提交成功',
  666. icon: 'success',
  667. mask: true,
  668. success() {
  669. if (that.data.enterType == 'announce') {
  670. // 获取商品详情
  671. let id = Number(res.data.data); //商品id
  672. wx.request({
  673. url: api.Commodity_info,
  674. header: {
  675. 'Authorization': wx.getStorageSync('token')
  676. },
  677. data: {
  678. id: id
  679. },
  680. success(ress) {
  681. console.log(ress);
  682. if (ress.data.code === 1) {
  683. let arr = [];
  684. let obj = ress.data.data;
  685. arr.push(obj);
  686. storageManager.set('subPageResult', arr);
  687. setTimeout(() => {
  688. wx.navigateBack({
  689. delta: 1,
  690. })
  691. }, 1500)
  692. }
  693. }
  694. })
  695. } else {
  696. setTimeout(() => {
  697. wx.navigateBack({
  698. delta: 1,
  699. })
  700. }, 1500)
  701. }
  702. }
  703. })
  704. } else {
  705. wx.showToast({
  706. title: res.data.msg,
  707. mask: true,
  708. icon: 'none'
  709. })
  710. }
  711. },
  712. fail(err) {
  713. wx.hideLoading()
  714. wx.showToast({
  715. title: '发起网络请求失败',
  716. icon: 'none',
  717. mask: true
  718. })
  719. },
  720. complete() {
  721. // wx.hideLoading()
  722. }
  723. })
  724. },
  725. // 阶梯价-判断不为空
  726. judgeNoyNullStepPrice(arr) {
  727. let isOK = true;
  728. for (let i = 0; i < arr.length; i++) {
  729. if (arr[i].title == '' || arr[i].price == '') {
  730. isOK = false;
  731. }
  732. }
  733. return isOK;
  734. },
  735. // 规格-判断不为空
  736. judgeNoyNullSpecifications(arr) {
  737. let isOK = true;
  738. for (let i = 0; i < arr.length; i++) {
  739. if (arr[i].number == '' || arr[i].price == '') {
  740. isOK = false;
  741. }
  742. }
  743. return isOK;
  744. },
  745. })