category.js 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925
  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. if (process.env.NODE_ENV === 'development') {
  368. const client = algoliasearch(
  369. '7KGEFE6I2Z',
  370. 'e39e202ace0a2fa12ea61095e6ede35d'
  371. )
  372. this.index = client.initIndex('mysql_test')
  373. } else {
  374. const client = algoliasearch(
  375. '2340OWI595',
  376. '2d4c53cdcf2bab0c361e589c2c2272fa'
  377. )
  378. this.index = client.initIndex('product_au')
  379. }
  380. this.getList()
  381. },
  382. methods: {
  383. multiplyWithMargin(o, m) {
  384. return divide(times(o, 100 + parseFloat(m)), 100)
  385. },
  386. getList() {
  387. let keyword =
  388. this.$route.params.thirdCategory ||
  389. this.$route.params.secondCategory ||
  390. this.$route.params.firstCategory ||
  391. ''
  392. const config = {
  393. hitsPerPage: 1000,
  394. // attributesToRetrieve: ['cat_name'], // 限定只返回某个属性
  395. }
  396. if (
  397. this.$route.query.keyword &&
  398. this.$route.fullPath.includes('searchResult')
  399. ) {
  400. keyword = decodeURIComponent(this.$route.query.keyword).trim() || ''
  401. }
  402. this.listLoading = true
  403. this.productsList = []
  404. if (!this.$route.fullPath.includes('searchResult')) {
  405. const t = this.fakeLeadTimeList.slice()
  406. t.pop()
  407. t.push({
  408. // 用id 0 是会导致 checkedLeadtime 勾选all时值为0, 巧妙避开 computedProductList 中 leadTime相关的计算,
  409. // 让 leadtimeFlag 永远都是true, 从而顺利筛选出所有商品(筛选全部通过).
  410. id: 0,
  411. name: 'All',
  412. value: [],
  413. })
  414. this.leadTimeList = t
  415. if (
  416. this.$route.query.feature &&
  417. Number(this.$route.query.feature) === 54
  418. ) {
  419. keyword = 'new product'
  420. // config.facetFilters = ['filter:New product']
  421. config.restrictSearchableAttributes = 'filter'
  422. } else {
  423. config.restrictSearchableAttributes = 'cat_name'
  424. }
  425. } else {
  426. this.leadTimeList = this.fakeLeadTimeList.slice()
  427. }
  428. Promise.all([
  429. this.index.search(keyword, config),
  430. this.$store.dispatch('getShopInfo'),
  431. ])
  432. .then(([{ hits }, shopInfo]) => {
  433. const margin = parseFloat(shopInfo.margin) || 0
  434. this.leadtimeComputedFlag = false
  435. this.priceMin = 1000
  436. this.priceMax = 0.01
  437. // 这几个是临时数据
  438. const temp = []
  439. const filterList = []
  440. const colorList = []
  441. const collectionsList = []
  442. // 临时数据 end
  443. if (hits.length) {
  444. hits
  445. .filter(i => i.status === 1 || i.status === '1' || i.status)
  446. .forEach(item => {
  447. let colorImg = ''
  448. item.colour_imgs = JSON.parse(item.colour_imgs)
  449. item.colour_imgs.sort((a, b) => a.name.length - b.name.length)
  450. if (
  451. this.$route.fullPath.includes('searchResult') &&
  452. Array.isArray(item.colour_imgs) &&
  453. item.colour_imgs.length
  454. ) {
  455. item.colour_imgs.forEach(colorItem => {
  456. if (colorItem.name && colorItem.name.length) {
  457. if (
  458. new RegExp(colorItem.name.toLowerCase(), 'i').test(
  459. keyword
  460. )
  461. ) {
  462. console.log(
  463. item.product_code,
  464. colorItem.name,
  465. 'replace'
  466. )
  467. colorImg = colorItem.img
  468. } else if (
  469. /\s/.test(colorItem.name) &&
  470. colorItem.name
  471. .split(' ')
  472. .filter(a => a.length > 0)
  473. .some(b =>
  474. new RegExp(b.toLowerCase(), 'i').test(keyword)
  475. )
  476. ) {
  477. console.log(
  478. item.product_code,
  479. colorItem.name,
  480. 'advance replace'
  481. )
  482. colorImg = colorItem.img
  483. }
  484. }
  485. })
  486. item.colour_imgs.forEach(i => {
  487. if (i.name && i.name.length) {
  488. if (
  489. keyword.toLowerCase().includes(i.name.toLowerCase())
  490. ) {
  491. console.log(
  492. item.product_code,
  493. i.name,
  494. 'complete replace'
  495. )
  496. colorImg = i.img
  497. }
  498. }
  499. })
  500. console.log('---')
  501. }
  502. const result = {
  503. // img: item.img || '',
  504. // colour_imgs: item.colour_imgs,
  505. price_min: this.multiplyWithMargin(
  506. parseFloat(item.price_min),
  507. margin
  508. ),
  509. price_max: this.multiplyWithMargin(
  510. parseFloat(item.price_max),
  511. margin
  512. ),
  513. product_code: item.product_code,
  514. icon: Array.isArray(item.icon)
  515. ? item.icon.filter(i => i.id)
  516. : typeof item.icon === 'string'
  517. ? JSON.parse(item.icon)
  518. : [],
  519. moq: item.moq,
  520. cycle:
  521. (typeof item.cycle === 'string'
  522. ? JSON.parse(item.cycle)
  523. : item.cycle) || [],
  524. cycle_icon:
  525. (typeof item.cycle === 'string'
  526. ? JSON.parse(item.cycle)
  527. : item.cycle) || [],
  528. collection_detail:
  529. (typeof item.collection_detail === 'string'
  530. ? JSON.parse(item.collection_detail)
  531. : item.collection_detail) || [],
  532. product_name: item.name || '',
  533. info: {
  534. image: colorImg || item.img || '',
  535. id: item.id,
  536. },
  537. main: {
  538. image: colorImg || item.img || '',
  539. id: item.id,
  540. },
  541. color: [],
  542. filter: [],
  543. // 不一定有
  544. collections: [],
  545. pricePoint: [],
  546. compliance: [],
  547. create_time: item.create_time
  548. ? new Date(item.create_time).getTime()
  549. : new Date().getTime(),
  550. ranking: item.rank
  551. ? parseInt(item.rank)
  552. : Math.floor(Math.random() * 10000),
  553. }
  554. const min = Number(result.price_min)
  555. const max = Number(result.price_max)
  556. if (min < this.priceMin && min !== 0) {
  557. this.priceMin = min
  558. }
  559. if (max > this.priceMax) {
  560. this.priceMax = max
  561. }
  562. this.priceRange1 = this.priceMin
  563. this.priceRange2 = this.priceMax
  564. if (item.colour) {
  565. try {
  566. item.colour_detail = JSON.parse(item.colour_detail)
  567. } catch (e) {
  568. console.log('解析 colour_detail 出错')
  569. }
  570. if (!Array.isArray(item.colour_detail)) {
  571. // 部分数据异常, 额外添加处理逻辑
  572. item.colour_detail = [item.colour_detail]
  573. }
  574. result.color = item.colour_detail
  575. item.colour_detail.forEach(a => {
  576. if (!colorList.some(i => i.id === a.id)) {
  577. colorList.push(a)
  578. }
  579. })
  580. }
  581. if (item.filter.length) {
  582. try {
  583. item.filter_detail = JSON.parse(item.filter_detail)
  584. } catch (e) {
  585. console.log('解析 filter_detail 出错')
  586. }
  587. result.filter = item.filter_detail
  588. item.filter_detail.forEach(a => {
  589. if (!filterList.some(i => i.id === a.id)) {
  590. filterList.push(a)
  591. }
  592. })
  593. }
  594. if (item.collection.length) {
  595. try {
  596. item.collection = JSON.parse(item.collection)
  597. } catch (e) {
  598. console.log('解析 collection 出错')
  599. }
  600. item.collection.forEach(a => {
  601. if (!collectionsList.some(i => a === i.name)) {
  602. collectionsList.push({ name: a })
  603. result.collections.push(a)
  604. }
  605. })
  606. }
  607. result.hasNewProduct = result.filter.some(i => i.id === 54)
  608. result.hasBestSeller = result.collection_detail.some(
  609. i => i.id === 209
  610. )
  611. temp.push(result)
  612. })
  613. }
  614. this.featureList = filterList
  615. this.collectionsList = collectionsList
  616. this.colourList = colorList
  617. // this.decorationList = []
  618. // this.complianceList = []
  619. temp.sort(defaultSortFunc)
  620. this.productsList = temp
  621. this.loaded = true
  622. this.listLoading = false
  623. })
  624. .catch(() => {
  625. this.listLoading = false
  626. this.productsList = []
  627. })
  628. },
  629. getListold() {
  630. const params = {
  631. order_name: this.order_name,
  632. order_type: this.order_type,
  633. first_cat: this.$route.params.firstCategory,
  634. second_cat: this.$route.params.secondCategory,
  635. third_cat: this.$route.params.thirdCategory,
  636. }
  637. if (this.loaded || this.$route.query.qty) {
  638. params.moq = this.quantity
  639. }
  640. if (this.priceId) {
  641. params.price_id = this.priceId
  642. }
  643. if (this.checkedLeadtime) {
  644. params.filter_id = this.checkedLeadtime
  645. }
  646. if (
  647. this.$route.query.keyword &&
  648. this.$route.fullPath.includes('searchResult')
  649. ) {
  650. params.keyword =
  651. decodeURIComponent(this.$route.query.keyword).trim() || ''
  652. }
  653. const config = {}
  654. if (this.cancelSource) {
  655. this.cancelSource.cancel()
  656. config.cancelToken = this.cancelSource?.token
  657. }
  658. this.listLoading = true
  659. this.productsList = []
  660. if (!this.$route.fullPath.includes('searchResult')) {
  661. const t = this.fakeLeadTimeList.slice()
  662. t.pop()
  663. t.push({
  664. // 用id 0 是会导致 checkedLeadtime 勾选all时值为0, 巧妙避开 computedProductList 中 leadTime相关的计算,
  665. // 让 leadtimeFlag 永远都是true, 从而顺利筛选出所有商品(筛选全部通过).
  666. id: 0,
  667. name: 'All',
  668. value: [],
  669. })
  670. this.leadTimeList = t
  671. } else {
  672. this.leadTimeList = this.fakeLeadTimeList.slice()
  673. }
  674. this.$axios
  675. .get(
  676. '/goods_au/list',
  677. {
  678. params,
  679. },
  680. config
  681. )
  682. .then(res => {
  683. if (res.code === 1) {
  684. this.leadtimeComputedFlag = false
  685. this.priceMin = 1000
  686. this.priceMax = 0.01
  687. this.featureList = res.result.filter || []
  688. this.collectionsList = res.result.collections || []
  689. this.complianceList = res.result.compliance || []
  690. this.colourList = res.result.color || []
  691. this.decorationList = res.result.decorations || []
  692. // this.leadTimeList =
  693. // res.result.lead_time
  694. // .sort((a, b) => a.rank - b.rank)
  695. // .map(i => {
  696. // return {
  697. // ...i,
  698. // value: this.fakeLeadTimeList.filter(f => f.id === i.id)[0]
  699. // .value,
  700. // }
  701. // }) || []
  702. this.productsList =
  703. res.result.list.map(item => {
  704. const min = Number(item.price_min)
  705. const max = Number(item.price_max)
  706. if (min < this.priceMin && min !== 0) {
  707. this.priceMin = min
  708. }
  709. if (max > this.priceMax) {
  710. this.priceMax = max
  711. }
  712. this.priceRange1 = this.priceMin
  713. this.priceRange2 = this.priceMax
  714. return {
  715. ...item,
  716. cycle_icon: item.cycle,
  717. lead_time_id: item.lead_time_id || '',
  718. info: {
  719. image: item.main?.image,
  720. id: item.main?.id,
  721. },
  722. }
  723. }) || []
  724. // 排序是为了保证一级分类考前. 分类页面直接就取他的child展示, 即列出二级分类.
  725. // 二级分类页面大概率搜不出三级子分类, 一言难尽.
  726. this.cate = res.result.cate.sort((a, b) => a.pid - b.pid)
  727. // console.log(this.cate, 'this.cate')
  728. this.listLoading = false
  729. }
  730. // this.$nextTick(() => {
  731. // window.scroll(0, 0);
  732. // });
  733. this.loaded = true
  734. })
  735. .catch(() => {
  736. this.listLoading = false
  737. this.productsList = []
  738. })
  739. },
  740. handleChangeQuantity(value) {
  741. if (value) {
  742. this.quantity = value
  743. // this.$router.replace({
  744. // path: this.$route.path,
  745. // query: {
  746. // ...this.$route.query,
  747. // qty: value,
  748. // t: new Date().getTime(),
  749. // },
  750. // })
  751. this.getList()
  752. }
  753. },
  754. handleChangePrice(arr) {
  755. console.log('price change', arr)
  756. this.priceMin = arr[0]
  757. this.priceMax = arr[1]
  758. },
  759. handleChangeLeadtime(value) {
  760. this.checkedLeadtime = value
  761. // this.$router.replace({
  762. // path: this.$route.path,
  763. // query: {
  764. // ...this.$route.query,
  765. // lead_time: value,
  766. // t: new Date().getTime(),
  767. // },
  768. // })
  769. },
  770. handleChangeColor(value) {
  771. this.checkedColor = value
  772. },
  773. handleChangeFeature(value) {
  774. this.checkedFeature = value
  775. },
  776. handleChangeCollection(value) {
  777. this.checkedCollection = value
  778. },
  779. handleChangeDecoration(value) {
  780. this.checkedDecoration = value
  781. },
  782. handleChangeCompliance(value) {
  783. this.checkedCompliance = value
  784. },
  785. handleCommand(command) {
  786. let func = defaultSortFunc
  787. if (command === 'Default') {
  788. this.order_name = ''
  789. this.order_type = ''
  790. this.command = command
  791. } else if (command === 'Product Name:A-Z') {
  792. this.order_name = 'product_name'
  793. this.order_type = 'asc'
  794. func = (a, b) => a.product_name.localeCompare(b.product_name)
  795. this.command = command
  796. } else if (command === 'Product Name:Z-A') {
  797. this.order_name = 'product_name'
  798. this.order_type = 'desc'
  799. func = (a, b) => b.product_name.localeCompare(a.product_name)
  800. this.command = command
  801. } else if (command === 'Price: Low to high') {
  802. this.order_name = 'price_min'
  803. this.order_type = 'asc'
  804. func = (a, b) => a.price_min - b.price_min
  805. this.command = command
  806. } else if (command === 'Price: High to low') {
  807. this.order_name = 'price_min'
  808. this.order_type = 'desc'
  809. func = (a, b) => b.price_max - a.price_max
  810. this.command = command
  811. } else if (command === 'create_time') {
  812. this.order_name = 'create_time'
  813. this.order_type = 'desc'
  814. func = (a, b) => b.create_time - a.create_time
  815. this.command = command
  816. }
  817. this.productsList.sort(func)
  818. },
  819. reset() {
  820. if (!this.$route.query.qty) {
  821. this.quantity = 1000
  822. }
  823. this.priceMin = 1000
  824. this.priceMax = 0.01
  825. this.checkedCollection = []
  826. this.checkedCompliance = []
  827. this.checkedLeadtime = ''
  828. this.checkedColor = []
  829. this.checkedDecoraiton = []
  830. this.checkedFeature = []
  831. this.getList()
  832. },
  833. infiniteHandler($state) {
  834. if (this.total > 12) {
  835. const temp = this.computedProductList.slice(
  836. this.listQuery.page * this.listQuery.limit,
  837. this.listQuery.page * this.listQuery.limit + this.listQuery.limit
  838. )
  839. this.listQuery.page += 1 // 下一页
  840. setTimeout(() => {
  841. if (temp.length) {
  842. this.cardList = this.cardList.concat(temp)
  843. $state.loaded()
  844. } else {
  845. $state.loaded()
  846. $state.complete()
  847. }
  848. }, 800)
  849. } else {
  850. $state.loaded()
  851. $state.complete()
  852. }
  853. },
  854. transName(str) {
  855. return str.replace(/\s+/g, '-').replace('-&', '').toLowerCase()
  856. },
  857. // 从分类树数据里面找到对应分类
  858. getCategoryFromTree(p, tree) {
  859. let result = {}
  860. if (!tree.length) return result
  861. tree.forEach(i => {
  862. if (i.id === p.id || this.transName(i.name) === p.name) {
  863. result = cloneDeep(i)
  864. result.lev = 1
  865. }
  866. if (!Array.isArray(i.child)) return
  867. i.child.forEach(secondCate => {
  868. if (
  869. secondCate.id === p.id ||
  870. this.transName(secondCate.name) === p.name
  871. ) {
  872. result = cloneDeep(secondCate)
  873. result.parentName = i.name
  874. result.lev = 2
  875. result.root = {
  876. name: i.name,
  877. id: i.id,
  878. pid: 0,
  879. }
  880. }
  881. })
  882. })
  883. return result
  884. },
  885. },
  886. }