Merge pull request #203 from dderbentsov/UC-155

Добавил подтягивание аватара юзера
This commit is contained in:
frontgavrilin
2022-12-15 12:11:38 +03:00
committed by GitHub
2 changed files with 22 additions and 28 deletions

View File

@@ -24,9 +24,9 @@
button.header-buttons.flex.justify-center.items-center.mr-8.p-0
.icon-bell.text-xxl
.flex.justify-centflexer.items-center.relative
//- base-avatar.mr-2(:size="36", :color="userData.color", v-if="!userData.photo") {{changeName}}
//- base-avatar.mr-2(:size="32", v-else)
//- img.h-full.object-cover(:src="url + userData.photo", alt="Avatar")
base-avatar.mr-2(:size="36", :color="userData?.color", v-if="!userData?.photo") {{changeName}}
base-avatar.mr-2(:size="32", v-else)
img.h-full.object-cover(:src="url + userData?.photo", alt="Avatar")
button.header-buttons(@click="openPopup")
.icon-down-arrow.text-xxs.flex.justify-center.items-center.p-0
base-popup.right-2.top-10(
@@ -76,9 +76,9 @@ export default {
},
computed: {
changeName() {
return `${this.userData.last_name || ""} ${
this.userData.first_name || ""
} ${this.userData.patronymic || ""}`;
return `${this.userData?.last_name || ""} ${
this.userData?.first_name || ""
} ${this.userData?.patronymic || ""}`;
},
},
methods: {