feature/PMCORE-2545

update
This commit is contained in:
Henry Jordan
2020-12-11 19:36:41 +00:00
parent 58c084bccc
commit 55754b18dd
18 changed files with 227 additions and 347 deletions

View File

@@ -15,7 +15,7 @@
<a href=""
><img
class="mx-auto rounded-circle v-img-fluid"
src="http://demos.themes.guide/bodeo/assets/images/users/m103.jpg"
:src="pathImgOwner"
alt="avatar"
/></a>
</div>
@@ -44,7 +44,7 @@
>
</div>
<button class="btn btn-secondary btn-sm" @click="onClickComment">
<button class="btn btn-success btn-sm" @click="onClickComment">
{{ $t("ID_SEND") }}
</button>
</div>
@@ -68,6 +68,15 @@ export default {
data() {
return {};
},
computed: {
pathImgOwner() {
return (
window.config.SYS_SERVER +
window.config.SYS_URI +
`users/users_ViewPhotoGrid?pUID=${window.config.USR_UID}`
);
},
},
methods: {
classBtn(cls) {
return "btn v-btn-request " + cls;
@@ -91,4 +100,9 @@ export default {
.v-check-comment {
padding-right: 20px;
}
.v-img-fluid {
max-width: 30px;
height: auto;
}
</style>