1、先上个图:
2、点击的行的颜色与字体的颜色,并没有随时主题的颜色而改变:
const gridOptions = reactive<BasicTableProps>({
id: 'userTable',
showHeaderOverflow: false,
showOverflow: true,
keepSource: true,
columns: userColumns,
pagerConfig: {
currentPage: 1,
pageSize: 100,
pageSizes: [20, 50, 100, 200, 500, 1000],
},
toolbarConfig: {
slots: { buttons: 'toolbar_buttons' },
refresh: false,
import: false,
print: false,
zoom: false,
export: false,
custom: false,
},
...
rowStyle({ row, rowIndex }) {
if (row.id == currRow.value?.id) {
return {
color: 'white',
backgroundColor: `${unref(getThemeColor)}`,
};
}
},
});
这个getThemeColor是一个computed属性,返回主题的颜色。
rowStyle({ row, rowIndex }) {
if (row.id == currRow.value?.id) {
return {
color: 'white',
backgroundColor: `${unref(getThemeColor)}`,
};
}
},
3、通过上面的设置,我们就可以轻松的发现颜色变了,其中color:选中行字体的颜色,backgroundColor:是选中行的背景颜色。