PcHeader.vue 45 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597
  1. <template>
  2. <header>
  3. <div class="topbar com-margin-auto com-flex com-width-1400">
  4. <nuxt-link :to="{ name: 'index' }">
  5. <img
  6. src="@/assets/img/logo.png"
  7. alt="PromoCollection Logo"
  8. id="logo" />
  9. </nuxt-link>
  10. <div class="search-input">
  11. <el-input
  12. v-model="keyword"
  13. placeholder="Search item here"
  14. @focus="focus"
  15. @blur="blur"
  16. @keyup.enter.native="goSearchResultPage">
  17. <i
  18. slot="suffix"
  19. class="el-input__icon el-icon-search"
  20. @click="goSearchResultPage"></i>
  21. </el-input>
  22. <div
  23. v-loading="loading"
  24. class="search-detail flex column stretch"
  25. :style="{ display: showType }">
  26. <div
  27. class="flex-auto flex center stretch no-result"
  28. v-if="
  29. !loading && result.cate.length < 1 && productsList.length < 1
  30. ">
  31. No results found for “{{ keyword }}”
  32. </div>
  33. <div
  34. v-else
  35. class="flex-auto flex stretch"
  36. style="overflow: hidden">
  37. <div class="category-list flex column start stretch">
  38. <p class="autocomplete-title sub">CATEGORIES</p>
  39. <ul class="stretch">
  40. <li
  41. v-for="item in result.firstCate"
  42. :key="item.id"
  43. class="flex column stretch">
  44. <nuxt-link
  45. :to="{
  46. name: 'category-firstCategory',
  47. params: {
  48. firstCategory: item.name
  49. .replace(/\s+/g, '-')
  50. .replace('-&', '')
  51. .toLowerCase(),
  52. },
  53. }">
  54. <p>{{ item.name }}</p>
  55. </nuxt-link>
  56. </li>
  57. <p
  58. v-if="result.subCate.length"
  59. class="autocomplete-title">
  60. SUB CATEGORIES
  61. </p>
  62. <li
  63. v-for="item in result.subCate"
  64. :key="item.id"
  65. class="flex column stretch">
  66. <nuxt-link
  67. v-if="item.lev === 2"
  68. :to="{
  69. name: 'category-firstCategory-secondCategory',
  70. params: {
  71. firstCategory: item.parentName
  72. .replace(/\s+/g, '-')
  73. .replace('-&', '')
  74. .toLowerCase(),
  75. secondCategory: item.name
  76. .replace(/\s+/g, '-')
  77. .replace('-&', '')
  78. .toLowerCase(),
  79. },
  80. }">
  81. <p>{{ item.name }}</p>
  82. </nuxt-link>
  83. <nuxt-link
  84. v-else
  85. :to="{
  86. name: 'category-firstCategory-secondCategory-thirdCategory',
  87. params: {
  88. firstCategory: item.grandName
  89. .replace(/\s+/g, '-')
  90. .replace('-&', '')
  91. .toLowerCase(),
  92. secondCategory: item.parentName
  93. .replace(/\s+/g, '-')
  94. .replace('-&', '')
  95. .toLowerCase(),
  96. thirdCategory: item.name
  97. .replace(/\s+/g, '-')
  98. .replace('-&', '')
  99. .toLowerCase(),
  100. },
  101. }">
  102. <p>{{ item.name }}</p>
  103. </nuxt-link>
  104. </li>
  105. </ul>
  106. </div>
  107. <div class="product-list flex-auto flex column stretch">
  108. <div class="flex between start">
  109. <p class="autocomplete-title">PRODUCTS</p>
  110. <nuxt-link
  111. v-if="result.total"
  112. :to="{
  113. name: 'category-searchResult',
  114. query: { keyword: keyword },
  115. }">
  116. <div class="seeAllResult">
  117. Show all {{ result.total }} Results
  118. </div>
  119. </nuxt-link>
  120. </div>
  121. <ul
  122. class="flex-auto flex column stretch"
  123. style="overflow-y: auto">
  124. <li
  125. v-for="item in productsList"
  126. :key="item.id">
  127. <nuxt-link
  128. :to="{
  129. name: 'product-code',
  130. params: { code: item.product_code },
  131. }">
  132. <img
  133. :src="
  134. item.image && !$mediaRegExp.test(item.image)
  135. ? $OSS_PREFIX + item.image
  136. : $utils.generateResizedImageUrl(item.image,100)
  137. "
  138. alt="" />
  139. <div class="product-info">
  140. <p>{{ item.product_name }}</p>
  141. <p>{{ item.product_code }}</p>
  142. </div>
  143. </nuxt-link>
  144. </li>
  145. <div
  146. class="no-result"
  147. v-if="!loading && productsList.length < 1">
  148. No results found for “{{ keyword }}”
  149. </div>
  150. </ul>
  151. </div>
  152. </div>
  153. <div class="sth-else">
  154. <span>Can't find what you're looking for?</span>
  155. <nuxt-link
  156. :to="{
  157. name: 'news-newsName',
  158. params: { newsName: 'indent-ideas', id: indentIdeasArticle.id },
  159. hash: '#formTag',
  160. }">
  161. click here
  162. </nuxt-link>
  163. </div>
  164. </div>
  165. </div>
  166. <div
  167. class="topbar-item com-flex"
  168. style="cursor: default"
  169. v-if="email">
  170. <img
  171. src="@/assets/img/help.png"
  172. alt="help" />
  173. <div class="topbar-item-right com-flex-item">
  174. <p style="margin-bottom: 6px">(+44)203 916 5098</p>
  175. <p>info@promocollection.uk</p>
  176. </div>
  177. </div>
  178. <div class="topbar-item com-flex">
  179. <div
  180. class="topbar-item com-flex"
  181. v-if="!email">
  182. <img src="@/assets/img/login.png" />
  183. <div class="topbar-item-right com-flex-item">
  184. <p @click="openDialog">Login</p>
  185. </div>
  186. </div>
  187. <div
  188. class="topbar-item"
  189. v-else>
  190. <el-popover
  191. placement="bottom-end"
  192. width="292"
  193. trigger="click" ref="userPopover">
  194. <div
  195. slot="reference"
  196. class="topbar-item-right-myAccount">
  197. <!-- <div class="greeting">
  198. Hello {{ $store.state.userInfo.contacts }}
  199. </div> -->
  200. <div class="flex center">
  201. <img src="@/assets/img/login.png" />
  202. <p>Hello, {{ $store.state.userInfo.contacts }}</p>
  203. <span class="el-icon-caret-bottom"></span>
  204. </div>
  205. </div>
  206. <div class="user-menu-panel flex column center" @click="closePopoverAndNavigate">
  207. <!-- <div class="greeting">
  208. Hello {{ $store.state.userInfo.contacts }}
  209. </div> -->
  210. <div class="user-menu-wrap">
  211. <div class="user-menu">
  212. <div class="menu-title">Client Portal</div>
  213. <!-- <div class="sub-menu">
  214. <nuxt-link
  215. :to="{
  216. path: '/home/myDetail',
  217. query: { type: 'enquiry' },
  218. }">
  219. <div class="flex">
  220. <div class="icon order"></div>
  221. <div class="sub-title">My Enquires</div>
  222. </div>
  223. </nuxt-link>
  224. </div> -->
  225. <div class="sub-menu">
  226. <nuxt-link
  227. :to="{
  228. path: '/home/myDetail',
  229. query: { type: 'all-orders' },
  230. }">
  231. <div class="flex">
  232. <div class="icon order"></div>
  233. <div class="sub-title">My Orders</div>
  234. </div>
  235. </nuxt-link>
  236. </div>
  237. <div style="height: 4px; width: 1px"></div>
  238. <div class="menu-title">Marketing Resources</div>
  239. <!-- <div class="sub-menu">
  240. <nuxt-link to="/home/video">
  241. <div class="flex">
  242. <div class="icon video"></div>
  243. <div class="sub-title">Videos</div>
  244. </div>
  245. </nuxt-link>
  246. </div> -->
  247. <!-- <div class="sub-menu">
  248. <a
  249. href="https://www.flipsnack.com/promocollection/"
  250. target="_blank">
  251. <div class="flex">
  252. <div class="icon book"></div>
  253. <div class="sub-title">Catalogue</div>
  254. </div>
  255. </a>
  256. </div> -->
  257. <!-- <div class="sub-menu">
  258. <nuxt-link to="/home/EDMS">
  259. <div class="flex">
  260. <div class="icon book"></div>
  261. <div class="sub-title">EDMS</div>
  262. </div>
  263. </nuxt-link>
  264. </div> -->
  265. <div class="sub-menu">
  266. <a
  267. href="mailto:Info@promocollection.uk?subject=Sample%20Request">
  268. <div class="flex">
  269. <div class="icon mail"></div>
  270. <div class="sub-title">Sample Request</div>
  271. </div>
  272. </a>
  273. </div>
  274. <div class="sub-menu">
  275. <a
  276. href="mailto:Info@promocollection.uk?subject=Free%20Mockup%20Request">
  277. <div class="flex">
  278. <div class="icon mail"></div>
  279. <div class="sub-title">Mockup Request</div>
  280. </div>
  281. </a>
  282. </div>
  283. <div class="menu-title">
  284. <nuxt-link
  285. :to="{
  286. path: '/home/myDetail',
  287. query: { type: 'profile' },
  288. }">
  289. My Profile
  290. </nuxt-link>
  291. </div>
  292. <div class="menu-title">
  293. <div
  294. class="btn-logout"
  295. @click="logout">
  296. Sign Out
  297. </div>
  298. </div>
  299. </div>
  300. </div>
  301. </div>
  302. </el-popover>
  303. </div>
  304. </div>
  305. </div>
  306. <nav>
  307. <ul class="com-width-1400 com-minwidth-1024 com-margin-auto">
  308. <li class="nav-list">
  309. <div class="nav-list-title">
  310. <span
  311. class="shopProducts"
  312. @click.stop="openShopProduct">
  313. Shop Products
  314. <i :class="isShopBlock?'el-icon-arrow-up':'el-icon-arrow-down'"></i>
  315. </span>
  316. </div>
  317. <Transition name="category">
  318. <div
  319. class="nav-menu border-radius"
  320. v-show="isShopBlock"
  321. @click="closeAllBlock">
  322. <div class="nav-menu-content">
  323. <div
  324. class="nav-menu-item"
  325. v-for="item1 in categoryList"
  326. :key="item1.id">
  327. <div class="primary-classification">
  328. <nuxt-link
  329. :to="{
  330. name: 'category-firstCategory',
  331. params: {
  332. firstCategory: item1.name
  333. .replace(/\s+/g, '-')
  334. .replace('-&', '')
  335. .toLowerCase(),
  336. },
  337. }">
  338. <div class="menu-item-icon">
  339. <img
  340. :src="
  341. item1.style && !$mediaRegExp.test(item1.style)
  342. ? $OSS_PREFIX + item1.style
  343. : item1.style
  344. "
  345. alt="" />
  346. </div>
  347. <div class="menu-item-title">
  348. {{ item1.name }}
  349. </div>
  350. </nuxt-link>
  351. <div class="menu-separator"></div>
  352. </div>
  353. <div
  354. class="secondary-classification"
  355. v-for="item2 in item1.child"
  356. :key="item2.id">
  357. <nuxt-link
  358. :to="{
  359. name: 'category-firstCategory-secondCategory',
  360. params: {
  361. firstCategory: item1.name
  362. .replace(/\s+/g, '-')
  363. .replace('-&', '')
  364. .toLowerCase(),
  365. secondCategory: item2.name
  366. .replace(/\s+/g, '-')
  367. .replace('-&', '')
  368. .toLowerCase(),
  369. },
  370. }">
  371. {{ item2.name }}
  372. </nuxt-link>
  373. </div>
  374. </div>
  375. </div>
  376. </div>
  377. </Transition>
  378. </li>
  379. <!-- <li class="nav-list">
  380. <div class="nav-list-title">
  381. <span
  382. class="LeadTime"
  383. @click.stop="openLeadTime">
  384. By Lead Time
  385. <i :class="isShopBlock?'el-icon-arrow-up':'el-icon-arrow-down'"></i>
  386. </span>
  387. </div>
  388. <Transition name="leadTime">
  389. <ul
  390. class="leadTime-list border-radius"
  391. v-show="isLeadTimeBlock"
  392. @click="closeAllBlock">
  393. <li
  394. class="leadTime-list-item"
  395. v-for="item in leadTime"
  396. :key="item.id">
  397. <nuxt-link
  398. :to="{ name: 'category', query: { lead_time: item.id } }">
  399. {{ item.name }}
  400. </nuxt-link>
  401. </li>
  402. </ul>
  403. </Transition>
  404. </li>
  405. <li class="nav-list">
  406. <div class="nav-list-title">
  407. <span
  408. class="Budget"
  409. @click.stop="openBudget"
  410. >By Budget
  411. <i :class="isShopBlock?'el-icon-arrow-up':'el-icon-arrow-down'"></i>
  412. </span>
  413. </div>
  414. <Transition name="budge">
  415. <ul
  416. class="budget-list border-radius"
  417. v-show="isBudgetBlock"
  418. @click.stop="closeAllBlock">
  419. <div
  420. class="budget-list-item"
  421. v-for="item in budget"
  422. :key="item.id">
  423. {{ item.name }}
  424. <div class="sub-item-wrap border-radius flex column stretch">
  425. <div class="budget-list-sub-item-title">QTY Needed</div>
  426. <div
  427. class="budget-list-item"
  428. v-for="(v, i2) in qtyList"
  429. :key="`${item.id}-${i2}`">
  430. <nuxt-link
  431. :to="{
  432. name: 'category',
  433. query: { pricetype: item.id, qty: v.value },
  434. }">
  435. {{ v.name }}
  436. </nuxt-link>
  437. </div>
  438. </div>
  439. </div>
  440. </ul>
  441. </Transition>
  442. </li> -->
  443. <li
  444. class="nav-list"
  445. @click="closeAllBlock">
  446. <!-- <a :href="'/category?feature=54'"> New products</a> -->
  447. <div class="nav-list-title">
  448. <nuxt-link
  449. :to="{ name: 'category', query: { feature: 54 } }"
  450. target="_self">
  451. New Products
  452. </nuxt-link>
  453. </div>
  454. </li>
  455. <li
  456. class="nav-list"
  457. @click="closeAllBlock">
  458. <div class="nav-list-title">
  459. <nuxt-link
  460. :to="{
  461. name: 'news-newsName',
  462. params: { newsName: 'compliance', id: complianceArticle.id },
  463. }"
  464. target="_self">
  465. Compliance
  466. </nuxt-link>
  467. </div>
  468. </li>
  469. <li
  470. class="nav-list"
  471. @click="closeAllBlock">
  472. <div class="nav-list-title">
  473. <nuxt-link
  474. id="indentLink"
  475. :to="{
  476. name: 'news-newsName',
  477. params: { newsName: 'indent-ideas', id: indentIdeasArticle.id },
  478. }"
  479. target="_self">
  480. Indent Sourcing
  481. </nuxt-link>
  482. </div>
  483. </li>
  484. <!-- <li
  485. class="nav-list"
  486. @click="closeAllBlock">
  487. <div class="nav-list-title">
  488. <nuxt-link
  489. to="/category/apparel/socks"
  490. target="_self">
  491. Sock Collection
  492. </nuxt-link>
  493. </div>
  494. </li> -->
  495. <!-- <li
  496. class="nav-list compare-list"
  497. @click="closeAllBlock">
  498. <div class="nav-list-title">
  499. <el-badge
  500. :value="compareList.length"
  501. class="item"
  502. v-show="compareList.length">
  503. </el-badge>
  504. <span>Wishlist</span>
  505. </div>
  506. <div class="compare-product">
  507. <div class="compare-product-title">
  508. <p>Product to Compare</p>
  509. <el-button
  510. class="compare-btn"
  511. size="mini"
  512. @click="compareAll">
  513. Compare All
  514. </el-button>
  515. </div>
  516. <div class="red-line"></div>
  517. <div
  518. class="prompt-info"
  519. v-show="!compareList.length">
  520. <ul>
  521. <li>
  522. Select products to compare by clicking the "Compare list +"
  523. batton on any product listing.
  524. </li>
  525. <li>You can compare up to 5 products.</li>
  526. <li>
  527. After selecting products, click on the "Compare All" button to
  528. view the comparison chart.
  529. </li>
  530. </ul>
  531. </div>
  532. <ul>
  533. <li
  534. v-for="item in compareList"
  535. :key="item.id">
  536. <div class="item-left">
  537. <img
  538. :src="
  539. item.main.image &&
  540. item.main.image.indexOf(
  541. 'http://promocollection.s3.ap-southeast-2.amazonaws.com'
  542. ) != -1
  543. ? item.main.image
  544. : 'https://www.promocollection.uk/' +
  545. item.main.image
  546. " />
  547. <p>{{ item.product_name }}</p>
  548. </div>
  549. <div
  550. class="item-right"
  551. @click="clearCompare(item.id)">
  552. <i class="el-icon-error"></i>
  553. </div>
  554. </li>
  555. </ul>
  556. <el-button
  557. class="clear-btn"
  558. size="mini"
  559. @click="clearAll"
  560. v-show="compareList.length">
  561. Clear All
  562. </el-button>
  563. </div>
  564. </li> -->
  565. </ul>
  566. </nav>
  567. <div class="header-redLine"></div>
  568. </header>
  569. </template>
  570. <script>
  571. import { mapMutations } from 'vuex'
  572. import cloneDeep from 'lodash.clonedeep'
  573. import algoliasearch from 'algoliasearch'
  574. export default {
  575. data() {
  576. return {
  577. // loaded: false,
  578. loading: false,
  579. timer: '',
  580. keyword: '',
  581. result: { cate: [], subCate: [], firstCate: [] },
  582. showType: 'none',
  583. matchingList: [],
  584. categoryList: [],
  585. // leadTime: [],
  586. budget: [],
  587. compareList: [],
  588. indentIdeasArticle: {},
  589. complianceArticle: {},
  590. isShopBlock: false,
  591. isLeadTimeBlock: false,
  592. isBudgetBlock: false,
  593. qtyList: [
  594. {
  595. value: 50,
  596. name: 50,
  597. },
  598. {
  599. value: 100,
  600. name: 100,
  601. },
  602. {
  603. value: 250,
  604. name: 250,
  605. },
  606. {
  607. value: 500,
  608. name: 500,
  609. },
  610. {
  611. value: 1000,
  612. name: '1,000',
  613. },
  614. {
  615. value: 2500,
  616. name: '2,500',
  617. },
  618. {
  619. value: 5000,
  620. name: '5,000',
  621. },
  622. {
  623. value: 10000,
  624. name: '10,000',
  625. },
  626. ],
  627. index: null,
  628. }
  629. },
  630. async fetch() {
  631. const p1 = this.$axios.post('/uk-api/common/shopProductList').then(res => {
  632. if (res.code === 1) {
  633. this.categoryList = res.result
  634. }
  635. })
  636. // const p2 = this.$axios.get('/api/home/lead_time').then(res => {
  637. // if (res.code === 1) {
  638. // this.leadTime = res.result.sort((a, b) => a.rank - b.rank)
  639. // }
  640. // })
  641. // const p3 = this.$axios
  642. // .post('/api/common/goodsFilterList', { pid: 2 })
  643. // .then(res => {
  644. // if (res.code === 1) {
  645. // this.budget = res.result
  646. // }
  647. // })
  648. const p4 = this.$axios
  649. .post('/uk-api/home/articleList', { keyword: 'Indent Ideas' })
  650. .then(res => {
  651. this.indentIdeasArticle = res.result.data[0] || {}
  652. })
  653. const p5 = this.$axios
  654. .post('/uk-api/home/articleList', { keyword: 'Compliance' })
  655. .then(res => {
  656. this.complianceArticle = res.result.data[0] || {}
  657. })
  658. // 并联异步操作,总耗时===耗时最长的单个请求。之前的逻辑是串联,总耗时为所有请求耗时的累加
  659. await Promise.all([p1, p4, p5])
  660. },
  661. computed: {
  662. email() {
  663. return this.$store.state.userInfo?.email
  664. },
  665. compareLists() {
  666. return this.$store.state.compareList
  667. },
  668. productsList() {
  669. if (this.result?.goods) {
  670. return this.result.goods.map(item => {
  671. const temp = {
  672. ...item,
  673. }
  674. if (item.img) {
  675. temp.image = !this.$mediaRegExp.test(item.img)
  676. ? this.$OSS_PREFIX + item.img
  677. : item.img
  678. }
  679. return temp
  680. })
  681. } else {
  682. return []
  683. }
  684. },
  685. },
  686. watch: {
  687. keyword: {
  688. handler(newValue, oldValue) {
  689. // if (newValue.length > 2 && this.loaded) {
  690. if (newValue.length > 2) {
  691. this.debounce(this.search, 700)
  692. } else {
  693. setTimeout(() => {
  694. this.showType = 'none'
  695. }, 501)
  696. }
  697. },
  698. deep: true,
  699. },
  700. compareLists: {
  701. handler(newValue, oldValue) {
  702. if (newValue) {
  703. this.compareList = cloneDeep(newValue)
  704. }
  705. },
  706. deep: true,
  707. immediate: true,
  708. },
  709. $route(to, from) {
  710. if (to.path == from.path && to.query.keyword != from.query.keyword) {
  711. location.reload()
  712. }
  713. if (!to.query.keyword) {
  714. this.keyword = ''
  715. }
  716. },
  717. },
  718. created() {
  719. },
  720. mounted() {
  721. // if (this.$route.query.keyword && this.$route.query.keyword.length) {
  722. // this.keyword = this.$route.query.keyword
  723. // }
  724. // setTimeout(() => {
  725. // this.loaded = true
  726. // }, 0)
  727. window.addEventListener('click', this.closeLeadtimeAndBudget)
  728. if (process.env.NODE_ENV === 'development') {
  729. const client = algoliasearch(
  730. '7KGEFE6I2Z',
  731. 'e39e202ace0a2fa12ea61095e6ede35d'
  732. )
  733. this.index = client.initIndex('test_uk')
  734. } else {
  735. const client = algoliasearch(
  736. '2340OWI595',
  737. '2d4c53cdcf2bab0c361e589c2c2272fa'
  738. )
  739. this.index = client.initIndex('product_uk')
  740. }
  741. },
  742. beforeDestroy() {
  743. window.removeEventListener('click', this.closeLeadtimeAndBudget)
  744. },
  745. methods: {
  746. ...mapMutations([
  747. 'openDialog',
  748. 'clearUserInfo',
  749. // 'clearCompareList',
  750. ]),
  751. debounce(fn, wait) {
  752. if (this.timer !== null) {
  753. clearTimeout(this.timer)
  754. }
  755. this.timer = setTimeout(fn, wait)
  756. },
  757. search() {
  758. this.result = { cate: [], subCate: [], firstCate: [] }
  759. this.showType = 'flex'
  760. this.loading = true
  761. const key = this.keyword ? this.keyword.trim() : ''
  762. if (this.index) {
  763. this.index
  764. .search(key, {
  765. hitsPerPage: 1000,
  766. })
  767. .then(({ nbHits, hits }) => {
  768. const temp = {
  769. goods: [],
  770. total: nbHits || hits.length || 0,
  771. cate: [],
  772. firstCate: [],
  773. subCate: [],
  774. }
  775. const t1 = []
  776. const t2 = []
  777. hits
  778. .filter(i => i.status === 1 || i.status === '1' || i.status)
  779. .forEach(item => {
  780. let colorImg = ''
  781. item.colour_imgs = JSON.parse(item.colour_imgs)
  782. item.colour_imgs.sort((a, b) => a.name.length - b.name.length)
  783. if (
  784. Array.isArray(item.colour_imgs) &&
  785. item.colour_imgs.length
  786. ) {
  787. item.colour_imgs.forEach(colorItem => {
  788. if (colorItem.name && colorItem.name.length) {
  789. if (
  790. new RegExp(colorItem.name.toLowerCase(), 'i').test(key)
  791. ) {
  792. console.log(
  793. item.product_code,
  794. colorItem.name,
  795. 'replace'
  796. )
  797. colorImg = colorItem.img
  798. } else if (
  799. /\s/.test(colorItem.name) &&
  800. colorItem.name
  801. .split(' ')
  802. .filter(a => a.length > 0)
  803. .some(b => new RegExp(b.toLowerCase(), 'i').test(key))
  804. ) {
  805. console.log(
  806. item.product_code,
  807. colorItem.name,
  808. 'advance replace'
  809. )
  810. colorImg = colorItem.img
  811. }
  812. }
  813. })
  814. item.colour_imgs.forEach(i => {
  815. if (i.name && i.name.length) {
  816. if (key.toLowerCase().includes(i.name.toLowerCase())) {
  817. console.log(
  818. item.product_code,
  819. i.name,
  820. 'complete replace'
  821. )
  822. colorImg = i.img
  823. }
  824. }
  825. })
  826. console.log('---')
  827. }
  828. temp.goods.push({
  829. ...item,
  830. img: colorImg || item.image || item.img,
  831. product_name: item.product_name || item.name,
  832. })
  833. if (!item.category_id) return
  834. const id = parseInt(item.category_id)
  835. const categoryResult = this.getCategoryFromTree(
  836. id,
  837. this.categoryList
  838. )
  839. switch (categoryResult.lev) {
  840. case 1:
  841. if (!t1.includes(id)) {
  842. t1.push(id)
  843. temp.firstCate.push(categoryResult)
  844. }
  845. break
  846. case 2:
  847. case 3:
  848. if (!t2.includes(id)) {
  849. t2.push(id)
  850. temp.subCate.push(categoryResult)
  851. }
  852. // 当前商品在2 3 级, 搜索出来的分类里面应同时展示1级.
  853. if (!t1.includes(categoryResult.root.id)) {
  854. t1.push(categoryResult.root.id)
  855. temp.firstCate.push(categoryResult.root)
  856. }
  857. // no default
  858. }
  859. })
  860. this.result = temp
  861. })
  862. .finally(() => {
  863. this.loading = false
  864. })
  865. }
  866. },
  867. focus() {
  868. clearTimeout(this.timer)
  869. if (this.keyword) {
  870. this.showType = 'flex'
  871. }
  872. },
  873. blur() {
  874. this.timer = setTimeout(() => {
  875. this.showType = 'none'
  876. }, 200)
  877. },
  878. goSearchResultPage() {
  879. // 匹配同组件的路由更改query时, 页面不会被刷新
  880. // this.$router.push({
  881. // name: 'category-searchResult',
  882. // query: { keyword: this.keyword },
  883. // })
  884. location.href =
  885. location.origin + `/category/searchResult?keyword=${encodeURIComponent(this.keyword)}`
  886. },
  887. logout() {
  888. this.$store.dispatch('logout').then(() => {
  889. this.$router.push('/')
  890. })
  891. },
  892. compareAll() {
  893. if (this.compareList.length) {
  894. this.$router.push('/home/compareList')
  895. }
  896. },
  897. // clearCompare(id) {
  898. // this.$axios
  899. // .post('/api/home/compare_clear', {
  900. // id,
  901. // compare_keys: 'keys',
  902. // })
  903. // .then(res => {
  904. // if (res.code === 1) {
  905. // this.compareList.splice(
  906. // this.compareList.findIndex(item => item.id === id),
  907. // 1
  908. // )
  909. // }
  910. // })
  911. // },
  912. // clearAll() {
  913. // if (this.compareList.length) {
  914. // this.$axios
  915. // .post('/api/home/compare_clear', {
  916. // id: 0,
  917. // compare_keys: 'keys',
  918. // })
  919. // .then(res => {
  920. // if (res.code === 1) {
  921. // this.clearCompareList()
  922. // }
  923. // })
  924. // }
  925. // },
  926. openShopProduct() {
  927. this.isShopBlock = !this.isShopBlock
  928. this.isLeadTimeBlock = false
  929. this.isBudgetBlock = false
  930. },
  931. // openLeadTime() {
  932. // this.isLeadTimeBlock = !this.isLeadTimeBlock
  933. // this.isShopBlock = false
  934. // this.isBudgetBlock = false
  935. // },
  936. openBudget() {
  937. this.isBudgetBlock = !this.isBudgetBlock
  938. this.isLeadTimeBlock = false
  939. this.isShopBlock = false
  940. },
  941. closeAllBlock() {
  942. this.isShopBlock = false
  943. this.isLeadTimeBlock = false
  944. this.isBudgetBlock = false
  945. },
  946. closeLeadtimeAndBudget(e) {
  947. const className = e.target?.className
  948. if (!['shopProducts', 'LeadTime', 'Budget'].includes(className)) {
  949. this.isShopBlock = false
  950. this.isLeadTimeBlock = false
  951. this.isBudgetBlock = false
  952. }
  953. },
  954. closePopoverAndNavigate() {
  955. this.$refs.userPopover.doClose();
  956. },
  957. // 从分类树数据里面找到对应分类
  958. getCategoryFromTree(id, tree) {
  959. let result = {}
  960. if (!tree.length) return result
  961. tree.forEach(i => {
  962. if (i.id === id) {
  963. result = cloneDeep(i)
  964. result.lev = 1
  965. }
  966. if (!Array.isArray(i.child)) return
  967. i.child.forEach(secondCate => {
  968. if (secondCate.id === id) {
  969. result = cloneDeep(secondCate)
  970. result.parentName = i.name
  971. result.lev = 2
  972. result.root = {
  973. name: i.name,
  974. id: i.id,
  975. pid: 0,
  976. }
  977. }
  978. if (!Array.isArray(secondCate.child)) return
  979. secondCate.child.forEach(thirdCate => {
  980. if (thirdCate.id === id) {
  981. result = cloneDeep(thirdCate)
  982. result.parentName = secondCate.name
  983. result.grandName = i.name
  984. result.lev = 3
  985. result.root = {
  986. name: i.name,
  987. id: i.id,
  988. pid: 0,
  989. }
  990. }
  991. })
  992. })
  993. })
  994. return result
  995. },
  996. },
  997. }
  998. </script>
  999. <style lang="scss" scoped>
  1000. header {
  1001. width: 100%;
  1002. position: fixed;
  1003. top: 0px;
  1004. left: 0px;
  1005. z-index: 100;
  1006. background-color: #fff;
  1007. .topbar {
  1008. min-width: 800px;
  1009. height: 92px;
  1010. display: flex;
  1011. align-items: center;
  1012. #logo {
  1013. cursor: pointer;
  1014. }
  1015. .search-input {
  1016. flex: 1;
  1017. padding: 0 26px 0 50px;
  1018. position: relative;
  1019. .search-detail {
  1020. z-index: 101;
  1021. padding: 12px 0 8px;
  1022. box-sizing: border-box;
  1023. width: calc(100% - 76px);
  1024. height: 320px;
  1025. position: absolute;
  1026. top: 52px;
  1027. background: #ffffff;
  1028. border: 1px solid #bebebe;
  1029. border-radius: 4px;
  1030. font-size: 12px;
  1031. font-weight: 400;
  1032. color: #333333;
  1033. .autocomplete-title {
  1034. height: 36px;
  1035. line-height: 36px;
  1036. margin-bottom: 8px;
  1037. font-size: 14px;
  1038. font-weight: bold;
  1039. color: #000000;
  1040. }
  1041. .category-list {
  1042. box-sizing: border-box;
  1043. padding: 0 12px;
  1044. height: 100%;
  1045. width: 35%;
  1046. min-width: 35%;
  1047. border-right: 1px solid #7f7f7f;
  1048. position: relative;
  1049. ul {
  1050. overflow-y: auto;
  1051. li {
  1052. width: 100%;
  1053. position: relative;
  1054. p {
  1055. box-sizing: border-box;
  1056. padding: 0 8px;
  1057. width: 100%;
  1058. height: 50px;
  1059. line-height: 50px;
  1060. color: #333;
  1061. font-size: 14px;
  1062. cursor: pointer;
  1063. &:hover {
  1064. background-color: #f5f5f5;
  1065. color: #0b6dc9;
  1066. }
  1067. }
  1068. }
  1069. }
  1070. }
  1071. .product-list {
  1072. padding: 0 16px;
  1073. ul li {
  1074. margin-bottom: 10px;
  1075. a {
  1076. display: flex;
  1077. justify-content: flex-start;
  1078. align-items: center;
  1079. img {
  1080. width: 43px;
  1081. height: 43px;
  1082. }
  1083. p {
  1084. height: 24px;
  1085. line-height: 24px;
  1086. margin-left: 5px;
  1087. }
  1088. }
  1089. &:hover {
  1090. background: #f5f5f5;
  1091. p {
  1092. color: #0b6dc9;
  1093. }
  1094. }
  1095. }
  1096. .seeAllResult {
  1097. text-align: center;
  1098. font-size: 14px;
  1099. font-weight: bold;
  1100. background-color: #00213b;
  1101. color: #fff;
  1102. padding: 0 12px;
  1103. line-height: 26px;
  1104. height: 26px;
  1105. border-radius: 4px;
  1106. }
  1107. }
  1108. .sth-else {
  1109. margin-top: 4px;
  1110. text-align: center;
  1111. height: 24px;
  1112. line-height: 24px;
  1113. font-size: 18px;
  1114. font-weight: 600;
  1115. color: #00213b;
  1116. a {
  1117. display: inline-block;
  1118. padding: 0 6px;
  1119. border-radius: 4px;
  1120. background-color: #00213b;
  1121. color: #fff;
  1122. box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  1123. }
  1124. a:hover {
  1125. background-color: #000;
  1126. }
  1127. }
  1128. }
  1129. }
  1130. .topbar-item {
  1131. font-weight: bold;
  1132. white-space: nowrap;
  1133. cursor: pointer;
  1134. .topbar-item-right {
  1135. padding: 0 30px 0 12px;
  1136. }
  1137. .topbar-item-right-myAccount {
  1138. // display: flex;
  1139. // align-items: center;
  1140. position: relative;
  1141. p {
  1142. margin-left: 10px;
  1143. }
  1144. .greeting {
  1145. position: absolute;
  1146. top: -20px;
  1147. left: 30px;
  1148. }
  1149. }
  1150. }
  1151. }
  1152. nav {
  1153. background-color: #00213b;
  1154. height: 52px;
  1155. // font-family: ProximaNova-Regular;
  1156. ul {
  1157. display: flex;
  1158. justify-content: space-between;
  1159. align-items: center;
  1160. li.nav-list {
  1161. width: 170px;
  1162. height: 52px;
  1163. font-size: 16px;
  1164. font-weight: 400;
  1165. color: #ffffff;
  1166. text-align: center;
  1167. line-height: 52px;
  1168. .nav-list-title {
  1169. font-weight: 600;
  1170. }
  1171. a {
  1172. display: block;
  1173. width: 100%;
  1174. color: #ffffff;
  1175. }
  1176. span {
  1177. display: inline-block;
  1178. cursor: pointer;
  1179. .el-icon-arrow-up,
  1180. .el-icon-arrow-down {
  1181. margin-left: 5px;
  1182. text-align: center;
  1183. }
  1184. }
  1185. .nav-menu {
  1186. width: 1400px;
  1187. height: 395px;
  1188. color: #fff;
  1189. background-color: RGB(56 54 55);
  1190. overflow: hidden;
  1191. .nav-menu-content {
  1192. box-sizing: border-box;
  1193. padding: 20px 0 0 20px;
  1194. margin: 0 auto;
  1195. display: flex;
  1196. justify-content: space-between;
  1197. .nav-menu-item {
  1198. position: relative;
  1199. width: 130px;
  1200. }
  1201. .primary-classification {
  1202. $width: 85px;
  1203. .menu-item-icon {
  1204. width: $width;
  1205. height: $width;
  1206. img {
  1207. width: 100%;
  1208. height: 100%;
  1209. }
  1210. }
  1211. &:hover {
  1212. .menu-item-title {
  1213. color: #0b6dc9;
  1214. }
  1215. }
  1216. .menu-item-title {
  1217. margin-top: 5px;
  1218. height: 24px;
  1219. font-size: 15px;
  1220. // font-size: 1.1rem;
  1221. font-weight: bold;
  1222. text-align: left;
  1223. line-height: 24px;
  1224. cursor: pointer;
  1225. white-space: normal;
  1226. word-break: keep-all;
  1227. overflow: hidden;
  1228. }
  1229. .menu-separator {
  1230. width: $width;
  1231. height: 1px;
  1232. background-color: #666;
  1233. margin: 12px 0;
  1234. }
  1235. }
  1236. .secondary-classification {
  1237. width: 100%;
  1238. font-size: 13px;
  1239. font-weight: 400;
  1240. line-height: 24px;
  1241. text-align: left;
  1242. cursor: pointer;
  1243. white-space: normal;
  1244. word-break: keep-all;
  1245. overflow: hidden;
  1246. }
  1247. }
  1248. }
  1249. .leadTime-list,
  1250. .budget-list {
  1251. display: flex;
  1252. flex-direction: column;
  1253. justify-content: flex-start;
  1254. color: #fff;
  1255. background-color: RGB(56 54 55);
  1256. text-align: center;
  1257. font-size: 14px;
  1258. width: 171px;
  1259. box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  1260. .budget-list-item,
  1261. .leadTime-list-item {
  1262. width: 171px;
  1263. height: 40px;
  1264. line-height: 40px;
  1265. min-height: 40px;
  1266. a {
  1267. display: block;
  1268. width: 100%;
  1269. height: 100%;
  1270. }
  1271. }
  1272. }
  1273. .sub-item-wrap {
  1274. display: none;
  1275. z-index: 1;
  1276. background-color: rgb(56 54 55);
  1277. position: absolute;
  1278. top: 0;
  1279. left: 170px;
  1280. .budget-list-item {
  1281. cursor: pointer;
  1282. }
  1283. .budget-list-sub-item-title {
  1284. width: 171px;
  1285. height: 40px;
  1286. line-height: 40px;
  1287. min-height: 40px;
  1288. }
  1289. // color: red;
  1290. }
  1291. .budget-list-item {
  1292. position: relative;
  1293. overflow: visible;
  1294. &:hover {
  1295. .sub-item-wrap {
  1296. display: flex;
  1297. }
  1298. }
  1299. }
  1300. .leadTime-list {
  1301. height: 280px;
  1302. }
  1303. .budget-list {
  1304. height: 360px;
  1305. }
  1306. .compare-product {
  1307. width: 543px;
  1308. background: #fff;
  1309. color: #333333;
  1310. box-shadow: 0px 1px 10px 0px rgba(7, 5, 5, 0.13);
  1311. margin-left: -372px;
  1312. padding: 31px 13px 14px 29px;
  1313. box-sizing: border-box;
  1314. visibility: hidden;
  1315. opacity: 0;
  1316. .compare-product-title {
  1317. display: flex;
  1318. justify-content: space-between;
  1319. align-items: center;
  1320. p {
  1321. font-size: 24px;
  1322. font-weight: bold;
  1323. }
  1324. .compare-btn {
  1325. width: 136px;
  1326. height: 38px;
  1327. background: #00213b;
  1328. border-radius: 4px;
  1329. color: #ffffff;
  1330. font-size: 14px;
  1331. }
  1332. }
  1333. .red-line {
  1334. width: 27px;
  1335. height: 7px;
  1336. background: #e90000;
  1337. }
  1338. .prompt-info {
  1339. font-size: 14px;
  1340. text-align: left;
  1341. line-height: 24px;
  1342. }
  1343. ul {
  1344. display: flex;
  1345. flex-direction: column;
  1346. justify-content: flex-start;
  1347. margin-top: 10px;
  1348. li {
  1349. display: flex;
  1350. justify-content: space-between;
  1351. align-items: center;
  1352. width: 500px;
  1353. .item-left {
  1354. display: flex;
  1355. justify-content: flex-start;
  1356. align-items: center;
  1357. img {
  1358. width: 30px;
  1359. height: 30px;
  1360. margin-right: 10px;
  1361. }
  1362. }
  1363. .el-icon-error {
  1364. color: #e90000;
  1365. font-size: 21px;
  1366. }
  1367. }
  1368. }
  1369. .clear-btn {
  1370. background: #e90000;
  1371. color: #fff;
  1372. font-size: 14px;
  1373. padding: 10px 20px;
  1374. }
  1375. }
  1376. &:hover {
  1377. div.nav-list-title {
  1378. color: #333333;
  1379. background-color: #e3e3e3;
  1380. a {
  1381. color: #333333;
  1382. background-color: #e3e3e3;
  1383. }
  1384. .el-icon-arrow-down {
  1385. color: #333333;
  1386. }
  1387. }
  1388. .compare-product {
  1389. opacity: 1;
  1390. visibility: visible;
  1391. transition: all 0.5s;
  1392. }
  1393. }
  1394. .menu-item-title:hover,
  1395. .secondary-classification:hover a {
  1396. color: #0b6dc9;
  1397. }
  1398. .leadTime-list-item:hover,
  1399. .budget-list-item:hover {
  1400. background: #0b6dc9;
  1401. color: #f5f5f5;
  1402. & > a {
  1403. background: #0b6dc9;
  1404. color: #f5f5f5;
  1405. width: 100%;
  1406. height: 100%;
  1407. }
  1408. }
  1409. }
  1410. }
  1411. }
  1412. :deep(.el-badge.item .el-badge__content) {
  1413. background-color: #e90000;
  1414. }
  1415. .header-redLine {
  1416. height: 4px;
  1417. background: #e90000;
  1418. }
  1419. }
  1420. :deep(.el-input) {
  1421. .el-input__inner {
  1422. border-radius: 18px;
  1423. }
  1424. }
  1425. :deep(.el-menu-item-group__title) {
  1426. padding: 0;
  1427. }
  1428. :deep(.el-submenu__title) {
  1429. font-family: Proxima Nova;
  1430. font-size: 14px;
  1431. color: #333333;
  1432. height: 40px;
  1433. line-height: 40px;
  1434. font-weight: bold;
  1435. &:hover {
  1436. color: #1a72b7;
  1437. }
  1438. }
  1439. :deep(.el-menu-item) {
  1440. font-family: Proxima Nova;
  1441. height: 40px;
  1442. line-height: 40px;
  1443. font-weight: bold;
  1444. color: #333333;
  1445. a {
  1446. display: inline-block;
  1447. width: 100%;
  1448. }
  1449. &:hover a {
  1450. color: #1a72b7;
  1451. }
  1452. }
  1453. :deep(.el-menu-item.is-active) {
  1454. a {
  1455. color: #1a72b7;
  1456. }
  1457. }
  1458. :deep(.el-menu-item-group) {
  1459. font-family: Proxima Nova;
  1460. .el-menu-item {
  1461. font-size: 12px;
  1462. font-weight: 400;
  1463. color: #333333;
  1464. &:hover a {
  1465. color: #1a72b7;
  1466. }
  1467. }
  1468. .is-active a {
  1469. color: #1a72b7;
  1470. font-size: 12px;
  1471. font-weight: 400;
  1472. }
  1473. }
  1474. @keyframes fade {
  1475. 0% {
  1476. height: 0;
  1477. }
  1478. }
  1479. .category-enter-active,
  1480. .leadTime-enter-active,
  1481. .budge-enter-active {
  1482. overflow: hidden;
  1483. animation: fade 0.3s ease-in-out;
  1484. }
  1485. .category-leave-active,
  1486. .leadTime-leave-active,
  1487. .budge-leave-active {
  1488. overflow: hidden;
  1489. animation: fade 0.3s ease-in-out reverse;
  1490. }
  1491. .border-radius {
  1492. border-radius: 6px;
  1493. }
  1494. .no-result {
  1495. margin-top: 120px;
  1496. font-size: 34px;
  1497. font-family: Proxima Nova;
  1498. font-weight: 600;
  1499. color: #797979;
  1500. }
  1501. .user-menu-panel {
  1502. width: 292px;
  1503. box-sizing: border-box;
  1504. padding: 0 0 20px;
  1505. font-size: 15px;
  1506. font-family: ProximaNova-Semibold, sans-serif;
  1507. color: #333;
  1508. & div {
  1509. box-sizing: border-box;
  1510. }
  1511. & > div {
  1512. padding-left: 27px;
  1513. padding-right: 27px;
  1514. }
  1515. .greeting {
  1516. width: 270px;
  1517. font-weight: 600;
  1518. padding-top: 18px;
  1519. padding-bottom: 18px;
  1520. padding-left: 11px;
  1521. padding-right: 11px;
  1522. border-bottom: 1px solid rgba(#002369, 0.3);
  1523. }
  1524. .btn-logout {
  1525. display: inline-block;
  1526. cursor: pointer;
  1527. }
  1528. }
  1529. .user-menu-wrap {
  1530. width: 100%;
  1531. padding-top: 6px;
  1532. padding-bottom: 24px;
  1533. }
  1534. .user-menu {
  1535. margin-top: 8px;
  1536. .menu-title {
  1537. font-weight: 600;
  1538. line-height: 36px;
  1539. }
  1540. .sub-menu {
  1541. font-family: Proxima Nova, sans-serif;
  1542. padding-left: 14px;
  1543. display: flex;
  1544. align-items: center;
  1545. .icon {
  1546. display: inline-block;
  1547. width: 20px;
  1548. height: 20px;
  1549. margin-right: 8px;
  1550. background-position: center;
  1551. background-repeat: no-repeat;
  1552. background-size: contain;
  1553. &.book {
  1554. background-image: url(~@/assets/img/header/book.png);
  1555. }
  1556. &.folder {
  1557. background-image: url(~@/assets/img/header/folder.png);
  1558. }
  1559. &.mail {
  1560. background-image: url(~@/assets/img/header/mail.png);
  1561. }
  1562. &.order {
  1563. background-image: url(~@/assets/img/header/order.png);
  1564. }
  1565. &.video {
  1566. background-image: url(~@/assets/img/header/video.png);
  1567. }
  1568. }
  1569. .sub-title {
  1570. display: inline-block;
  1571. line-height: 36px;
  1572. font-size: 14px;
  1573. }
  1574. &:hover {
  1575. .sub-title {
  1576. color: #409eff;
  1577. }
  1578. }
  1579. }
  1580. }
  1581. </style>