[update] 修改评分表单元格高度

This commit is contained in:
lideqin
2024-03-04 13:47:40 +08:00
parent 251611055e
commit 5c2e84d42d
3 changed files with 22 additions and 2 deletions
@@ -19,6 +19,7 @@
<div class="right-wrapper">
<a-table
bordered
size="middle"
:scroll="{x: '100%'}"
:columns="columns"
:dataSource="dataSource"
@@ -393,4 +394,10 @@ export default {
}
}
/deep/ .ant-table-body {
td {
padding: 8px !important;
}
}
</style>
@@ -19,6 +19,7 @@
<div class="right-wrapper">
<a-table
bordered
size="middle"
:scroll="{x: '100%'}"
:columns="columns"
:dataSource="dataSource"
@@ -393,4 +394,10 @@ export default {
}
}
/deep/ .ant-table-body {
td {
padding: 8px !important;
}
}
</style>
@@ -17,6 +17,7 @@
</div>
<a-table
bordered
size="middle"
:scroll="{x: '100%'}"
:columns="columns"
:dataSource="dataSource"
@@ -226,7 +227,7 @@ export default {
{
title: this.$t('enterpriseStandardLibrary.reviewMeeting.score'),
align: 'center',
width: 100,
width: 110,
dataIndex: 'score',
colSpan: 2,
customRender: (text, row, index) => {
@@ -243,7 +244,7 @@ export default {
{
title: this.$t('enterpriseStandardLibrary.reviewMeeting.score'),
align: 'center',
width: 100,
width: 110,
dataIndex: 'scoreRange',
colSpan: 0,
customRender: (text, row, index) => {
@@ -430,4 +431,9 @@ export default {
height: 100%;
}
}
/deep/ .ant-table-body {
td {
padding: 8px !important;
}
}
</style>