Создал компонент отображения детальной информации, конфиг для него и добавил данные в мок

This commit is contained in:
DwCay
2022-10-20 23:52:48 +03:00
parent 96b071294d
commit 7f03de6155
7 changed files with 290 additions and 49 deletions

View File

@@ -2,7 +2,7 @@
.flex.row.text-base.font-semibold
clients-table-cell-header(v-for="cell in columnHead" :title="cell.title" :width="cell.width" :class="!cell.title && 'px-3'")
.icon-down-arrow.icon.text-xsm.cursor-pointer(v-if="cell.iconHead && cell.name !== 'fullName'" )
img.cursor-pointer(v-if="cell.iconHead && cell.name === 'fullName'" src="@/assets/icons/sort-number.svg" alt="SortNumber")
.icon-sort-number.cursor-pointer.text-xs.icon(v-if="cell.iconHead && cell.name === 'fullName'")
clients-table-checkbox(v-if="cell.name === 'checkbox'" :id="cell.name" :check="check" :is-check="isCheck")
</template>