PcHeader.vue 45 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601
  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. height: 60px;
  1017. }
  1018. .search-input {
  1019. flex: 1;
  1020. padding: 0 26px 0 50px;
  1021. position: relative;
  1022. .search-detail {
  1023. z-index: 101;
  1024. padding: 12px 0 8px;
  1025. box-sizing: border-box;
  1026. width: calc(100% - 76px);
  1027. height: 320px;
  1028. position: absolute;
  1029. top: 52px;
  1030. background: #ffffff;
  1031. border: 1px solid #bebebe;
  1032. border-radius: 4px;
  1033. font-size: 12px;
  1034. font-weight: 400;
  1035. color: #333333;
  1036. .autocomplete-title {
  1037. height: 36px;
  1038. line-height: 36px;
  1039. margin-bottom: 8px;
  1040. font-size: 14px;
  1041. font-weight: bold;
  1042. color: #000000;
  1043. }
  1044. .category-list {
  1045. box-sizing: border-box;
  1046. padding: 0 12px;
  1047. height: 100%;
  1048. width: 35%;
  1049. min-width: 35%;
  1050. border-right: 1px solid #7f7f7f;
  1051. position: relative;
  1052. ul {
  1053. overflow-y: auto;
  1054. li {
  1055. width: 100%;
  1056. position: relative;
  1057. p {
  1058. box-sizing: border-box;
  1059. padding: 0 8px;
  1060. width: 100%;
  1061. height: 50px;
  1062. line-height: 50px;
  1063. color: #333;
  1064. font-size: 14px;
  1065. cursor: pointer;
  1066. &:hover {
  1067. background-color: #f5f5f5;
  1068. color: #0b6dc9;
  1069. }
  1070. }
  1071. }
  1072. }
  1073. }
  1074. .product-list {
  1075. padding: 0 16px;
  1076. ul li {
  1077. margin-bottom: 10px;
  1078. a {
  1079. display: flex;
  1080. justify-content: flex-start;
  1081. align-items: center;
  1082. img {
  1083. width: 43px;
  1084. height: 43px;
  1085. }
  1086. p {
  1087. height: 24px;
  1088. line-height: 24px;
  1089. margin-left: 5px;
  1090. }
  1091. }
  1092. &:hover {
  1093. background: #f5f5f5;
  1094. p {
  1095. color: #0b6dc9;
  1096. }
  1097. }
  1098. }
  1099. .seeAllResult {
  1100. text-align: center;
  1101. font-size: 14px;
  1102. font-weight: bold;
  1103. background-color: #00213b;
  1104. color: #fff;
  1105. padding: 0 12px;
  1106. line-height: 26px;
  1107. height: 26px;
  1108. border-radius: 4px;
  1109. }
  1110. }
  1111. .sth-else {
  1112. margin-top: 4px;
  1113. text-align: center;
  1114. height: 24px;
  1115. line-height: 24px;
  1116. font-size: 18px;
  1117. font-weight: 600;
  1118. color: #00213b;
  1119. a {
  1120. display: inline-block;
  1121. padding: 0 6px;
  1122. border-radius: 4px;
  1123. background-color: #00213b;
  1124. color: #fff;
  1125. box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  1126. }
  1127. a:hover {
  1128. background-color: #000;
  1129. }
  1130. }
  1131. }
  1132. }
  1133. .topbar-item {
  1134. font-weight: bold;
  1135. white-space: nowrap;
  1136. cursor: pointer;
  1137. .topbar-item-right {
  1138. padding: 0 30px 0 12px;
  1139. }
  1140. .topbar-item-right-myAccount {
  1141. // display: flex;
  1142. // align-items: center;
  1143. position: relative;
  1144. p {
  1145. margin-left: 10px;
  1146. }
  1147. .greeting {
  1148. position: absolute;
  1149. top: -20px;
  1150. left: 30px;
  1151. }
  1152. }
  1153. }
  1154. }
  1155. nav {
  1156. background-color: #00213b;
  1157. height: 52px;
  1158. // font-family: ProximaNova-Regular;
  1159. ul {
  1160. display: flex;
  1161. // justify-content: space-between;
  1162. align-items: center;
  1163. li.nav-list {
  1164. width: 170px;
  1165. height: 52px;
  1166. font-size: 16px;
  1167. font-weight: 400;
  1168. color: #ffffff;
  1169. text-align: center;
  1170. line-height: 52px;
  1171. .nav-list-title {
  1172. font-weight: 600;
  1173. }
  1174. a {
  1175. display: block;
  1176. width: 100%;
  1177. color: #ffffff;
  1178. }
  1179. span {
  1180. display: inline-block;
  1181. cursor: pointer;
  1182. .el-icon-arrow-up,
  1183. .el-icon-arrow-down {
  1184. margin-left: 5px;
  1185. text-align: center;
  1186. }
  1187. }
  1188. .nav-menu {
  1189. width: 1400px;
  1190. height: 395px;
  1191. color: #fff;
  1192. background-color: RGB(56 54 55);
  1193. overflow: hidden;
  1194. .nav-menu-content {
  1195. box-sizing: border-box;
  1196. padding: 20px 0 0 20px;
  1197. margin: 0 auto;
  1198. display: flex;
  1199. justify-content: space-between;
  1200. .nav-menu-item {
  1201. position: relative;
  1202. width: 130px;
  1203. }
  1204. .primary-classification {
  1205. $width: 85px;
  1206. .menu-item-icon {
  1207. width: $width;
  1208. height: $width;
  1209. img {
  1210. width: 100%;
  1211. height: 100%;
  1212. }
  1213. }
  1214. &:hover {
  1215. .menu-item-title {
  1216. color: #0b6dc9;
  1217. }
  1218. }
  1219. .menu-item-title {
  1220. margin-top: 5px;
  1221. height: 24px;
  1222. font-size: 15px;
  1223. // font-size: 1.1rem;
  1224. font-weight: bold;
  1225. text-align: left;
  1226. line-height: 24px;
  1227. cursor: pointer;
  1228. white-space: normal;
  1229. word-break: keep-all;
  1230. overflow: hidden;
  1231. }
  1232. .menu-separator {
  1233. width: $width;
  1234. height: 1px;
  1235. background-color: #666;
  1236. margin: 12px 0;
  1237. }
  1238. }
  1239. .secondary-classification {
  1240. width: 100%;
  1241. font-size: 13px;
  1242. font-weight: 400;
  1243. line-height: 24px;
  1244. text-align: left;
  1245. cursor: pointer;
  1246. white-space: normal;
  1247. word-break: keep-all;
  1248. overflow: hidden;
  1249. }
  1250. }
  1251. }
  1252. .leadTime-list,
  1253. .budget-list {
  1254. display: flex;
  1255. flex-direction: column;
  1256. justify-content: flex-start;
  1257. color: #fff;
  1258. background-color: RGB(56 54 55);
  1259. text-align: center;
  1260. font-size: 14px;
  1261. width: 171px;
  1262. box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  1263. .budget-list-item,
  1264. .leadTime-list-item {
  1265. width: 171px;
  1266. height: 40px;
  1267. line-height: 40px;
  1268. min-height: 40px;
  1269. a {
  1270. display: block;
  1271. width: 100%;
  1272. height: 100%;
  1273. }
  1274. }
  1275. }
  1276. .sub-item-wrap {
  1277. display: none;
  1278. z-index: 1;
  1279. background-color: rgb(56 54 55);
  1280. position: absolute;
  1281. top: 0;
  1282. left: 170px;
  1283. .budget-list-item {
  1284. cursor: pointer;
  1285. }
  1286. .budget-list-sub-item-title {
  1287. width: 171px;
  1288. height: 40px;
  1289. line-height: 40px;
  1290. min-height: 40px;
  1291. }
  1292. // color: red;
  1293. }
  1294. .budget-list-item {
  1295. position: relative;
  1296. overflow: visible;
  1297. &:hover {
  1298. .sub-item-wrap {
  1299. display: flex;
  1300. }
  1301. }
  1302. }
  1303. .leadTime-list {
  1304. height: 280px;
  1305. }
  1306. .budget-list {
  1307. height: 360px;
  1308. }
  1309. .compare-product {
  1310. width: 543px;
  1311. background: #fff;
  1312. color: #333333;
  1313. box-shadow: 0px 1px 10px 0px rgba(7, 5, 5, 0.13);
  1314. margin-left: -372px;
  1315. padding: 31px 13px 14px 29px;
  1316. box-sizing: border-box;
  1317. visibility: hidden;
  1318. opacity: 0;
  1319. .compare-product-title {
  1320. display: flex;
  1321. justify-content: space-between;
  1322. align-items: center;
  1323. p {
  1324. font-size: 24px;
  1325. font-weight: bold;
  1326. }
  1327. .compare-btn {
  1328. width: 136px;
  1329. height: 38px;
  1330. background: #00213b;
  1331. border-radius: 4px;
  1332. color: #ffffff;
  1333. font-size: 14px;
  1334. }
  1335. }
  1336. .red-line {
  1337. width: 27px;
  1338. height: 7px;
  1339. background: #e90000;
  1340. }
  1341. .prompt-info {
  1342. font-size: 14px;
  1343. text-align: left;
  1344. line-height: 24px;
  1345. }
  1346. ul {
  1347. display: flex;
  1348. flex-direction: column;
  1349. justify-content: flex-start;
  1350. margin-top: 10px;
  1351. li {
  1352. display: flex;
  1353. justify-content: space-between;
  1354. align-items: center;
  1355. width: 500px;
  1356. .item-left {
  1357. display: flex;
  1358. justify-content: flex-start;
  1359. align-items: center;
  1360. img {
  1361. width: 30px;
  1362. height: 30px;
  1363. margin-right: 10px;
  1364. }
  1365. }
  1366. .el-icon-error {
  1367. color: #e90000;
  1368. font-size: 21px;
  1369. }
  1370. }
  1371. }
  1372. .clear-btn {
  1373. background: #e90000;
  1374. color: #fff;
  1375. font-size: 14px;
  1376. padding: 10px 20px;
  1377. }
  1378. }
  1379. &:hover {
  1380. div.nav-list-title {
  1381. color: #333333;
  1382. background-color: #e3e3e3;
  1383. a {
  1384. color: #333333;
  1385. background-color: #e3e3e3;
  1386. }
  1387. .el-icon-arrow-down {
  1388. color: #333333;
  1389. }
  1390. }
  1391. .compare-product {
  1392. opacity: 1;
  1393. visibility: visible;
  1394. transition: all 0.5s;
  1395. }
  1396. }
  1397. .menu-item-title:hover,
  1398. .secondary-classification:hover a {
  1399. color: #0b6dc9;
  1400. }
  1401. .leadTime-list-item:hover,
  1402. .budget-list-item:hover {
  1403. background: #0b6dc9;
  1404. color: #f5f5f5;
  1405. & > a {
  1406. background: #0b6dc9;
  1407. color: #f5f5f5;
  1408. width: 100%;
  1409. height: 100%;
  1410. }
  1411. }
  1412. }
  1413. }
  1414. }
  1415. :deep(.el-badge.item .el-badge__content) {
  1416. background-color: #e90000;
  1417. }
  1418. .header-redLine {
  1419. height: 4px;
  1420. background: #e90000;
  1421. }
  1422. }
  1423. :deep(.el-input) {
  1424. .el-input__inner {
  1425. border-radius: 18px;
  1426. }
  1427. }
  1428. :deep(.el-menu-item-group__title) {
  1429. padding: 0;
  1430. }
  1431. :deep(.el-submenu__title) {
  1432. font-family: Proxima Nova;
  1433. font-size: 14px;
  1434. color: #333333;
  1435. height: 40px;
  1436. line-height: 40px;
  1437. font-weight: bold;
  1438. &:hover {
  1439. color: #1a72b7;
  1440. }
  1441. }
  1442. :deep(.el-menu-item) {
  1443. font-family: Proxima Nova;
  1444. height: 40px;
  1445. line-height: 40px;
  1446. font-weight: bold;
  1447. color: #333333;
  1448. a {
  1449. display: inline-block;
  1450. width: 100%;
  1451. }
  1452. &:hover a {
  1453. color: #1a72b7;
  1454. }
  1455. }
  1456. :deep(.el-menu-item.is-active) {
  1457. a {
  1458. color: #1a72b7;
  1459. }
  1460. }
  1461. :deep(.el-menu-item-group) {
  1462. font-family: Proxima Nova;
  1463. .el-menu-item {
  1464. font-size: 12px;
  1465. font-weight: 400;
  1466. color: #333333;
  1467. &:hover a {
  1468. color: #1a72b7;
  1469. }
  1470. }
  1471. .is-active a {
  1472. color: #1a72b7;
  1473. font-size: 12px;
  1474. font-weight: 400;
  1475. }
  1476. }
  1477. @keyframes fade {
  1478. 0% {
  1479. height: 0;
  1480. }
  1481. }
  1482. .category-enter-active,
  1483. .leadTime-enter-active,
  1484. .budge-enter-active {
  1485. overflow: hidden;
  1486. animation: fade 0.3s ease-in-out;
  1487. }
  1488. .category-leave-active,
  1489. .leadTime-leave-active,
  1490. .budge-leave-active {
  1491. overflow: hidden;
  1492. animation: fade 0.3s ease-in-out reverse;
  1493. }
  1494. .border-radius {
  1495. border-radius: 6px;
  1496. }
  1497. .no-result {
  1498. margin-top: 120px;
  1499. font-size: 34px;
  1500. font-family: Proxima Nova;
  1501. font-weight: 600;
  1502. color: #797979;
  1503. }
  1504. .user-menu-panel {
  1505. width: 292px;
  1506. box-sizing: border-box;
  1507. padding: 0 0 20px;
  1508. font-size: 15px;
  1509. font-family: ProximaNova-Semibold, sans-serif;
  1510. color: #333;
  1511. & div {
  1512. box-sizing: border-box;
  1513. }
  1514. & > div {
  1515. padding-left: 27px;
  1516. padding-right: 27px;
  1517. }
  1518. .greeting {
  1519. width: 270px;
  1520. font-weight: 600;
  1521. padding-top: 18px;
  1522. padding-bottom: 18px;
  1523. padding-left: 11px;
  1524. padding-right: 11px;
  1525. border-bottom: 1px solid rgba(#002369, 0.3);
  1526. }
  1527. .btn-logout {
  1528. display: inline-block;
  1529. cursor: pointer;
  1530. }
  1531. }
  1532. .user-menu-wrap {
  1533. width: 100%;
  1534. padding-top: 6px;
  1535. padding-bottom: 24px;
  1536. }
  1537. .user-menu {
  1538. margin-top: 8px;
  1539. .menu-title {
  1540. font-weight: 600;
  1541. line-height: 36px;
  1542. }
  1543. .sub-menu {
  1544. font-family: Proxima Nova, sans-serif;
  1545. padding-left: 14px;
  1546. display: flex;
  1547. align-items: center;
  1548. .icon {
  1549. display: inline-block;
  1550. width: 20px;
  1551. height: 20px;
  1552. margin-right: 8px;
  1553. background-position: center;
  1554. background-repeat: no-repeat;
  1555. background-size: contain;
  1556. &.book {
  1557. background-image: url(~@/assets/img/header/book.png);
  1558. }
  1559. &.folder {
  1560. background-image: url(~@/assets/img/header/folder.png);
  1561. }
  1562. &.mail {
  1563. background-image: url(~@/assets/img/header/mail.png);
  1564. }
  1565. &.order {
  1566. background-image: url(~@/assets/img/header/order.png);
  1567. }
  1568. &.video {
  1569. background-image: url(~@/assets/img/header/video.png);
  1570. }
  1571. }
  1572. .sub-title {
  1573. display: inline-block;
  1574. line-height: 36px;
  1575. font-size: 14px;
  1576. }
  1577. &:hover {
  1578. .sub-title {
  1579. color: #409eff;
  1580. }
  1581. }
  1582. }
  1583. }
  1584. </style>