PcHeader.vue 45 KB

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