category.js 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918
  1. import axios from 'axios'
  2. import algoliasearch from 'algoliasearch'
  3. import cloneDeep from 'lodash.clonedeep'
  4. import { times, divide } from 'number-precision'
  5. const defaultSortFunc = (a, b) => {
  6. if (a.hasBestSeller !== b.hasBestSeller) {
  7. return b.hasBestSeller - a.hasBestSeller
  8. }
  9. if (a.hasNewProduct !== b.hasNewProduct) {
  10. return b.hasNewProduct - a.hasNewProduct
  11. }
  12. if (a.ranking !== b.ranking) {
  13. return b.ranking - a.ranking
  14. }
  15. return b.icon.length - a.icon.length
  16. }
  17. export default {
  18. computed: {
  19. computedProductList() {
  20. return this.productsList.filter(item => {
  21. let moqFlag = true
  22. // moq 过滤. 要筛出1到最大输入quantities范围的
  23. if (!item.moq || item.moq > this.quantity) {
  24. moqFlag = false
  25. }
  26. // 筛选基础价格, 只要有一个价格符合价格区间都算符合条件.
  27. let priceFlag = true
  28. const min = Number(item.price_min)
  29. const max = Number(item.price_max)
  30. if (max < this.priceMin || min > this.priceMax) {
  31. priceFlag = false
  32. }
  33. // 筛选颜色
  34. let colorFlag = true
  35. if (this.checkedColor.length) {
  36. if (Array.isArray(item.color) && item.color.length) {
  37. colorFlag = item.color.some(i => this.checkedColor.includes(i.id))
  38. } else {
  39. colorFlag = false
  40. }
  41. }
  42. // collection
  43. let collectionFlag = true
  44. if (this.checkedCollection.length) {
  45. if (Array.isArray(item.collections) && item.collections.length) {
  46. collectionFlag = item.collections.some(i =>
  47. this.checkedCollection.includes(i)
  48. )
  49. } else {
  50. collectionFlag = false
  51. }
  52. }
  53. // compliance flag
  54. let complianceFlag = true
  55. if (this.checkedCompliance.length) {
  56. if (Array.isArray(item.compliance) && item.compliance.length) {
  57. complianceFlag = item.compliance.some(i =>
  58. this.checkedCompliance.includes(i.id)
  59. )
  60. } else {
  61. complianceFlag = false
  62. }
  63. }
  64. let featureFlag = true
  65. if (this.checkedFeature.length) {
  66. if (Array.isArray(item.filter) && item.filter.length) {
  67. featureFlag = item.filter.some(i =>
  68. this.checkedFeature.includes(i.id)
  69. )
  70. } else {
  71. featureFlag = false
  72. }
  73. }
  74. const decorationFlag = true
  75. // if (this.checkedDecoration.length && item.pricePoint.length) {
  76. // decorationFlag = item.pricePoint.some(i => {
  77. // return i.decorationList.some(j =>
  78. // this.checkedDecoration.includes(j.id)
  79. // )
  80. // })
  81. // }
  82. let leadtimeFlag = true
  83. if (this.checkedLeadtime) {
  84. const cycleMap = Array.from(
  85. new Set(item.cycle.map(i => Number(i.id)))
  86. )
  87. const currentLeadtimeValue = this.leadTimeList.filter(
  88. i => i.id === this.checkedLeadtime
  89. )[0].value
  90. leadtimeFlag = currentLeadtimeValue.some(id => cycleMap.includes(id))
  91. }
  92. // console.log(moqFlag)
  93. // console.log(priceFlag)
  94. // console.log(leadtimeFlag)
  95. // console.log(colorFlag)
  96. // console.log(collectionFlag)
  97. // console.log(featureFlag)
  98. return (
  99. moqFlag &&
  100. priceFlag &&
  101. leadtimeFlag &&
  102. colorFlag &&
  103. collectionFlag &&
  104. complianceFlag &&
  105. featureFlag &&
  106. decorationFlag
  107. )
  108. })
  109. },
  110. },
  111. watch: {
  112. $route: {
  113. immediate: true,
  114. handler(to) {
  115. if (to.query.lead_time) {
  116. const temp = Number(to.query.lead_time)
  117. this.checkedLeadtime = typeof temp === 'number' ? temp : ''
  118. } else {
  119. this.checkedLeadtime = ''
  120. }
  121. if (to.query.pricetype) {
  122. this.priceId = Number(to.query.pricetype)
  123. } else {
  124. this.priceId = ''
  125. }
  126. if (to.query.feature) {
  127. this.checkedFeature = [Number(to.query.feature)]
  128. } else {
  129. this.checkedFeature = []
  130. }
  131. if (to.query.qty) {
  132. const qty = Number(to.query.qty)
  133. if (typeof qty === 'number') {
  134. this.quantity = qty
  135. }
  136. } else {
  137. this.quantity = 1000
  138. }
  139. // 刷新浏览器, 获得的参数是字符串类型, 点页面上的链接, 跳转过来取到的参数是数字类型...
  140. if (to.query.feature && Number(to.query.feature) === 54) {
  141. this.order_name = ''
  142. this.order_type = ''
  143. // this.command = 'Released: Newest to Oldest'
  144. }
  145. if (this.index) {
  146. this.getList()
  147. }
  148. },
  149. },
  150. computedProductList: {
  151. immediate: true,
  152. handler() {
  153. this.featureList = this.featureList.map(item => {
  154. return { ...item, count: 0 }
  155. })
  156. this.collectionsList = this.collectionsList.map(item => {
  157. return { ...item, count: 0 }
  158. })
  159. this.colourList = this.colourList.map(item => {
  160. return { ...item, count: 0 }
  161. })
  162. this.decorationList = this.decorationList.map(item => {
  163. return { ...item, count: 0 }
  164. })
  165. if (!this.leadtimeComputedFlag) {
  166. this.leadTimeList.forEach(item => {
  167. item.count = 0
  168. })
  169. }
  170. this.computedProductList.forEach(item => {
  171. // color 颜色
  172. // console.log(item.color, 'color')
  173. item.color.forEach(color => {
  174. const idx = this.colourList.findIndex(i => i.id === color.id)
  175. if (idx > -1) {
  176. this.colourList[idx].count++
  177. }
  178. })
  179. // collection
  180. item.collections.forEach(collection => {
  181. const idx = this.collectionsList.findIndex(
  182. i => i.name === collection
  183. )
  184. if (idx > -1) {
  185. this.collectionsList[idx].count++
  186. }
  187. })
  188. // filter / feature
  189. item.filter.forEach(filter => {
  190. const idx = this.featureList.findIndex(i => i.id === filter.id)
  191. if (idx > -1) {
  192. this.featureList[idx].count++
  193. }
  194. })
  195. // 打印服务
  196. item.pricePoint.forEach(decoration => {
  197. const idx = this.decorationList.findIndex(
  198. i => i.id === decoration.id
  199. )
  200. if (idx > -1) {
  201. this.decorationList[idx].count++
  202. }
  203. })
  204. // 周期 / leadtime
  205. if (!this.leadtimeComputedFlag) {
  206. const cycleMap = Array.from(
  207. new Set(item.cycle.map(i => Number(i.id)))
  208. )
  209. for (const i of this.leadTimeList) {
  210. if (i.id === 0) i.count++
  211. let flag = false
  212. cycleMap.forEach(cycle => {
  213. if (i.value.includes(cycle)) {
  214. flag = true
  215. }
  216. })
  217. if (flag) {
  218. i.count++
  219. }
  220. }
  221. }
  222. })
  223. this.cardList = this.computedProductList.slice(0, 12)
  224. this.total = this.computedProductList.length
  225. this.listQuery = {
  226. page: 1,
  227. limit: 12,
  228. }
  229. this.leadtimeComputedFlag = true
  230. },
  231. },
  232. categoryList() {
  233. const keyword =
  234. this.$route.params.secondCategory ||
  235. this.$route.params.firstCategory ||
  236. ''
  237. if (
  238. !this.$route.fullPath.includes('searchResult') &&
  239. !this.$route.params.thirdCategory &&
  240. this.categoryList.length &&
  241. keyword.length
  242. ) {
  243. const currentCate = this.getCategoryFromTree(
  244. { name: keyword },
  245. this.categoryList
  246. )
  247. this.cate = Array.isArray(currentCate.child) ? currentCate.child : []
  248. }
  249. },
  250. },
  251. async fetch() {
  252. const res = await this.$axios.post('/common/shopProductList')
  253. this.categoryList = res.code === 1 ? res.result : []
  254. return true
  255. },
  256. data() {
  257. return {
  258. command: 'Default',
  259. commandList: [
  260. {
  261. label: 'Default',
  262. value: 'Default',
  263. },
  264. {
  265. label: 'Price: Low to high',
  266. value: 'Price: Low to high',
  267. },
  268. {
  269. label: 'Price: High to low',
  270. value: 'Price: High to low',
  271. },
  272. {
  273. label: 'Name: A to Z',
  274. value: 'Product Name:A-Z',
  275. },
  276. {
  277. label: 'Name: Z to A',
  278. value: 'Product Name:Z-A',
  279. },
  280. {
  281. label: 'Released: Newest to Oldest',
  282. value: 'create_time',
  283. },
  284. ],
  285. total: 0,
  286. listQuery: {
  287. page: 1,
  288. limit: 12,
  289. },
  290. blackList: ['111', '111.00', '999', '999.00', 111, 999],
  291. // 筛选器数据
  292. leadTimeList: [],
  293. // 非实体数据. 里面包含虚拟字段, 可能不会跟数据表一一对应, 用来做lead times集合筛选的.
  294. fakeLeadTimeList: [
  295. {
  296. name: '1 Week or less',
  297. id: 1,
  298. value: [34, 40, 24, 22, 41, 28],
  299. },
  300. {
  301. name: '2 Weeks or less',
  302. id: 2,
  303. value: [34, 40, 24, 22, 41, 16, 35, 28],
  304. },
  305. {
  306. name: '3 Weeks or less',
  307. id: 3,
  308. value: [34, 40, 24, 22, 41, 16, 35, 23, 42, 28],
  309. },
  310. {
  311. name: '4 Weeks or less',
  312. id: 4,
  313. value: [34, 40, 24, 22, 41, 16, 35, 23, 42, 18, 33, 28],
  314. },
  315. {
  316. name: '5 Weeks or less',
  317. id: 5,
  318. value: [34, 40, 24, 22, 41, 16, 35, 23, 42, 18, 33, 26, 28],
  319. },
  320. {
  321. name: '6 Weeks or less',
  322. id: 6,
  323. value: [34, 40, 24, 22, 41, 16, 35, 23, 42, 18, 33, 26, 21, 28],
  324. },
  325. {
  326. name: '6 Weeks or more',
  327. id: 7,
  328. value: [20, 19, 29, 31, 30, 32, 36, 37, 38, 39, 25],
  329. },
  330. ],
  331. colourList: [],
  332. collectionsList: [],
  333. featureList: [],
  334. decorationList: [],
  335. complianceList: [],
  336. // 筛选器数据 end
  337. productsList: [],
  338. cardList: [],
  339. // 顶部分类数据总和, 未筛选过的
  340. cate: [],
  341. order_name: '',
  342. order_type: '',
  343. quantityMin: 1,
  344. quantity: 1000,
  345. priceMin: 1000,
  346. priceMax: 0.01,
  347. priceRange1: 1,
  348. priceRange2: 1,
  349. checkedLeadtime: '',
  350. checkedColor: [],
  351. checkedDecoration: [],
  352. checkedFeature: [],
  353. checkedCollection: [],
  354. checkedCompliance: [],
  355. priceId: '',
  356. cancelSource: null,
  357. loaded: false,
  358. // leadtime的计数仅每次请求接口后重新计算一次
  359. leadtimeComputedFlag: false,
  360. index: null,
  361. categoryList: [],
  362. }
  363. },
  364. beforeMount() {
  365. const CancelToken = axios.CancelToken
  366. this.cancelSource = CancelToken.source()
  367. const client = algoliasearch(
  368. 'OGR0RAPKVN',
  369. '19f480c6a3000b14705a78beadf19ab6'
  370. )
  371. this.index = client.initIndex('product_ca')
  372. this.getList()
  373. },
  374. methods: {
  375. multiplyWithMargin(o, m) {
  376. return divide(times(o, 100 + parseFloat(m)), 100)
  377. },
  378. getList() {
  379. let keyword =
  380. this.$route.params.thirdCategory ||
  381. this.$route.params.secondCategory ||
  382. this.$route.params.firstCategory ||
  383. ''
  384. const config = {
  385. hitsPerPage: 1000,
  386. // attributesToRetrieve: ['cat_name'], // 限定只返回某个属性
  387. }
  388. if (
  389. this.$route.query.keyword &&
  390. this.$route.fullPath.includes('searchResult')
  391. ) {
  392. keyword = decodeURIComponent(this.$route.query.keyword).trim() || ''
  393. }
  394. this.listLoading = true
  395. this.productsList = []
  396. if (!this.$route.fullPath.includes('searchResult')) {
  397. const t = this.fakeLeadTimeList.slice()
  398. t.pop()
  399. t.push({
  400. // 用id 0 是会导致 checkedLeadtime 勾选all时值为0, 巧妙避开 computedProductList 中 leadTime相关的计算,
  401. // 让 leadtimeFlag 永远都是true, 从而顺利筛选出所有商品(筛选全部通过).
  402. id: 0,
  403. name: 'All',
  404. value: [],
  405. })
  406. this.leadTimeList = t
  407. if (
  408. this.$route.query.feature &&
  409. Number(this.$route.query.feature) === 54
  410. ) {
  411. keyword = 'new product'
  412. // config.facetFilters = ['filter:New product']
  413. config.restrictSearchableAttributes = 'filter'
  414. } else {
  415. config.restrictSearchableAttributes = 'cat_name'
  416. }
  417. } else {
  418. this.leadTimeList = this.fakeLeadTimeList.slice()
  419. }
  420. Promise.all([
  421. this.index.search(keyword, config),
  422. this.$store.dispatch('getShopInfo'),
  423. ])
  424. .then(([{ hits }, shopInfo]) => {
  425. const margin = parseFloat(shopInfo.margin) || 0
  426. this.leadtimeComputedFlag = false
  427. this.priceMin = 1000
  428. this.priceMax = 0.01
  429. // 这几个是临时数据
  430. const temp = []
  431. const filterList = []
  432. const colorList = []
  433. const collectionsList = []
  434. // 临时数据 end
  435. if (hits.length) {
  436. hits
  437. .filter(i => i.status === 1 || i.status === '1' || i.status)
  438. .forEach(item => {
  439. let colorImg = ''
  440. item.colour_imgs = JSON.parse(item.colour_imgs)
  441. item.colour_imgs.sort((a, b) => a.name.length - b.name.length)
  442. if (
  443. this.$route.fullPath.includes('searchResult') &&
  444. Array.isArray(item.colour_imgs) &&
  445. item.colour_imgs.length
  446. ) {
  447. item.colour_imgs.forEach(colorItem => {
  448. if (colorItem.name && colorItem.name.length) {
  449. if (
  450. new RegExp(colorItem.name.toLowerCase(), 'i').test(
  451. keyword
  452. )
  453. ) {
  454. console.log(
  455. item.product_code,
  456. colorItem.name,
  457. 'replace'
  458. )
  459. colorImg = colorItem.img
  460. } else if (
  461. /\s/.test(colorItem.name) &&
  462. colorItem.name
  463. .split(' ')
  464. .filter(a => a.length > 0)
  465. .some(b =>
  466. new RegExp(b.toLowerCase(), 'i').test(keyword)
  467. )
  468. ) {
  469. console.log(
  470. item.product_code,
  471. colorItem.name,
  472. 'advance replace'
  473. )
  474. colorImg = colorItem.img
  475. }
  476. }
  477. })
  478. item.colour_imgs.forEach(i => {
  479. if (i.name && i.name.length) {
  480. if (
  481. keyword.toLowerCase().includes(i.name.toLowerCase())
  482. ) {
  483. console.log(
  484. item.product_code,
  485. i.name,
  486. 'complete replace'
  487. )
  488. colorImg = i.img
  489. }
  490. }
  491. })
  492. console.log('---')
  493. }
  494. const result = {
  495. // img: item.img || '',
  496. // colour_imgs: item.colour_imgs,
  497. price_min: this.multiplyWithMargin(
  498. parseFloat(item.price_min),
  499. margin
  500. ),
  501. price_max: this.multiplyWithMargin(
  502. parseFloat(item.price_max),
  503. margin
  504. ),
  505. product_code: item.product_code,
  506. icon: Array.isArray(item.icon)
  507. ? item.icon.filter(i => i.id)
  508. : typeof item.icon === 'string'
  509. ? JSON.parse(item.icon)
  510. : [],
  511. moq: item.moq,
  512. cycle:
  513. (typeof item.cycle === 'string'
  514. ? JSON.parse(item.cycle)
  515. : item.cycle) || [],
  516. cycle_icon:
  517. (typeof item.cycle === 'string'
  518. ? JSON.parse(item.cycle)
  519. : item.cycle) || [],
  520. collection_detail:
  521. (typeof item.collection_detail === 'string'
  522. ? JSON.parse(item.collection_detail)
  523. : item.collection_detail) || [],
  524. product_name: item.name || '',
  525. info: {
  526. image: colorImg || item.img || '',
  527. id: item.id,
  528. },
  529. main: {
  530. image: colorImg || item.img || '',
  531. id: item.id,
  532. },
  533. color: [],
  534. filter: [],
  535. // 不一定有
  536. collections: [],
  537. pricePoint: [],
  538. compliance: [],
  539. create_time: item.create_time
  540. ? new Date(item.create_time).getTime()
  541. : new Date().getTime(),
  542. ranking: item.rank
  543. ? parseInt(item.rank)
  544. : Math.floor(Math.random() * 10000),
  545. }
  546. const min = Number(result.price_min)
  547. const max = Number(result.price_max)
  548. if (min < this.priceMin && min !== 0) {
  549. this.priceMin = min
  550. }
  551. if (max > this.priceMax) {
  552. this.priceMax = max
  553. }
  554. this.priceRange1 = this.priceMin
  555. this.priceRange2 = this.priceMax
  556. if (item.colour) {
  557. try {
  558. item.colour_detail = JSON.parse(item.colour_detail)
  559. } catch (e) {
  560. console.log('解析 colour_detail 出错')
  561. }
  562. if (!Array.isArray(item.colour_detail)) {
  563. // 部分数据异常, 额外添加处理逻辑
  564. item.colour_detail = [item.colour_detail]
  565. }
  566. result.color = item.colour_detail
  567. item.colour_detail.forEach(a => {
  568. if (!colorList.some(i => i.id === a.id)) {
  569. colorList.push(a)
  570. }
  571. })
  572. }
  573. if (item.filter.length) {
  574. try {
  575. item.filter_detail = JSON.parse(item.filter_detail)
  576. } catch (e) {
  577. console.log('解析 filter_detail 出错')
  578. }
  579. result.filter = item.filter_detail
  580. item.filter_detail.forEach(a => {
  581. if (!filterList.some(i => i.id === a.id)) {
  582. filterList.push(a)
  583. }
  584. })
  585. }
  586. if (item.collection.length) {
  587. try {
  588. item.collection = JSON.parse(item.collection)
  589. } catch (e) {
  590. console.log('解析 collection 出错')
  591. }
  592. item.collection.forEach(a => {
  593. if (!collectionsList.some(i => a === i.name)) {
  594. collectionsList.push({ name: a })
  595. result.collections.push(a)
  596. }
  597. })
  598. }
  599. result.hasNewProduct = result.filter.some(i => i.id === 54)
  600. result.hasBestSeller = result.collection_detail.some(
  601. i => i.id === 209
  602. )
  603. temp.push(result)
  604. })
  605. }
  606. this.featureList = filterList
  607. this.collectionsList = collectionsList
  608. this.colourList = colorList
  609. // this.decorationList = []
  610. // this.complianceList = []
  611. temp.sort(defaultSortFunc)
  612. this.productsList = temp
  613. this.loaded = true
  614. this.listLoading = false
  615. })
  616. .catch(() => {
  617. this.listLoading = false
  618. this.productsList = []
  619. })
  620. },
  621. getListold() {
  622. const params = {
  623. order_name: this.order_name,
  624. order_type: this.order_type,
  625. first_cat: this.$route.params.firstCategory,
  626. second_cat: this.$route.params.secondCategory,
  627. third_cat: this.$route.params.thirdCategory,
  628. }
  629. if (this.loaded || this.$route.query.qty) {
  630. params.moq = this.quantity
  631. }
  632. if (this.priceId) {
  633. params.price_id = this.priceId
  634. }
  635. if (this.checkedLeadtime) {
  636. params.filter_id = this.checkedLeadtime
  637. }
  638. if (
  639. this.$route.query.keyword &&
  640. this.$route.fullPath.includes('searchResult')
  641. ) {
  642. params.keyword =
  643. decodeURIComponent(this.$route.query.keyword).trim() || ''
  644. }
  645. const config = {}
  646. if (this.cancelSource) {
  647. this.cancelSource.cancel()
  648. config.cancelToken = this.cancelSource?.token
  649. }
  650. this.listLoading = true
  651. this.productsList = []
  652. if (!this.$route.fullPath.includes('searchResult')) {
  653. const t = this.fakeLeadTimeList.slice()
  654. t.pop()
  655. t.push({
  656. // 用id 0 是会导致 checkedLeadtime 勾选all时值为0, 巧妙避开 computedProductList 中 leadTime相关的计算,
  657. // 让 leadtimeFlag 永远都是true, 从而顺利筛选出所有商品(筛选全部通过).
  658. id: 0,
  659. name: 'All',
  660. value: [],
  661. })
  662. this.leadTimeList = t
  663. } else {
  664. this.leadTimeList = this.fakeLeadTimeList.slice()
  665. }
  666. this.$axios
  667. .get(
  668. '/goods_au/list',
  669. {
  670. params,
  671. },
  672. config
  673. )
  674. .then(res => {
  675. if (res.code === 1) {
  676. this.leadtimeComputedFlag = false
  677. this.priceMin = 1000
  678. this.priceMax = 0.01
  679. this.featureList = res.result.filter || []
  680. this.collectionsList = res.result.collections || []
  681. this.complianceList = res.result.compliance || []
  682. this.colourList = res.result.color || []
  683. this.decorationList = res.result.decorations || []
  684. // this.leadTimeList =
  685. // res.result.lead_time
  686. // .sort((a, b) => a.rank - b.rank)
  687. // .map(i => {
  688. // return {
  689. // ...i,
  690. // value: this.fakeLeadTimeList.filter(f => f.id === i.id)[0]
  691. // .value,
  692. // }
  693. // }) || []
  694. this.productsList =
  695. res.result.list.map(item => {
  696. const min = Number(item.price_min)
  697. const max = Number(item.price_max)
  698. if (min < this.priceMin && min !== 0) {
  699. this.priceMin = min
  700. }
  701. if (max > this.priceMax) {
  702. this.priceMax = max
  703. }
  704. this.priceRange1 = this.priceMin
  705. this.priceRange2 = this.priceMax
  706. return {
  707. ...item,
  708. cycle_icon: item.cycle,
  709. lead_time_id: item.lead_time_id || '',
  710. info: {
  711. image: item.main?.image,
  712. id: item.main?.id,
  713. },
  714. }
  715. }) || []
  716. // 排序是为了保证一级分类考前. 分类页面直接就取他的child展示, 即列出二级分类.
  717. // 二级分类页面大概率搜不出三级子分类, 一言难尽.
  718. this.cate = res.result.cate.sort((a, b) => a.pid - b.pid)
  719. // console.log(this.cate, 'this.cate')
  720. this.listLoading = false
  721. }
  722. // this.$nextTick(() => {
  723. // window.scroll(0, 0);
  724. // });
  725. this.loaded = true
  726. })
  727. .catch(() => {
  728. this.listLoading = false
  729. this.productsList = []
  730. })
  731. },
  732. handleChangeQuantity(value) {
  733. if (value) {
  734. this.quantity = value
  735. // this.$router.replace({
  736. // path: this.$route.path,
  737. // query: {
  738. // ...this.$route.query,
  739. // qty: value,
  740. // t: new Date().getTime(),
  741. // },
  742. // })
  743. this.getList()
  744. }
  745. },
  746. handleChangePrice(arr) {
  747. console.log('price change', arr)
  748. this.priceMin = arr[0]
  749. this.priceMax = arr[1]
  750. },
  751. handleChangeLeadtime(value) {
  752. this.checkedLeadtime = value
  753. // this.$router.replace({
  754. // path: this.$route.path,
  755. // query: {
  756. // ...this.$route.query,
  757. // lead_time: value,
  758. // t: new Date().getTime(),
  759. // },
  760. // })
  761. },
  762. handleChangeColor(value) {
  763. this.checkedColor = value
  764. },
  765. handleChangeFeature(value) {
  766. this.checkedFeature = value
  767. },
  768. handleChangeCollection(value) {
  769. this.checkedCollection = value
  770. },
  771. handleChangeDecoration(value) {
  772. this.checkedDecoration = value
  773. },
  774. handleChangeCompliance(value) {
  775. this.checkedCompliance = value
  776. },
  777. handleCommand(command) {
  778. let func = defaultSortFunc
  779. if (command === 'Default') {
  780. this.order_name = ''
  781. this.order_type = ''
  782. this.command = command
  783. } else if (command === 'Product Name:A-Z') {
  784. this.order_name = 'product_name'
  785. this.order_type = 'asc'
  786. func = (a, b) => a.product_name.localeCompare(b.product_name)
  787. this.command = command
  788. } else if (command === 'Product Name:Z-A') {
  789. this.order_name = 'product_name'
  790. this.order_type = 'desc'
  791. func = (a, b) => b.product_name.localeCompare(a.product_name)
  792. this.command = command
  793. } else if (command === 'Price: Low to high') {
  794. this.order_name = 'price_min'
  795. this.order_type = 'asc'
  796. func = (a, b) => a.price_min - b.price_min
  797. this.command = command
  798. } else if (command === 'Price: High to low') {
  799. this.order_name = 'price_min'
  800. this.order_type = 'desc'
  801. func = (a, b) => b.price_max - a.price_max
  802. this.command = command
  803. } else if (command === 'create_time') {
  804. this.order_name = 'create_time'
  805. this.order_type = 'desc'
  806. func = (a, b) => b.create_time - a.create_time
  807. this.command = command
  808. }
  809. this.productsList.sort(func)
  810. },
  811. reset() {
  812. if (!this.$route.query.qty) {
  813. this.quantity = 1000
  814. }
  815. this.priceMin = 1000
  816. this.priceMax = 0.01
  817. this.checkedCollection = []
  818. this.checkedCompliance = []
  819. this.checkedLeadtime = ''
  820. this.checkedColor = []
  821. this.checkedDecoraiton = []
  822. this.checkedFeature = []
  823. this.getList()
  824. },
  825. infiniteHandler($state) {
  826. if (this.total > 12) {
  827. const temp = this.computedProductList.slice(
  828. this.listQuery.page * this.listQuery.limit,
  829. this.listQuery.page * this.listQuery.limit + this.listQuery.limit
  830. )
  831. this.listQuery.page += 1 // 下一页
  832. setTimeout(() => {
  833. if (temp.length) {
  834. this.cardList = this.cardList.concat(temp)
  835. $state.loaded()
  836. } else {
  837. $state.loaded()
  838. $state.complete()
  839. }
  840. }, 800)
  841. } else {
  842. $state.loaded()
  843. $state.complete()
  844. }
  845. },
  846. transName(str) {
  847. return str.replace(/\s+/g, '-').replace('-&', '').toLowerCase()
  848. },
  849. // 从分类树数据里面找到对应分类
  850. getCategoryFromTree(p, tree) {
  851. let result = {}
  852. if (!tree.length) return result
  853. tree.forEach(i => {
  854. if (i.id === p.id || this.transName(i.name) === p.name) {
  855. result = cloneDeep(i)
  856. result.lev = 1
  857. }
  858. if (!Array.isArray(i.child)) return
  859. i.child.forEach(secondCate => {
  860. if (
  861. secondCate.id === p.id ||
  862. this.transName(secondCate.name) === p.name
  863. ) {
  864. result = cloneDeep(secondCate)
  865. result.parentName = i.name
  866. result.lev = 2
  867. result.root = {
  868. name: i.name,
  869. id: i.id,
  870. pid: 0,
  871. }
  872. }
  873. })
  874. })
  875. return result
  876. },
  877. },
  878. }