PcHeader.vue 45 KB

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