PcHeader.vue 45 KB

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