category.js 29 KB

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