PcHeader.vue 45 KB

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