Browse Source

[WHAT] 收藏展覽 [WHY] 開發 ShowEasy 前台

Dev
Janie 2 years ago
parent
commit
207914af8b
  1. 4
      FrontEnd/components/user/userSidebar.vue
  2. 14
      FrontEnd/pages/user/saveExhibition.vue

4
FrontEnd/components/user/userSidebar.vue

@ -2,9 +2,9 @@
<div
class="tw-bg-white tw-rounded-[20px] tw-px-[30px] tw-pt-[30px] tw-pb-[20px] md:tw-px-[40px] md:tw-pt-[40px] xl:tw-pb-[40px] xl:tw-w-[308px]">
<div class="tw-mb-[10px]">
<img v-if="userData.picture"
<img v-if="userData.MemberPicture"
class="tw-border tw-flex tw-border-solid tw-border-neutrals-300 tw-rounded-[50px] tw-mx-auto tw-max-w-[64px] tw-h-[64px]"
:src="userData.picture" />
:src="userData.MemberPicture" />
<div v-else
class="tw-flex tw-justify-center tw-items-center tw-bg-primary-default tw-rounded-[50px] tw-mx-auto tw-w-[64px] tw-h-[64px]">
<span class="tw-text-white tw-font-normal tw-text-[40px] tw-uppercase">{{ lastName.split("")[0] || "" }}</span>

14
FrontEnd/pages/user/saveExhibition.vue

@ -210,7 +210,7 @@ export default {
console.log(error);
});
this.countryFilterList = this.showUserExhibitionList;
this.countryFilterList = this.showUserExhibitionList;
},
mounted() {
this.yearOptions = Array.from(new Array(103), (val, index) =>
@ -390,7 +390,7 @@ export default {
`/trending/api/Favorite/Favorites?Type=Exhibition`
)
.then((response) => {
//console.log(JSON.stringify(response));
console.log(JSON.stringify(response));
if(response && response.data && response.data.DATA && response.data.DATA.rel){
let data = response.data.DATA.rel
if(data){
@ -419,10 +419,10 @@ export default {
async fetchExhibition() {
this.$axios
.get(
`/trending/api/Exhibition/Cards?RegionIDs&CountryIDs&CityIDs&MainCategoryIDs&SubCategoryIDs&Status&Date&Lang=${this.$i18n.localeProperties["langQuery"]}`
`/trending/api/Exhibition/Cards?RegionIDs&CountryIDs&CityIDs&MainCategoryIDs&SubCategoryIDs&Status&Date&Sort&Lang=${this.$i18n.localeProperties["langQuery"]}`
)
.then((response) => {
//console.log(JSON.stringify(response));
console.log(JSON.stringify(response));
if(response && response.data && response.data.DATA && response.data.DATA.rel){
let data = response.data.DATA.rel
if(data){
@ -434,6 +434,8 @@ export default {
}
})
});
this.countryFilterList = JSON.parse(
JSON.stringify(this.showUserExhibitionList));
//Berlin
// this.exhibitionList.forEach((exhib) => {
@ -447,7 +449,11 @@ export default {
// })
};
};
})
.catch((error) => {

Loading…
Cancel
Save