PcHeader.vue 45 KB

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