Merge pull request #109 from dderbentsov/UC-51
Поправила таблицу клиентов при скролле
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
.wrapper-table.relative.flex.flex-col.gap-y-8.px-6.py-6.h-full.w-full
|
.wrapper-table.relative.flex.flex-col.gap-y-8.px-6.py-6.h-full.w-full
|
||||||
base-client-form-create.right-0(v-if="isOpenFormCreate" :close-form="closeFormCreateClient")
|
base-client-form-create.right-0(v-if="isOpenFormCreate" :close-form="closeFormCreateClient")
|
||||||
clients-table-hat(:is-open-actions="marked.length" :open-form-create="openFormCreateClient")
|
clients-table-hat(:is-open-actions="marked.length" :open-form-create="openFormCreateClient")
|
||||||
.flex.flex-col.h-full.gap-y-2.table-container
|
.flex.flex-col.h-full.gap-y-2.table-container.w-full
|
||||||
clients-table-header(:check="selectedCheck" :is-check="selectAll")
|
clients-table-header(:check="selectedCheck" :is-check="selectAll")
|
||||||
.flex.flex-col
|
.flex.flex-col
|
||||||
clients-table-row(
|
clients-table-row(
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
.flex.row.text-base.font-semibold.min-w-fit
|
.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'")
|
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'" )
|
.icon-down-arrow.icon.text-xsm.cursor-pointer(v-if="cell.iconHead && cell.name !== 'fullName'" )
|
||||||
.icon-sort-number.cursor-pointer.text-xs.icon(v-if="cell.iconHead && cell.name === 'fullName'")
|
.icon-sort-number.cursor-pointer.text-xs.icon(v-if="cell.iconHead && cell.name === 'fullName'")
|
||||||
@@ -30,6 +30,7 @@ export default {
|
|||||||
min-height: 36px
|
min-height: 36px
|
||||||
color: var(--font-grey-color)
|
color: var(--font-grey-color)
|
||||||
border-bottom: 1px solid var(--border-light-grey-color)
|
border-bottom: 1px solid var(--border-light-grey-color)
|
||||||
|
min-width: 1556px
|
||||||
.icon
|
.icon
|
||||||
color: var(--font-dark-blue-color)
|
color: var(--font-dark-blue-color)
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
.row-wrapper.flex.flex-col.w-full.min-w-fit
|
.row-wrapper.flex.flex-col.w-full
|
||||||
.row-body.flex.w-full.cursor-pointer(:id="id" @dblclick="(e) => openDetailInfo(e)")
|
.row-body.flex.w-full.cursor-pointer(:id="id" @dblclick="(e) => openDetailInfo(e)")
|
||||||
.check-box.flex.justify-center.items-center
|
.check-box.flex.justify-center.items-center
|
||||||
clients-table-checkbox(:id="id" :check="check" :is-check="isCheck")
|
clients-table-checkbox(:id="id" :check="check" :is-check="isCheck")
|
||||||
@@ -240,6 +240,7 @@ export default {
|
|||||||
<style lang="sass" scoped>
|
<style lang="sass" scoped>
|
||||||
.row-wrapper
|
.row-wrapper
|
||||||
border-bottom: 1px solid #D3D4DC
|
border-bottom: 1px solid #D3D4DC
|
||||||
|
min-width: 1556px
|
||||||
.row-body
|
.row-body
|
||||||
color: var(--font-dark-blue-color)
|
color: var(--font-dark-blue-color)
|
||||||
min-height: 56px
|
min-height: 56px
|
||||||
|
|||||||
Reference in New Issue
Block a user