PcHeader.vue 46 KB

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