PcHeader.vue 45 KB

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