CN-1551 fix: 添加知识库和detection页table的单元格设置

This commit is contained in:
刘洪洪
2024-03-11 15:24:49 +08:00
parent 53f05ac649
commit f58c2af6ce
4 changed files with 35 additions and 7 deletions

View File

@@ -77,8 +77,8 @@
height="156px"
width="100%"
class="dialog-table"
cell-style="padding:4px 0px;font-size: 12px;color: #353636;font-weight: 400;"
header-cell-style="padding:4px 0px;background: #F5F8FA;font-size: 12px;color: #353636;font-weight: 500;">
:cell-style="myCellStyle"
:header-cell-style="myHeaderCellStyle">
<el-table-column
:resizable="false"
align="center"
@@ -121,7 +121,20 @@ export default {
keyWord: '',
showConfirmDialog: false,
delItemList: [],
secondBatchDeleteObjs: []
secondBatchDeleteObjs: [],
myCellStyle: {
padding: '4px 0px',
'font-size': '12px',
color: '#353636',
'font-weight': 400
},
myHeaderCellStyle: {
padding: '4px 0px',
background: '#F5F8FA',
'font-size': '12px',
color: '#353636',
'font-weight': 500
}
}
},
watch: {