PcHeader.vue 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596
  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. path: 'article/Compliance',
  462. }"
  463. target="_self">
  464. Compliance
  465. </nuxt-link>
  466. </div>
  467. </li>
  468. <li
  469. class="nav-list"
  470. @click="closeAllBlock">
  471. <div class="nav-list-title">
  472. <nuxt-link
  473. id="indentLink"
  474. :to="{
  475. name: 'news-newsName',
  476. params: { newsName: 'indent-ideas', id: indentIdeasArticle.id },
  477. }"
  478. target="_self">
  479. Indent Sourcing
  480. </nuxt-link>
  481. </div>
  482. </li>
  483. <!-- <li
  484. class="nav-list"
  485. @click="closeAllBlock">
  486. <div class="nav-list-title">
  487. <nuxt-link
  488. to="/category/apparel/socks"
  489. target="_self">
  490. Sock Collection
  491. </nuxt-link>
  492. </div>
  493. </li> -->
  494. <!-- <li
  495. class="nav-list compare-list"
  496. @click="closeAllBlock">
  497. <div class="nav-list-title">
  498. <el-badge
  499. :value="compareList.length"
  500. class="item"
  501. v-show="compareList.length">
  502. </el-badge>
  503. <span>Wishlist</span>
  504. </div>
  505. <div class="compare-product">
  506. <div class="compare-product-title">
  507. <p>Product to Compare</p>
  508. <el-button
  509. class="compare-btn"
  510. size="mini"
  511. @click="compareAll">
  512. Compare All
  513. </el-button>
  514. </div>
  515. <div class="red-line"></div>
  516. <div
  517. class="prompt-info"
  518. v-show="!compareList.length">
  519. <ul>
  520. <li>
  521. Select products to compare by clicking the "Compare list +"
  522. batton on any product listing.
  523. </li>
  524. <li>You can compare up to 5 products.</li>
  525. <li>
  526. After selecting products, click on the "Compare All" button to
  527. view the comparison chart.
  528. </li>
  529. </ul>
  530. </div>
  531. <ul>
  532. <li
  533. v-for="item in compareList"
  534. :key="item.id">
  535. <div class="item-left">
  536. <img
  537. :src="
  538. item.main.image &&
  539. item.main.image.indexOf(
  540. 'http://promocollection.s3.ap-southeast-2.amazonaws.com'
  541. ) != -1
  542. ? item.main.image
  543. : 'https://www.promocollection.uk/' +
  544. item.main.image
  545. " />
  546. <p>{{ item.product_name }}</p>
  547. </div>
  548. <div
  549. class="item-right"
  550. @click="clearCompare(item.id)">
  551. <i class="el-icon-error"></i>
  552. </div>
  553. </li>
  554. </ul>
  555. <el-button
  556. class="clear-btn"
  557. size="mini"
  558. @click="clearAll"
  559. v-show="compareList.length">
  560. Clear All
  561. </el-button>
  562. </div>
  563. </li> -->
  564. </ul>
  565. </nav>
  566. <div class="header-redLine"></div>
  567. </header>
  568. </template>
  569. <script>
  570. import { mapMutations } from 'vuex'
  571. import cloneDeep from 'lodash.clonedeep'
  572. import algoliasearch from 'algoliasearch'
  573. export default {
  574. data() {
  575. return {
  576. // loaded: false,
  577. loading: false,
  578. timer: '',
  579. keyword: '',
  580. result: { cate: [], subCate: [], firstCate: [] },
  581. showType: 'none',
  582. matchingList: [],
  583. categoryList: [],
  584. // leadTime: [],
  585. budget: [],
  586. compareList: [],
  587. indentIdeasArticle: {},
  588. complianceArticle: {},
  589. isShopBlock: false,
  590. isLeadTimeBlock: false,
  591. isBudgetBlock: false,
  592. qtyList: [
  593. {
  594. value: 50,
  595. name: 50,
  596. },
  597. {
  598. value: 100,
  599. name: 100,
  600. },
  601. {
  602. value: 250,
  603. name: 250,
  604. },
  605. {
  606. value: 500,
  607. name: 500,
  608. },
  609. {
  610. value: 1000,
  611. name: '1,000',
  612. },
  613. {
  614. value: 2500,
  615. name: '2,500',
  616. },
  617. {
  618. value: 5000,
  619. name: '5,000',
  620. },
  621. {
  622. value: 10000,
  623. name: '10,000',
  624. },
  625. ],
  626. index: null,
  627. }
  628. },
  629. async fetch() {
  630. const p1 = this.$axios.post('/uk-api/common/shopProductList').then(res => {
  631. if (res.code === 1) {
  632. this.categoryList = res.result
  633. }
  634. })
  635. // const p2 = this.$axios.get('/api/home/lead_time').then(res => {
  636. // if (res.code === 1) {
  637. // this.leadTime = res.result.sort((a, b) => a.rank - b.rank)
  638. // }
  639. // })
  640. // const p3 = this.$axios
  641. // .post('/api/common/goodsFilterList', { pid: 2 })
  642. // .then(res => {
  643. // if (res.code === 1) {
  644. // this.budget = res.result
  645. // }
  646. // })
  647. const p4 = this.$axios
  648. .post('/uk-api/home/articleList', { keyword: 'Indent Ideas' })
  649. .then(res => {
  650. this.indentIdeasArticle = res.result.data[0] || {}
  651. })
  652. const p5 = this.$axios
  653. .post('/uk-api/home/articleList', { keyword: 'Compliance' })
  654. .then(res => {
  655. this.complianceArticle = res.result.data[0] || {}
  656. })
  657. // 并联异步操作,总耗时===耗时最长的单个请求。之前的逻辑是串联,总耗时为所有请求耗时的累加
  658. await Promise.all([p1, p4, p5])
  659. },
  660. computed: {
  661. email() {
  662. return this.$store.state.userInfo?.email
  663. },
  664. compareLists() {
  665. return this.$store.state.compareList
  666. },
  667. productsList() {
  668. if (this.result?.goods) {
  669. return this.result.goods.map(item => {
  670. const temp = {
  671. ...item,
  672. }
  673. if (item.img) {
  674. temp.image = !this.$mediaRegExp.test(item.img)
  675. ? this.$OSS_PREFIX + item.img
  676. : item.img
  677. }
  678. return temp
  679. })
  680. } else {
  681. return []
  682. }
  683. },
  684. },
  685. watch: {
  686. keyword: {
  687. handler(newValue, oldValue) {
  688. // if (newValue.length > 2 && this.loaded) {
  689. if (newValue.length > 2) {
  690. this.debounce(this.search, 700)
  691. } else {
  692. setTimeout(() => {
  693. this.showType = 'none'
  694. }, 501)
  695. }
  696. },
  697. deep: true,
  698. },
  699. compareLists: {
  700. handler(newValue, oldValue) {
  701. if (newValue) {
  702. this.compareList = cloneDeep(newValue)
  703. }
  704. },
  705. deep: true,
  706. immediate: true,
  707. },
  708. $route(to, from) {
  709. if (to.path == from.path && to.query.keyword != from.query.keyword) {
  710. location.reload()
  711. }
  712. if (!to.query.keyword) {
  713. this.keyword = ''
  714. }
  715. },
  716. },
  717. created() {
  718. },
  719. mounted() {
  720. // if (this.$route.query.keyword && this.$route.query.keyword.length) {
  721. // this.keyword = this.$route.query.keyword
  722. // }
  723. // setTimeout(() => {
  724. // this.loaded = true
  725. // }, 0)
  726. window.addEventListener('click', this.closeLeadtimeAndBudget)
  727. if (process.env.NODE_ENV === 'development') {
  728. const client = algoliasearch(
  729. '7KGEFE6I2Z',
  730. 'e39e202ace0a2fa12ea61095e6ede35d'
  731. )
  732. this.index = client.initIndex('test_uk')
  733. } else {
  734. const client = algoliasearch(
  735. '2340OWI595',
  736. '2d4c53cdcf2bab0c361e589c2c2272fa'
  737. )
  738. this.index = client.initIndex('product_uk')
  739. }
  740. },
  741. beforeDestroy() {
  742. window.removeEventListener('click', this.closeLeadtimeAndBudget)
  743. },
  744. methods: {
  745. ...mapMutations([
  746. 'openDialog',
  747. 'clearUserInfo',
  748. // 'clearCompareList',
  749. ]),
  750. debounce(fn, wait) {
  751. if (this.timer !== null) {
  752. clearTimeout(this.timer)
  753. }
  754. this.timer = setTimeout(fn, wait)
  755. },
  756. search() {
  757. this.result = { cate: [], subCate: [], firstCate: [] }
  758. this.showType = 'flex'
  759. this.loading = true
  760. const key = this.keyword ? this.keyword.trim() : ''
  761. if (this.index) {
  762. this.index
  763. .search(key, {
  764. hitsPerPage: 1000,
  765. })
  766. .then(({ nbHits, hits }) => {
  767. const temp = {
  768. goods: [],
  769. total: nbHits || hits.length || 0,
  770. cate: [],
  771. firstCate: [],
  772. subCate: [],
  773. }
  774. const t1 = []
  775. const t2 = []
  776. hits
  777. .filter(i => i.status === 1 || i.status === '1' || i.status)
  778. .forEach(item => {
  779. let colorImg = ''
  780. item.colour_imgs = JSON.parse(item.colour_imgs)
  781. item.colour_imgs.sort((a, b) => a.name.length - b.name.length)
  782. if (
  783. Array.isArray(item.colour_imgs) &&
  784. item.colour_imgs.length
  785. ) {
  786. item.colour_imgs.forEach(colorItem => {
  787. if (colorItem.name && colorItem.name.length) {
  788. if (
  789. new RegExp(colorItem.name.toLowerCase(), 'i').test(key)
  790. ) {
  791. console.log(
  792. item.product_code,
  793. colorItem.name,
  794. 'replace'
  795. )
  796. colorImg = colorItem.img
  797. } else if (
  798. /\s/.test(colorItem.name) &&
  799. colorItem.name
  800. .split(' ')
  801. .filter(a => a.length > 0)
  802. .some(b => new RegExp(b.toLowerCase(), 'i').test(key))
  803. ) {
  804. console.log(
  805. item.product_code,
  806. colorItem.name,
  807. 'advance replace'
  808. )
  809. colorImg = colorItem.img
  810. }
  811. }
  812. })
  813. item.colour_imgs.forEach(i => {
  814. if (i.name && i.name.length) {
  815. if (key.toLowerCase().includes(i.name.toLowerCase())) {
  816. console.log(
  817. item.product_code,
  818. i.name,
  819. 'complete replace'
  820. )
  821. colorImg = i.img
  822. }
  823. }
  824. })
  825. console.log('---')
  826. }
  827. temp.goods.push({
  828. ...item,
  829. img: colorImg || item.image || item.img,
  830. product_name: item.product_name || item.name,
  831. })
  832. if (!item.category_id) return
  833. const id = parseInt(item.category_id)
  834. const categoryResult = this.getCategoryFromTree(
  835. id,
  836. this.categoryList
  837. )
  838. switch (categoryResult.lev) {
  839. case 1:
  840. if (!t1.includes(id)) {
  841. t1.push(id)
  842. temp.firstCate.push(categoryResult)
  843. }
  844. break
  845. case 2:
  846. case 3:
  847. if (!t2.includes(id)) {
  848. t2.push(id)
  849. temp.subCate.push(categoryResult)
  850. }
  851. // 当前商品在2 3 级, 搜索出来的分类里面应同时展示1级.
  852. if (!t1.includes(categoryResult.root.id)) {
  853. t1.push(categoryResult.root.id)
  854. temp.firstCate.push(categoryResult.root)
  855. }
  856. // no default
  857. }
  858. })
  859. this.result = temp
  860. })
  861. .finally(() => {
  862. this.loading = false
  863. })
  864. }
  865. },
  866. focus() {
  867. clearTimeout(this.timer)
  868. if (this.keyword) {
  869. this.showType = 'flex'
  870. }
  871. },
  872. blur() {
  873. this.timer = setTimeout(() => {
  874. this.showType = 'none'
  875. }, 200)
  876. },
  877. goSearchResultPage() {
  878. // 匹配同组件的路由更改query时, 页面不会被刷新
  879. // this.$router.push({
  880. // name: 'category-searchResult',
  881. // query: { keyword: this.keyword },
  882. // })
  883. location.href =
  884. location.origin + `/category/searchResult?keyword=${encodeURIComponent(this.keyword)}`
  885. },
  886. logout() {
  887. this.$store.dispatch('logout').then(() => {
  888. this.$router.push('/')
  889. })
  890. },
  891. compareAll() {
  892. if (this.compareList.length) {
  893. this.$router.push('/home/compareList')
  894. }
  895. },
  896. // clearCompare(id) {
  897. // this.$axios
  898. // .post('/api/home/compare_clear', {
  899. // id,
  900. // compare_keys: 'keys',
  901. // })
  902. // .then(res => {
  903. // if (res.code === 1) {
  904. // this.compareList.splice(
  905. // this.compareList.findIndex(item => item.id === id),
  906. // 1
  907. // )
  908. // }
  909. // })
  910. // },
  911. // clearAll() {
  912. // if (this.compareList.length) {
  913. // this.$axios
  914. // .post('/api/home/compare_clear', {
  915. // id: 0,
  916. // compare_keys: 'keys',
  917. // })
  918. // .then(res => {
  919. // if (res.code === 1) {
  920. // this.clearCompareList()
  921. // }
  922. // })
  923. // }
  924. // },
  925. openShopProduct() {
  926. this.isShopBlock = !this.isShopBlock
  927. this.isLeadTimeBlock = false
  928. this.isBudgetBlock = false
  929. },
  930. // openLeadTime() {
  931. // this.isLeadTimeBlock = !this.isLeadTimeBlock
  932. // this.isShopBlock = false
  933. // this.isBudgetBlock = false
  934. // },
  935. openBudget() {
  936. this.isBudgetBlock = !this.isBudgetBlock
  937. this.isLeadTimeBlock = false
  938. this.isShopBlock = false
  939. },
  940. closeAllBlock() {
  941. this.isShopBlock = false
  942. this.isLeadTimeBlock = false
  943. this.isBudgetBlock = false
  944. },
  945. closeLeadtimeAndBudget(e) {
  946. const className = e.target?.className
  947. if (!['shopProducts', 'LeadTime', 'Budget'].includes(className)) {
  948. this.isShopBlock = false
  949. this.isLeadTimeBlock = false
  950. this.isBudgetBlock = false
  951. }
  952. },
  953. closePopoverAndNavigate() {
  954. this.$refs.userPopover.doClose();
  955. },
  956. // 从分类树数据里面找到对应分类
  957. getCategoryFromTree(id, tree) {
  958. let result = {}
  959. if (!tree.length) return result
  960. tree.forEach(i => {
  961. if (i.id === id) {
  962. result = cloneDeep(i)
  963. result.lev = 1
  964. }
  965. if (!Array.isArray(i.child)) return
  966. i.child.forEach(secondCate => {
  967. if (secondCate.id === id) {
  968. result = cloneDeep(secondCate)
  969. result.parentName = i.name
  970. result.lev = 2
  971. result.root = {
  972. name: i.name,
  973. id: i.id,
  974. pid: 0,
  975. }
  976. }
  977. if (!Array.isArray(secondCate.child)) return
  978. secondCate.child.forEach(thirdCate => {
  979. if (thirdCate.id === id) {
  980. result = cloneDeep(thirdCate)
  981. result.parentName = secondCate.name
  982. result.grandName = i.name
  983. result.lev = 3
  984. result.root = {
  985. name: i.name,
  986. id: i.id,
  987. pid: 0,
  988. }
  989. }
  990. })
  991. })
  992. })
  993. return result
  994. },
  995. },
  996. }
  997. </script>
  998. <style lang="scss" scoped>
  999. header {
  1000. width: 100%;
  1001. position: fixed;
  1002. top: 0px;
  1003. left: 0px;
  1004. z-index: 100;
  1005. background-color: #fff;
  1006. .topbar {
  1007. min-width: 800px;
  1008. height: 92px;
  1009. display: flex;
  1010. align-items: center;
  1011. #logo {
  1012. cursor: pointer;
  1013. }
  1014. .search-input {
  1015. flex: 1;
  1016. padding: 0 26px 0 50px;
  1017. position: relative;
  1018. .search-detail {
  1019. z-index: 101;
  1020. padding: 12px 0 8px;
  1021. box-sizing: border-box;
  1022. width: calc(100% - 76px);
  1023. height: 320px;
  1024. position: absolute;
  1025. top: 52px;
  1026. background: #ffffff;
  1027. border: 1px solid #bebebe;
  1028. border-radius: 4px;
  1029. font-size: 12px;
  1030. font-weight: 400;
  1031. color: #333333;
  1032. .autocomplete-title {
  1033. height: 36px;
  1034. line-height: 36px;
  1035. margin-bottom: 8px;
  1036. font-size: 14px;
  1037. font-weight: bold;
  1038. color: #000000;
  1039. }
  1040. .category-list {
  1041. box-sizing: border-box;
  1042. padding: 0 12px;
  1043. height: 100%;
  1044. width: 35%;
  1045. min-width: 35%;
  1046. border-right: 1px solid #7f7f7f;
  1047. position: relative;
  1048. ul {
  1049. overflow-y: auto;
  1050. li {
  1051. width: 100%;
  1052. position: relative;
  1053. p {
  1054. box-sizing: border-box;
  1055. padding: 0 8px;
  1056. width: 100%;
  1057. height: 50px;
  1058. line-height: 50px;
  1059. color: #333;
  1060. font-size: 14px;
  1061. cursor: pointer;
  1062. &:hover {
  1063. background-color: #f5f5f5;
  1064. color: #0b6dc9;
  1065. }
  1066. }
  1067. }
  1068. }
  1069. }
  1070. .product-list {
  1071. padding: 0 16px;
  1072. ul li {
  1073. margin-bottom: 10px;
  1074. a {
  1075. display: flex;
  1076. justify-content: flex-start;
  1077. align-items: center;
  1078. img {
  1079. width: 43px;
  1080. height: 43px;
  1081. }
  1082. p {
  1083. height: 24px;
  1084. line-height: 24px;
  1085. margin-left: 5px;
  1086. }
  1087. }
  1088. &:hover {
  1089. background: #f5f5f5;
  1090. p {
  1091. color: #0b6dc9;
  1092. }
  1093. }
  1094. }
  1095. .seeAllResult {
  1096. text-align: center;
  1097. font-size: 14px;
  1098. font-weight: bold;
  1099. background-color: #00213b;
  1100. color: #fff;
  1101. padding: 0 12px;
  1102. line-height: 26px;
  1103. height: 26px;
  1104. border-radius: 4px;
  1105. }
  1106. }
  1107. .sth-else {
  1108. margin-top: 4px;
  1109. text-align: center;
  1110. height: 24px;
  1111. line-height: 24px;
  1112. font-size: 18px;
  1113. font-weight: 600;
  1114. color: #00213b;
  1115. a {
  1116. display: inline-block;
  1117. padding: 0 6px;
  1118. border-radius: 4px;
  1119. background-color: #00213b;
  1120. color: #fff;
  1121. box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  1122. }
  1123. a:hover {
  1124. background-color: #000;
  1125. }
  1126. }
  1127. }
  1128. }
  1129. .topbar-item {
  1130. font-weight: bold;
  1131. white-space: nowrap;
  1132. cursor: pointer;
  1133. .topbar-item-right {
  1134. padding: 0 30px 0 12px;
  1135. }
  1136. .topbar-item-right-myAccount {
  1137. // display: flex;
  1138. // align-items: center;
  1139. position: relative;
  1140. p {
  1141. margin-left: 10px;
  1142. }
  1143. .greeting {
  1144. position: absolute;
  1145. top: -20px;
  1146. left: 30px;
  1147. }
  1148. }
  1149. }
  1150. }
  1151. nav {
  1152. background-color: #00213b;
  1153. height: 52px;
  1154. // font-family: ProximaNova-Regular;
  1155. ul {
  1156. display: flex;
  1157. justify-content: space-between;
  1158. align-items: center;
  1159. li.nav-list {
  1160. width: 170px;
  1161. height: 52px;
  1162. font-size: 16px;
  1163. font-weight: 400;
  1164. color: #ffffff;
  1165. text-align: center;
  1166. line-height: 52px;
  1167. .nav-list-title {
  1168. font-weight: 600;
  1169. }
  1170. a {
  1171. display: block;
  1172. width: 100%;
  1173. color: #ffffff;
  1174. }
  1175. span {
  1176. display: inline-block;
  1177. cursor: pointer;
  1178. .el-icon-arrow-up,
  1179. .el-icon-arrow-down {
  1180. margin-left: 5px;
  1181. text-align: center;
  1182. }
  1183. }
  1184. .nav-menu {
  1185. width: 1400px;
  1186. height: 395px;
  1187. color: #fff;
  1188. background-color: RGB(56 54 55);
  1189. overflow: hidden;
  1190. .nav-menu-content {
  1191. box-sizing: border-box;
  1192. padding: 20px 0 0 20px;
  1193. margin: 0 auto;
  1194. display: flex;
  1195. justify-content: space-between;
  1196. .nav-menu-item {
  1197. position: relative;
  1198. width: 130px;
  1199. }
  1200. .primary-classification {
  1201. $width: 85px;
  1202. .menu-item-icon {
  1203. width: $width;
  1204. height: $width;
  1205. img {
  1206. width: 100%;
  1207. height: 100%;
  1208. }
  1209. }
  1210. &:hover {
  1211. .menu-item-title {
  1212. color: #0b6dc9;
  1213. }
  1214. }
  1215. .menu-item-title {
  1216. margin-top: 5px;
  1217. height: 24px;
  1218. font-size: 15px;
  1219. // font-size: 1.1rem;
  1220. font-weight: bold;
  1221. text-align: left;
  1222. line-height: 24px;
  1223. cursor: pointer;
  1224. white-space: normal;
  1225. word-break: keep-all;
  1226. overflow: hidden;
  1227. }
  1228. .menu-separator {
  1229. width: $width;
  1230. height: 1px;
  1231. background-color: #666;
  1232. margin: 12px 0;
  1233. }
  1234. }
  1235. .secondary-classification {
  1236. width: 100%;
  1237. font-size: 13px;
  1238. font-weight: 400;
  1239. line-height: 24px;
  1240. text-align: left;
  1241. cursor: pointer;
  1242. white-space: normal;
  1243. word-break: keep-all;
  1244. overflow: hidden;
  1245. }
  1246. }
  1247. }
  1248. .leadTime-list,
  1249. .budget-list {
  1250. display: flex;
  1251. flex-direction: column;
  1252. justify-content: flex-start;
  1253. color: #fff;
  1254. background-color: RGB(56 54 55);
  1255. text-align: center;
  1256. font-size: 14px;
  1257. width: 171px;
  1258. box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  1259. .budget-list-item,
  1260. .leadTime-list-item {
  1261. width: 171px;
  1262. height: 40px;
  1263. line-height: 40px;
  1264. min-height: 40px;
  1265. a {
  1266. display: block;
  1267. width: 100%;
  1268. height: 100%;
  1269. }
  1270. }
  1271. }
  1272. .sub-item-wrap {
  1273. display: none;
  1274. z-index: 1;
  1275. background-color: rgb(56 54 55);
  1276. position: absolute;
  1277. top: 0;
  1278. left: 170px;
  1279. .budget-list-item {
  1280. cursor: pointer;
  1281. }
  1282. .budget-list-sub-item-title {
  1283. width: 171px;
  1284. height: 40px;
  1285. line-height: 40px;
  1286. min-height: 40px;
  1287. }
  1288. // color: red;
  1289. }
  1290. .budget-list-item {
  1291. position: relative;
  1292. overflow: visible;
  1293. &:hover {
  1294. .sub-item-wrap {
  1295. display: flex;
  1296. }
  1297. }
  1298. }
  1299. .leadTime-list {
  1300. height: 280px;
  1301. }
  1302. .budget-list {
  1303. height: 360px;
  1304. }
  1305. .compare-product {
  1306. width: 543px;
  1307. background: #fff;
  1308. color: #333333;
  1309. box-shadow: 0px 1px 10px 0px rgba(7, 5, 5, 0.13);
  1310. margin-left: -372px;
  1311. padding: 31px 13px 14px 29px;
  1312. box-sizing: border-box;
  1313. visibility: hidden;
  1314. opacity: 0;
  1315. .compare-product-title {
  1316. display: flex;
  1317. justify-content: space-between;
  1318. align-items: center;
  1319. p {
  1320. font-size: 24px;
  1321. font-weight: bold;
  1322. }
  1323. .compare-btn {
  1324. width: 136px;
  1325. height: 38px;
  1326. background: #00213b;
  1327. border-radius: 4px;
  1328. color: #ffffff;
  1329. font-size: 14px;
  1330. }
  1331. }
  1332. .red-line {
  1333. width: 27px;
  1334. height: 7px;
  1335. background: #e90000;
  1336. }
  1337. .prompt-info {
  1338. font-size: 14px;
  1339. text-align: left;
  1340. line-height: 24px;
  1341. }
  1342. ul {
  1343. display: flex;
  1344. flex-direction: column;
  1345. justify-content: flex-start;
  1346. margin-top: 10px;
  1347. li {
  1348. display: flex;
  1349. justify-content: space-between;
  1350. align-items: center;
  1351. width: 500px;
  1352. .item-left {
  1353. display: flex;
  1354. justify-content: flex-start;
  1355. align-items: center;
  1356. img {
  1357. width: 30px;
  1358. height: 30px;
  1359. margin-right: 10px;
  1360. }
  1361. }
  1362. .el-icon-error {
  1363. color: #e90000;
  1364. font-size: 21px;
  1365. }
  1366. }
  1367. }
  1368. .clear-btn {
  1369. background: #e90000;
  1370. color: #fff;
  1371. font-size: 14px;
  1372. padding: 10px 20px;
  1373. }
  1374. }
  1375. &:hover {
  1376. div.nav-list-title {
  1377. color: #333333;
  1378. background-color: #e3e3e3;
  1379. a {
  1380. color: #333333;
  1381. background-color: #e3e3e3;
  1382. }
  1383. .el-icon-arrow-down {
  1384. color: #333333;
  1385. }
  1386. }
  1387. .compare-product {
  1388. opacity: 1;
  1389. visibility: visible;
  1390. transition: all 0.5s;
  1391. }
  1392. }
  1393. .menu-item-title:hover,
  1394. .secondary-classification:hover a {
  1395. color: #0b6dc9;
  1396. }
  1397. .leadTime-list-item:hover,
  1398. .budget-list-item:hover {
  1399. background: #0b6dc9;
  1400. color: #f5f5f5;
  1401. & > a {
  1402. background: #0b6dc9;
  1403. color: #f5f5f5;
  1404. width: 100%;
  1405. height: 100%;
  1406. }
  1407. }
  1408. }
  1409. }
  1410. }
  1411. :deep(.el-badge.item .el-badge__content) {
  1412. background-color: #e90000;
  1413. }
  1414. .header-redLine {
  1415. height: 4px;
  1416. background: #e90000;
  1417. }
  1418. }
  1419. :deep(.el-input) {
  1420. .el-input__inner {
  1421. border-radius: 18px;
  1422. }
  1423. }
  1424. :deep(.el-menu-item-group__title) {
  1425. padding: 0;
  1426. }
  1427. :deep(.el-submenu__title) {
  1428. font-family: Proxima Nova;
  1429. font-size: 14px;
  1430. color: #333333;
  1431. height: 40px;
  1432. line-height: 40px;
  1433. font-weight: bold;
  1434. &:hover {
  1435. color: #1a72b7;
  1436. }
  1437. }
  1438. :deep(.el-menu-item) {
  1439. font-family: Proxima Nova;
  1440. height: 40px;
  1441. line-height: 40px;
  1442. font-weight: bold;
  1443. color: #333333;
  1444. a {
  1445. display: inline-block;
  1446. width: 100%;
  1447. }
  1448. &:hover a {
  1449. color: #1a72b7;
  1450. }
  1451. }
  1452. :deep(.el-menu-item.is-active) {
  1453. a {
  1454. color: #1a72b7;
  1455. }
  1456. }
  1457. :deep(.el-menu-item-group) {
  1458. font-family: Proxima Nova;
  1459. .el-menu-item {
  1460. font-size: 12px;
  1461. font-weight: 400;
  1462. color: #333333;
  1463. &:hover a {
  1464. color: #1a72b7;
  1465. }
  1466. }
  1467. .is-active a {
  1468. color: #1a72b7;
  1469. font-size: 12px;
  1470. font-weight: 400;
  1471. }
  1472. }
  1473. @keyframes fade {
  1474. 0% {
  1475. height: 0;
  1476. }
  1477. }
  1478. .category-enter-active,
  1479. .leadTime-enter-active,
  1480. .budge-enter-active {
  1481. overflow: hidden;
  1482. animation: fade 0.3s ease-in-out;
  1483. }
  1484. .category-leave-active,
  1485. .leadTime-leave-active,
  1486. .budge-leave-active {
  1487. overflow: hidden;
  1488. animation: fade 0.3s ease-in-out reverse;
  1489. }
  1490. .border-radius {
  1491. border-radius: 6px;
  1492. }
  1493. .no-result {
  1494. margin-top: 120px;
  1495. font-size: 34px;
  1496. font-family: Proxima Nova;
  1497. font-weight: 600;
  1498. color: #797979;
  1499. }
  1500. .user-menu-panel {
  1501. width: 292px;
  1502. box-sizing: border-box;
  1503. padding: 0 0 20px;
  1504. font-size: 15px;
  1505. font-family: ProximaNova-Semibold, sans-serif;
  1506. color: #333;
  1507. & div {
  1508. box-sizing: border-box;
  1509. }
  1510. & > div {
  1511. padding-left: 27px;
  1512. padding-right: 27px;
  1513. }
  1514. .greeting {
  1515. width: 270px;
  1516. font-weight: 600;
  1517. padding-top: 18px;
  1518. padding-bottom: 18px;
  1519. padding-left: 11px;
  1520. padding-right: 11px;
  1521. border-bottom: 1px solid rgba(#002369, 0.3);
  1522. }
  1523. .btn-logout {
  1524. display: inline-block;
  1525. cursor: pointer;
  1526. }
  1527. }
  1528. .user-menu-wrap {
  1529. width: 100%;
  1530. padding-top: 6px;
  1531. padding-bottom: 24px;
  1532. }
  1533. .user-menu {
  1534. margin-top: 8px;
  1535. .menu-title {
  1536. font-weight: 600;
  1537. line-height: 36px;
  1538. }
  1539. .sub-menu {
  1540. font-family: Proxima Nova, sans-serif;
  1541. padding-left: 14px;
  1542. display: flex;
  1543. align-items: center;
  1544. .icon {
  1545. display: inline-block;
  1546. width: 20px;
  1547. height: 20px;
  1548. margin-right: 8px;
  1549. background-position: center;
  1550. background-repeat: no-repeat;
  1551. background-size: contain;
  1552. &.book {
  1553. background-image: url(~@/assets/img/header/book.png);
  1554. }
  1555. &.folder {
  1556. background-image: url(~@/assets/img/header/folder.png);
  1557. }
  1558. &.mail {
  1559. background-image: url(~@/assets/img/header/mail.png);
  1560. }
  1561. &.order {
  1562. background-image: url(~@/assets/img/header/order.png);
  1563. }
  1564. &.video {
  1565. background-image: url(~@/assets/img/header/video.png);
  1566. }
  1567. }
  1568. .sub-title {
  1569. display: inline-block;
  1570. line-height: 36px;
  1571. font-size: 14px;
  1572. }
  1573. &:hover {
  1574. .sub-title {
  1575. color: #409eff;
  1576. }
  1577. }
  1578. }
  1579. }
  1580. </style>