fix: ย้ายรหัสสาขาไปแสดงก่อนชื่อ

This commit is contained in:
Net 2024-06-17 15:44:03 +07:00
parent ee3b2b1e5e
commit abc052f71f

View file

@ -100,8 +100,14 @@ function reset() {
/> />
</div> </div>
<div class="col text-subtitle1 text-weight-bold text-center"> <div class="col text-weight-bold text-center">
<text v-if="category" class="app-text-muted">{{ category }} /</text> <text
v-if="badgeLabel"
class="badge-label text-caption text-grey-8"
>
{{ badgeLabel }}
</text>
<text v-if="category" class="app-text-muted">{{ category }}</text>
{{ title }} {{ title }}
<text <text
@ -117,13 +123,6 @@ function reset() {
: $t('statusACTIVE') : $t('statusACTIVE')
}} }}
</text> </text>
<text
v-if="badgeLabel"
class="badge-label q-px-sm text-caption"
:class="badgeClass"
>
{{ badgeLabel }}
</text>
</div> </div>
<div style="width: 31.98px"></div> <div style="width: 31.98px"></div>
@ -238,8 +237,6 @@ function reset() {
.badge-label { .badge-label {
display: inline-block; display: inline-block;
border-radius: var(--radius-6);
background-color: var(--surface-2);
text-wrap: nowrap; text-wrap: nowrap;
} }
</style> </style>