You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

787 lines
22 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div
  3. class="tw-px-[30px] tw-mb-[60px] md:tw-mb-[100px] xl:tw-px-[60px] xl:tw-max-w-screen-xl xl:tw-mx-auto xl:tw-grid xl:tw-grid-cols-[380px_auto] xl:tw-gap-[30px]">
  4. <section class="xl:tw-col-span-2 tw-mb-5 md:tw-mb-0">
  5. <centerMode :list="ads" v-if="ads.length"></centerMode>
  6. </section>
  7. <section class="xl:tw-col-span-2 tw-mb-[40px] xl:tw-mb-[10px]">
  8. <Breadcrumbs class="tw-py-[7px] md:tw-py-[10px] xl:tw-py-[13px] tw-mb-4 md:tw-mb-6 xl:tw-mb-0"></Breadcrumbs>
  9. <sort :results="result" :sortType="sortType" :sortBy="sortBy" @sort="updateSortBy($event)"
  10. @filter="$modal.show(`sidebar-filter-modal`)"></sort>
  11. </section>
  12. <section class="tw-grid tw-grid-cols-1 tw-gap-[30px] tw-auto-rows-min">
  13. <div class="tw-max-h-min" v-if="$vuetify.breakpoint.xl">
  14. <DateCard @update="updateDateFilter" :modalChecked="datesChecked" />
  15. </div>
  16. <div v-if="$vuetify.breakpoint.xl">
  17. <oneLevel :label="'Show Status'" :list="statuses" @update="updateStatusFilter"></oneLevel>
  18. </div>
  19. <div v-if="$vuetify.breakpoint.xl">
  20. <multipleLevel :label="'Categories'" :placeholder="'Find Categories...'" :list="categories"
  21. :queryItem="categoryQueryFilter" @update="updateCategoryFilter"></multipleLevel>
  22. </div>
  23. <div v-if="$vuetify.breakpoint.xl">
  24. <multipleLevel :label="'Location'" :placeholder="'Find country/city ...'" :list="locations"
  25. :queryItem="locationQueryFilter" @update="updateLocationFilter"></multipleLevel>
  26. </div>
  27. <div v-if="$vuetify.breakpoint.xl">
  28. <!-- <rating></rating> -->
  29. </div>
  30. </section>
  31. <!-- <section class="">
  32. <ExhibitionListCard v-for="(item, index) in renderList" :key="index" :item="item"
  33. @toggle-favorite="onToggleFavorite"></ExhibitionListCard>
  34. <div class="tw-mt-[34px] tw-flex tw-justify-end">
  35. <pagination :pageLength="pageLength" @update="updatePage"></pagination>
  36. </div>
  37. </section> -->
  38. <section class="">
  39. <ExhibitionListCard v-for="(item, index) in exhibitionList" :key="index" :item="item"
  40. ></ExhibitionListCard>
  41. <div class="tw-mt-[34px] tw-flex tw-justify-end">
  42. <pagination :pageLength="pageLength" @update="updatePage"></pagination>
  43. </div>
  44. </section>
  45. <div v-if="!$vuetify.breakpoint.xl">
  46. <ShowSidebarFilterModal :statusList="statuses" :locationList="locations" :categoryList="categories"
  47. :statusChecked="statusesChecked" :locationChecked="locationChecked" :categoryChecked="categoryChecked"
  48. :datesChecked="datesChecked" @updateCategoryFilter="updateCategoryFilter"
  49. @updateLocationFilter="updateLocationFilter" @updateStatusFilter="updateStatusFilter"
  50. @updateDateFilter="updateDateFilter"></ShowSidebarFilterModal>
  51. </div>
  52. <loading :isLoading="isPageLoading"></loading>
  53. </div>
  54. </template>
  55. <script>
  56. import Breadcrumbs from "~/components/Breadcrumbs.vue";
  57. import centerMode from "@/components/swiper/centerMode";
  58. import ExhibitionListCard from "~/components/exhibition/ExhibitionListCard.vue";
  59. import DateCard from "~/components/exhibition/DateCard.vue";
  60. import sort from "@/components/newComponent/sort/sort";
  61. import multipleLevel from "@/components/newComponent/filter/multipleLevel";
  62. import oneLevel from "@/components/newComponent/filter/oneLevel";
  63. import rating from "@/components/newComponent/filter/rating.vue";
  64. import pagination from "@/components/newComponent/pagination/pagination.vue";
  65. import ShowSidebarFilterModal from "@/components/exhibition/ShowSidebarFilterModal.vue";
  66. import { XIcon } from "vue-feather-icons";
  67. import loading from "@/components/newComponent/loading/loading.vue";
  68. export default {
  69. name: "ExhibitionView",
  70. auth: false,
  71. meta: {
  72. name: "Exhibition",
  73. },
  74. components: {
  75. centerMode,
  76. Breadcrumbs,
  77. DateCard,
  78. ExhibitionListCard,
  79. XIcon,
  80. sort,
  81. multipleLevel,
  82. oneLevel,
  83. rating,
  84. pagination,
  85. ShowSidebarFilterModal,
  86. loading,
  87. },
  88. async asyncData({ route, $auth, $axios, i18n }) {
  89. let isPageLoading = true;
  90. let langQuery = "?lang=" + i18n.localeProperties["langQuery"];
  91. let keyword = route.query.q;
  92. let data;
  93. // ({ data } = await $axios.get("/exhibitions/filters" + langQuery));
  94. let statuses;
  95. if (data) {
  96. statuses = data.filters.statuses.map((item) => {
  97. return {
  98. key: item.Key,
  99. title: item.Value,
  100. };
  101. });
  102. }
  103. // ({ data } = await $axios.get(
  104. // `/t/exhibitions/locations${langQuery}&sort=true`
  105. // ));
  106. let locations;
  107. if (data) {
  108. locations = data.sort_results.map((item) => {
  109. item.country_list = item.country_list.map((country) => {
  110. country.city_list = country.city_list.map((city) => {
  111. return {
  112. title: city.city_name,
  113. key: city.city_name,
  114. };
  115. });
  116. return {
  117. title: country.country_name,
  118. key: country.country_name,
  119. children: country.city_list,
  120. };
  121. });
  122. return {
  123. title: item.region_name,
  124. key: item.region_name,
  125. children: item.country_list,
  126. };
  127. });
  128. }
  129. // ({ data } = await $axios.get(
  130. // `/t/exhibitions/categories${langQuery}&sort=true`
  131. // ));
  132. let categories;
  133. if (data) {
  134. categories = data.sort_results.map((item) => {
  135. item.subcategories_list = item.subcategories_list.map((children) => {
  136. return {
  137. title: children.subcategory_name,
  138. key: children.subcategory_name,
  139. };
  140. });
  141. return {
  142. title: item.category_name,
  143. key: item.category_name,
  144. children: item.subcategories_list,
  145. };
  146. });
  147. }
  148. if (keyword) {
  149. langQuery = langQuery + "&q=" + keyword;
  150. }
  151. try {
  152. data = {
  153. exhibitions: [],
  154. ads: [],
  155. };
  156. // ({ data } = await $axios
  157. // .get("/exhibitions" + langQuery)
  158. // .then()
  159. // .catch((err) => {
  160. // console.log(err);
  161. // }));
  162. } catch (e) {
  163. data = {
  164. exhibitions: [],
  165. ads: [],
  166. };
  167. console.log(e);
  168. }
  169. // console.log(data.exhibitions);
  170. // let exhibitionList = data.exhibitions; // exhibitionApi2CardType();
  171. let userSavedList = [];
  172. if ($auth.loggedIn) {
  173. // await $axios
  174. // .get(
  175. // `/member/users/${$auth.$storage.getUniversal("jwt").user_id}?jwt=${
  176. // $auth.$storage.getUniversal("jwt").token
  177. // }`
  178. // )
  179. // .then((res) => {
  180. // userSavedList = res.data.UserExhibition; //.map(item=>item.exhibition_id)
  181. // })
  182. // .catch((err) => {
  183. // console.log(err);
  184. // });
  185. }
  186. // userSavedList = userSavedList.map((item) => item.exhibition_id);
  187. // for (let i = 0; i < exhibitionList.length; i++) {
  188. // if (userSavedList.includes(exhibitionList[i].id)) {
  189. // exhibitionList[i].saved = true;
  190. // } else {
  191. // exhibitionList[i].saved = false;
  192. // }
  193. // }
  194. let ads = data.ads;
  195. return {
  196. statuses: statuses,
  197. // categories: categories,
  198. // locations: locations,
  199. // rating: rating,
  200. isPageLoading: isPageLoading,
  201. // exhibitionList: exhibitionList,
  202. ads: ads,
  203. langQuery: langQuery,
  204. };
  205. },
  206. data: () => ({
  207. page: 1,
  208. perPage: 10,
  209. adList: [],
  210. exhibitionList: [],
  211. datesChecked: [],
  212. statusesChecked: [],
  213. categoryChecked: [],
  214. locationChecked: [],
  215. ratingChecked: [],
  216. selectedStatusJson: "",
  217. locations: [],
  218. statusMap: new Map(),
  219. regionMap: new Map(),
  220. countryMap: new Map(),
  221. cityMap: new Map(),
  222. selectedRegionJson: "",
  223. selectedCountryJson: "",
  224. selectedCityJson: "",
  225. mainCategoryMap: new Map(),
  226. subCategoryMap: new Map(),
  227. selectedMainCategoryJson: "",
  228. selectedSubCategoryJson: "",
  229. favoriteSet: new Set(),
  230. categories: [],
  231. unsortRegionList: [],
  232. unsortCountryList: [],
  233. unsortCityList: [],
  234. unsortCategoryList: [],
  235. unsortSubcategoryList: [],
  236. categoryQueryFilter: "",
  237. locationQueryFilter: "",
  238. width: undefined,
  239. sortType: [
  240. { name: "Recommended", value: "exhibition.Recommended" },
  241. { name: "ShowDate", value: "exhibition.ShowDate" },
  242. { name: "ExhibitorCount", value: "exhibition.ExhibitorCount" },
  243. { name: "VisitorCount", value: "exhibition.VisitorCount" },
  244. ],
  245. sortBy: "Show Dates",
  246. }),
  247. async created() {
  248. this.getAdList();
  249. this.getStatusList();
  250. this.getLocationList();
  251. this.getCategoryList();
  252. this.getFavorite();
  253. this.getExhibitionCard();
  254. // await this.getUnsortLocationList();
  255. // await this.getUnsortCategoryList();
  256. // await this.getQuery();
  257. // if (this.$route.query.hasOwnProperty("q")) {
  258. // this.sortType.splice(0, 0, {
  259. // name: "ShowEasy Recommended",
  260. // value: "ShowEasy Recommended",
  261. // });
  262. // this.sortBy = "ShowEasy Recommended";
  263. // }
  264. let userSavedList = [];
  265. if (this.$auth.loggedIn) {
  266. // await this.$axios
  267. // .get(
  268. // `/member/users/${this.$auth.$storage.getUniversal("jwt").user_id
  269. // }?jwt=${this.$auth.$storage.getUniversal("jwt").token}`
  270. // )
  271. // .then((res) => {
  272. // userSavedList = res.data.UserExhibition;
  273. // })
  274. // .catch((err) => {
  275. // console.log(err);
  276. // });
  277. // this.$store.dispatch("updatePicture");
  278. // this.$nextTick(() => {
  279. // this.$forceUpdate();
  280. // });
  281. }
  282. userSavedList = userSavedList.map((item) => item.exhibition_id);
  283. for (let i = 0; i < this.exhibitionList.length; i++) {
  284. if (userSavedList.includes(this.exhibitionList[i].id)) {
  285. this.exhibitionList[i].saved = true;
  286. } else {
  287. this.exhibitionList[i].saved = false;
  288. }
  289. }
  290. if (process.client) {
  291. this.width = window.innerWidth;
  292. }
  293. this.$nextTick(() => {
  294. this.isPageLoading = false;
  295. });
  296. },
  297. async mounted() {
  298. let userSavedList = [];
  299. if (this.$auth.loggedIn) {
  300. // await this.$axios
  301. // .get(
  302. // `/member/users/${this.$auth.$storage.getUniversal("jwt").user_id
  303. // }?jwt=${this.$auth.$storage.getUniversal("jwt").token}`
  304. // )
  305. // .then((res) => {
  306. // userSavedList = res.data.UserExhibition;
  307. // })
  308. // .catch((err) => {
  309. // console.log(err);
  310. // });
  311. // this.$store.dispatch("updatePicture");
  312. // this.$nextTick(() => {
  313. // this.$forceUpdate();
  314. // });
  315. }
  316. userSavedList = userSavedList.map((item) => item.exhibition_id);
  317. for (let i = 0; i < this.exhibitionList.length; i++) {
  318. if (userSavedList.includes(this.exhibitionList[i].id)) {
  319. this.exhibitionList[i].saved = true;
  320. } else {
  321. this.exhibitionList[i].saved = false;
  322. }
  323. }
  324. this.$nextTick(() => {
  325. window.addEventListener("resize", this.onResize);
  326. });
  327. },
  328. beforeDestroy() {
  329. window.removeEventListener("resize", this.onResize);
  330. this.fetchUser();
  331. },
  332. computed: {
  333. result() {
  334. // return this.exhibitionsFilter.length;
  335. return this.exhibitionList.length;
  336. },
  337. pageLength() {
  338. return Math.ceil(this.result / this.perPage);
  339. },
  340. // renderList() {
  341. // return this.sliceRenderList(this.exhibitionsFilter);
  342. // },
  343. },
  344. watch: {
  345. page() {
  346. // window.scrollTo(0, 0);
  347. },
  348. $route() {
  349. this.getQuery();
  350. },
  351. },
  352. methods: {
  353. onResize() {
  354. if (process.client) {
  355. this.width = window.innerWidth;
  356. }
  357. },
  358. async fetchUser() {
  359. let userSavedList = [];
  360. if (this.$auth.loggedIn) {
  361. // await this.$axios
  362. // .get(
  363. // `/member/users/${this.$auth.$storage.getUniversal("jwt").user_id
  364. // }?jwt=${this.$auth.$storage.getUniversal("jwt").token}`
  365. // )
  366. // .then((res) => {
  367. // userSavedList = res.data.UserExhibition;
  368. // })
  369. // .catch((err) => {
  370. // console.log(err);
  371. // });
  372. }
  373. userSavedList = userSavedList.map((item) => item.exhibition_id);
  374. for (let i = 0; i < this.exhibitionList.length; i++) {
  375. if (userSavedList.includes(this.exhibitionList[i].id)) {
  376. this.exhibitionList[i].saved = true;
  377. } else {
  378. this.exhibitionList[i].saved = false;
  379. }
  380. }
  381. },
  382. getAdList() {
  383. this.ads = [{
  384. image: require('/assets/img/thems/Frame33.png')
  385. }, {
  386. image: require('/assets/img/thems/Frame33.png')
  387. }, {
  388. image: require('/assets/img/thems/Frame33.png')
  389. }]
  390. },
  391. getStatusList() {
  392. this.$axios
  393. .get(
  394. `/trending/api/Exhibition/Statuses?Lang=${this.$i18n.localeProperties["langQuery"]}`
  395. )
  396. .then((result) => {
  397. if (result.data.DATA.rel) {
  398. this.statuses = result.data.DATA.rel;
  399. this.statuses = this.statuses.map((item => {
  400. this.statusMap.set(item.Key, item.Value);
  401. return {
  402. title: item.Value,
  403. key: item.Key,
  404. };
  405. }));
  406. }
  407. })
  408. .catch((err) => {
  409. console.log(err);
  410. });
  411. },
  412. getCategoryList() {
  413. this.$axios
  414. .get(
  415. `/trending/api/Exhibition/Categories?Lang=${this.$i18n.localeProperties["langQuery"]}`
  416. )
  417. .then((result) => {
  418. if (result.data.DATA.rel) {
  419. this.categories = result.data.DATA.rel;
  420. this.categories = this.categories.map((item) => {
  421. this.mainCategoryMap.set(item.CategoryID, item);
  422. item.SubCategoryList = item.SubCategoryList.map(
  423. (children) => {
  424. this.subCategoryMap.set(children.CategoryID, children);
  425. return {
  426. title: children.CategoryName,
  427. key: children.CategoryID,
  428. };
  429. }
  430. );
  431. return {
  432. title: item.CategoryName,
  433. key: item.CategoryID,
  434. children: item.SubCategoryList,
  435. };
  436. });
  437. }
  438. })
  439. .catch((err) => {
  440. console.log(err);
  441. });
  442. },
  443. getLocationList() {
  444. this.$axios
  445. .get(
  446. `/trending/api/Exhibition/Locations?Lang=${this.$i18n.localeProperties["langQuery"]}`
  447. )
  448. .then((result) => {
  449. if (result.data.DATA.rel) {
  450. var vm = this;
  451. vm.locations = result.data.DATA.rel;
  452. vm.locations = vm.locations.map((region) => {
  453. this.regionMap.set(region.RegionID, region);
  454. region.CountryList = region.CountryList.map((country) => {
  455. this.countryMap.set(country.CountryID, country);
  456. country.CityList = country.CityList.map((city) => {
  457. this.cityMap.set(city.CityID, city);
  458. return {
  459. title: city.CityName,
  460. key: city.CityID,
  461. };
  462. });
  463. return {
  464. title: country.CountryName,
  465. key: country.CountryID,
  466. children: country.CityList,
  467. };
  468. });
  469. return {
  470. title: region.RegionName,
  471. key: region.RegionID,
  472. children: region.CountryList,
  473. };
  474. });
  475. return result.data.DATA.rel;
  476. }
  477. })
  478. .catch((err) => {
  479. console.log(err);
  480. });
  481. },
  482. getExhibitionCard() {
  483. this.$axios
  484. .get(
  485. `/trending/api/Exhibition/Cards?Lang=${this.$i18n.localeProperties["langQuery"]}` +
  486. `&RegionIDs=${this.selectedRegionJson}` +
  487. `&CountryIDs=${this.selectedCountryJson}` +
  488. `&CityIDs=${this.selectedCityJson}` +
  489. `&MainCategoryIDs=${this.selectedMainCategoryJson}` +
  490. `&SubCategoryIDs=${this.selectedSubCategoryJson}` +
  491. `&Status=${this.selectedStatusJson}` +
  492. `&Date=${JSON.stringify(this.datesChecked)}` +
  493. `&Sort=${this.sortBy}`
  494. )
  495. .then((result) => {
  496. if (result.data.DATA.rel) {
  497. this.exhibitionList = result.data.DATA.rel;
  498. this.setFavorite();
  499. }
  500. })
  501. .catch((err) => {
  502. console.log(err);
  503. this.exhibitionList = [];
  504. });
  505. },
  506. getFavorite() {
  507. this.favoriteSet.clear();
  508. if (this.$auth.loggedIn) {
  509. this.$axios
  510. .get(
  511. `/trending/api/Favorite/Favorites?Type=Exhibition`
  512. )
  513. .then((result) => {
  514. if (result.data.DATA.rel) {
  515. let favoriteList = [];
  516. favoriteList = result.data.DATA.rel;
  517. favoriteList.forEach(item => {
  518. this.favoriteSet.add(item.ParentID);
  519. })
  520. }
  521. })
  522. .catch((err) => {
  523. console.log(err);
  524. });
  525. }
  526. },
  527. setFavorite() {
  528. if(this.exhibitionList.length > 0 && this.$auth.loggedIn) {
  529. for(let i =0; i < this.exhibitionList.length; i++) {
  530. if (this.favoriteSet.has(this.exhibitionList[i].ExhibitionID)) {
  531. this.exhibitionList[i].IsFavorite = "Y";
  532. }
  533. }
  534. }
  535. },
  536. updateSortBy(data) {
  537. this.sortBy = data;
  538. this.getExhibitionCard();
  539. },
  540. updatePage(value) {
  541. this.page = value;
  542. },
  543. updateCategoryFilter(value) {
  544. var SelectedMainCategoryArray = [];
  545. var SelectedSubCategoryArray = [];
  546. this.selectedMainCategoryJson = "";
  547. this.selectedSubCategoryJson = "";
  548. value.forEach(key => {
  549. if (this.mainCategoryMap.has(key)) {
  550. SelectedMainCategoryArray.push(key);
  551. }
  552. if (this.subCategoryMap.has(key)) {
  553. SelectedSubCategoryArray.push(key);
  554. }
  555. });
  556. this.selectedMainCategoryJson = JSON.stringify(SelectedMainCategoryArray);
  557. this.selectedSubCategoryJson = JSON.stringify(SelectedSubCategoryArray);
  558. this.getExhibitionCard();
  559. },
  560. updateLocationFilter(value) {
  561. var SelectedRegionArray = [];
  562. var SelectedCountryArray = [];
  563. var SelectedCityArray = [];
  564. this.selectedRegionJson = "";
  565. this.selectedCountryJson = "";
  566. this.selectedCityJson = "";
  567. value.forEach(key => {
  568. if (this.regionMap.has(key)) {
  569. SelectedRegionArray.push(key);
  570. }
  571. if (this.countryMap.has(key)) {
  572. SelectedCountryArray.push(key);
  573. }
  574. if (this.cityMap.has(key)) {
  575. SelectedCityArray.push(key);
  576. }
  577. });
  578. this.selectedRegionJson = JSON.stringify(SelectedRegionArray);
  579. this.selectedCountryJson = JSON.stringify(SelectedCountryArray);
  580. this.selectedCityJson = JSON.stringify(SelectedCityArray);
  581. this.getExhibitionCard();
  582. },
  583. updateStatusFilter(value) {
  584. var SelectedStatusArray = [];
  585. this.selectedStatusJson = "";
  586. value.forEach(key => {
  587. if (this.statusMap.has(key)) {
  588. SelectedStatusArray.push(key);
  589. }
  590. });
  591. this.selectedStatusJson = JSON.stringify(SelectedStatusArray);
  592. this.getExhibitionCard();
  593. },
  594. updateDateFilter(value) {
  595. this.datesChecked = value;
  596. this.getExhibitionCard();
  597. },
  598. sortServiceList(data) {
  599. switch (this.sortBy) {
  600. case "ShowEasy Recommended":
  601. return data;
  602. case "Exhibitor Numbers":
  603. function Exhibitors(a, b) {
  604. if (
  605. Number(a.exhibitors ? a.exhibitors.replace(/[^0-9]/gi, "") : "") <
  606. Number(b.exhibitors ? b.exhibitors.replace(/[^0-9]/gi, "") : "")
  607. )
  608. return 1;
  609. if (
  610. Number(a.exhibitors ? a.exhibitors.replace(/[^0-9]/gi, "") : "") >
  611. Number(b.exhibitors ? b.exhibitors.replace(/[^0-9]/gi, "") : "")
  612. )
  613. return -1;
  614. return 0;
  615. }
  616. return data.sort(Exhibitors);
  617. case "Visitor Numbers":
  618. function Visitor(a, b) {
  619. if (
  620. Number(a.visitors ? a.visitors.replace(/[^0-9]/gi, "") : "") <
  621. Number(b.visitors ? b.visitors.replace(/[^0-9]/gi, "") : "")
  622. )
  623. return 1;
  624. if (
  625. Number(a.visitors ? a.visitors.replace(/[^0-9]/gi, "") : "") >
  626. Number(b.visitors ? b.visitors.replace(/[^0-9]/gi, "") : "")
  627. )
  628. return -1;
  629. return 0;
  630. }
  631. return data.sort(Visitor);
  632. case "Show Dates":
  633. function Date(a, b) {
  634. if (a.startdate.replace(/-/g, "") < b.startdate.replace(/-/g, ""))
  635. return 1;
  636. if (a.startdate.replace(/-/g, "") > b.startdate.replace(/-/g, ""))
  637. return -1;
  638. return 0;
  639. }
  640. return data.sort(Date);
  641. default:
  642. return data;
  643. }
  644. },
  645. sliceRenderList(data) {
  646. return data.slice(
  647. (this.page - 1) * this.perPage,
  648. this.page * this.perPage
  649. );
  650. },
  651. },
  652. };
  653. </script>
  654. <style scoped lang="scss">
  655. .sort-by-text {
  656. max-width: 142px;
  657. >h3 {
  658. border-right: 1px solid #e5e5e5;
  659. }
  660. }
  661. .sort-by-text-sm {
  662. max-width: 112px;
  663. >h3 {
  664. border-right: 1px solid #e5e5e5;
  665. }
  666. }
  667. </style>
  668. <style lang="scss">
  669. .filter-zindex {
  670. z-index: 499 !important;
  671. }
  672. .exhibition-pagination {
  673. .v-pagination {
  674. justify-content: flex-end;
  675. }
  676. .v-pagination__navigation,
  677. .v-pagination__item {
  678. box-shadow: none;
  679. margin: 0;
  680. min-width: 28px;
  681. &.v-pagination__item--active {
  682. color: $primary-orange !important;
  683. }
  684. }
  685. }
  686. .v-breadcrumbs {
  687. padding: 0px;
  688. }
  689. .v-application ul {
  690. padding-left: 0px;
  691. }
  692. </style>