index.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. const _Http = getApp().globalData.http,
  2. currency = require("../../../../utils/currency"),
  3. CNY = sum => currency(sum, {
  4. symbol: "¥",
  5. precision: 2
  6. }).format();
  7. let downCount = {};
  8. Component({
  9. options: {
  10. addGlobalClass: true,
  11. },
  12. properties: {
  13. figure: {
  14. type: Number
  15. }
  16. },
  17. lifetimes: {
  18. attached: function () {
  19. getApp().globalData.Language.getLanguagePackage(this)
  20. this.setData({
  21. siteid: wx.getStorageSync('userMsg').siteid
  22. })
  23. }
  24. },
  25. data: {
  26. isGet: false,
  27. list: [],
  28. results: [], //选中结果
  29. sa_brandid: null, //当前选中品牌id
  30. classList: [], //生成订单时所选
  31. sum: 0, //价格合
  32. },
  33. methods: {
  34. /* 获取列表 */
  35. getList() {
  36. _Http.basic({
  37. "id": 20220924095302,
  38. "content": {
  39. nocache: true,
  40. "istool": 1,
  41. "pageNumber": 1,
  42. "pageSize": getApp().globalData.num + 5,
  43. "where": {
  44. "condition": ""
  45. }
  46. }
  47. }).then(res => {
  48. console.log('购物车列表', res)
  49. if (res.code != '1') return wx.showToast({
  50. title: res.msg,
  51. icon: "none"
  52. })
  53. let list = [],
  54. allBrandList = [];
  55. list = res.data.map(v => {
  56. v.showPrice = CNY(v.oldprice)
  57. let obj = allBrandList.find(s => s.sa_brandid == v.sa_brandid);
  58. if (obj) {
  59. obj.results.push(v.sa_shoppingcartid)
  60. } else {
  61. allBrandList.push({
  62. brandname: v.brandname,
  63. sa_brandid: v.sa_brandid,
  64. results: [v.sa_shoppingcartid],
  65. })
  66. }
  67. return v
  68. });
  69. this.setData({
  70. list,
  71. allBrandList,
  72. isGet: true
  73. });
  74. if (wx.getStorageSync('shopping_tool')) {
  75. this.setData({
  76. ...wx.getStorageSync('shopping_tool')
  77. });
  78. this.computeSum();
  79. }
  80. })
  81. },
  82. clickBut(e) {
  83. this.data.classList.length >= 2 ? wx.showToast({
  84. title: getApp().globalData.Language.getMapText('请选择订单领域(订单只允许同品牌/同领域的商品)'),
  85. icon: "none",
  86. duration: 3000
  87. }) : this.handleSubmit(0);
  88. },
  89. /* 提交 */
  90. submit(e) {
  91. this.handleSubmit(e.detail.value)
  92. },
  93. handleSubmit(index) {
  94. let data = this.data.classList[index];
  95. _Http.basic({
  96. "id": 20221128183202,
  97. "content": {
  98. "istool": 1,
  99. "tradefield": data.type, //必选
  100. "items": data.list.map(v => {
  101. return {
  102. "sa_orderitemsid": 0,
  103. "itemid": v.itemid,
  104. "sa_brandid": v.sa_brandid,
  105. "qty": v.qty
  106. }
  107. })
  108. }
  109. }).then(res => {
  110. console.log("转化订单", res)
  111. if (res.code != '1') return wx.showToast({
  112. title: res.msg,
  113. icon: "none"
  114. });
  115. wx.showModal({
  116. cancelText: getApp().globalData.Language.getMapText('取消'),
  117. confirmText: getApp().globalData.Language.getMapText('确定'),
  118. title: getApp().globalData.Language.getMapText('提示'),
  119. content: getApp().globalData.Language.getMapText('生成成功!是否立即前往'),
  120. complete: (s) => {
  121. if (s.confirm) {
  122. wx.navigateTo({
  123. url: '/packageA/orderForm/detail?id=' + res.data.sa_orderid,
  124. })
  125. }
  126. }
  127. });
  128. this.getList();
  129. })
  130. },
  131. /* 是否选择全部 */
  132. setIsAll() {
  133. let isAll = this.data.isAll;
  134. //取消全选
  135. if (isAll) {
  136. this.setData({
  137. sa_brandid: null,
  138. results: []
  139. })
  140. } else {
  141. //已选品牌产品情况下
  142. if (this.data.sa_brandid) {
  143. let obj = this.data.allBrandList.find(v => v.sa_brandid == this.data.sa_brandid)
  144. this.setData({
  145. results: obj.results
  146. })
  147. } else {
  148. if (this.data.allBrandList.length == 0) return;
  149. this.setData({
  150. sa_brandid: this.data.allBrandList[0].sa_brandid,
  151. results: this.data.allBrandList[0].results
  152. })
  153. }
  154. };
  155. this.computeSum();
  156. },
  157. /* 切换选中项 */
  158. changeResults(e, my = false) {
  159. const {
  160. item
  161. } = my ? e : e.currentTarget.dataset;
  162. let results = this.data.results,
  163. sa_brandid = this.data.sa_brandid;
  164. if (sa_brandid && sa_brandid != item.sa_brandid) return;
  165. if (results.length == 0) {
  166. results.push(item.sa_shoppingcartid);
  167. sa_brandid = item.sa_brandid;
  168. } else {
  169. let index = results.findIndex(v => v == item.sa_shoppingcartid)
  170. if (index == -1) {
  171. results.push(item.sa_shoppingcartid);
  172. } else {
  173. results.splice(index, 1);
  174. if (results.length == 0) sa_brandid = null;
  175. }
  176. };
  177. this.setData({
  178. results,
  179. sa_brandid
  180. })
  181. this.computeSum();
  182. },
  183. /* 计算总价/产品领域分类 */
  184. computeSum() {
  185. let results = this.data.results,
  186. sum = 0,
  187. classList = [];
  188. if (results.length) results = results.filter(v => {
  189. let item = this.data.list.find(va => va.sa_shoppingcartid == v);
  190. if (item) {
  191. sum = currency(sum).add(currency(item.qty).multiply(item.oldprice)).value;
  192. /* 领域分类 */
  193. let index = classList.findIndex(value => value.type == item.tradefield_shoppingcart);
  194. if (index == -1) {
  195. classList.push({
  196. type: item.tradefield_shoppingcart,
  197. list: [item],
  198. name: item.tradefield_shoppingcart + getApp().globalData.Language.getMapText('(1件商品)')
  199. })
  200. } else {
  201. classList[index].list.push(item)
  202. classList[index].name = classList[index].type + `(${classList[index].list.length + getApp().globalData.Language.getMapText('件商品')})`
  203. }
  204. } else {
  205. getApp().globalData.num = getApp().globalData.num - 1;
  206. }
  207. return item
  208. });
  209. let sa_brandid = results.length ? this.data.sa_brandid : null;
  210. wx.setStorageSync('shopping_tool', {
  211. results,
  212. sa_brandid
  213. })
  214. let isAll = false;
  215. if (sa_brandid) {
  216. let brand = this.data.allBrandList.find(v => v.sa_brandid == sa_brandid)
  217. isAll = brand.results.length == results.length
  218. }
  219. this.setData({
  220. sum: CNY(sum),
  221. isAll,
  222. results,
  223. sa_brandid,
  224. classList
  225. })
  226. this.setLogisticsMsg(sum)
  227. },
  228. /* 免运费信息 */
  229. setLogisticsMsg(sum) {
  230. let logistics = null,
  231. figure = this.data.figure;
  232. if (figure == -1) {
  233. logistics = '到付'
  234. } else if (figure == 0) {
  235. logistics = '预付'
  236. } else {
  237. logistics = sum >= figure ? '免运费' : getApp().globalData.Language.getMapText('差') + currency(currency(figure).subtract(sum).value, {
  238. symbol: "",
  239. precision: 2
  240. }).format() + getApp().globalData.Language.getMapText('元免运费');
  241. }
  242. this.setData({
  243. logistics
  244. })
  245. },
  246. /* 删除产品 */
  247. deteleItem(e) {
  248. const {
  249. item
  250. } = e.currentTarget.dataset;
  251. _Http.basic({
  252. "id": 20220924095202,
  253. "content": {
  254. "sa_shoppingcartids": [item.sa_shoppingcartid]
  255. }
  256. }).then(res => {
  257. if (res.code != '1') return wx.showToast({
  258. title: res.msg,
  259. icon: "none"
  260. });
  261. let index = this.data.allBrandList.findIndex(v => v.sa_brandid == item.sa_brandid)
  262. this.setData({
  263. list: this.data.list.filter(v => v.sa_shoppingcartid != item.sa_shoppingcartid),
  264. [`allBrandList[${index}].results`]: this.data.allBrandList[index].results.filter(v => v != item.sa_shoppingcartid)
  265. })
  266. if (this.data.results.some(v => v == item.sa_shoppingcartid)) this.changeResults({
  267. item
  268. }, true);
  269. getApp().globalData.num = getApp().globalData.num - 1;
  270. })
  271. },
  272. /* 步进器输入框失去焦点 */
  273. inputBlur(e) {
  274. const {
  275. index
  276. } = e.currentTarget.dataset;
  277. let item = this.data.list[index];
  278. let qty = 0;
  279. if (item.orderminqty > e.detail.value) {
  280. getApp().globalData.Language.showToast('输入数量低于最低起订量!')
  281. qty = item.orderminqty;
  282. } else if (item.orderminqty < e.detail.value) {
  283. var currencyRounding = value => currency(value, {
  284. increment: item.orderaddqty
  285. });
  286. qty = currency(currencyRounding(currency(e.detail.value).subtract(item.orderminqty)).format()).add(item.orderminqty).value;
  287. } else {
  288. qty = e.detail.value;
  289. }
  290. this.setData({
  291. [`list[${index}].qty`]: 0
  292. });
  293. this.setData({
  294. [`list[${index}].qty`]: qty
  295. });
  296. this.computeSum();
  297. clearTimeout(downCount['count' + index])
  298. downCount['count' + index] = setTimeout(() => {
  299. _Http.basic({
  300. "id": 20220924104302,
  301. "content": {
  302. "sa_shoppingcartid": item.sa_shoppingcartid,
  303. "qty": item.qty
  304. },
  305. }, false).then(res => {
  306. console.log("修改数量", res)
  307. })
  308. }, 2000)
  309. },
  310. stepperChange(e) {
  311. const {
  312. index
  313. } = e.currentTarget.dataset;
  314. let item = this.data.list[index];
  315. if (e.type == 'plus') {
  316. item.qty += item.orderaddqty
  317. } else {
  318. item.qty -= item.orderaddqty
  319. }
  320. this.setData({
  321. [`list[${index}]`]: item
  322. })
  323. this.computeSum();
  324. clearTimeout(downCount['count' + index])
  325. downCount['count' + index] = setTimeout(() => {
  326. _Http.basic({
  327. "id": 20220924104302,
  328. "content": {
  329. "sa_shoppingcartid": item.sa_shoppingcartid,
  330. "qty": item.qty
  331. },
  332. }, false).then(res => {
  333. console.log("修改数量", res)
  334. })
  335. }, 2000)
  336. }
  337. }
  338. })