PcHeader.vue 46 KB

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