😎1、调整vxetable边框粗细 2、修复首页时钟显示错误

This commit is contained in:
zuohuaijun 2025-04-07 17:42:30 +08:00
parent c4839bfaf6
commit 52130e4d48
2 changed files with 2 additions and 2 deletions

View File

@ -18,6 +18,7 @@
// --vxe-ui-table-cell-padding-right: 8px; // 10px
--vxe-ui-table-row-current-background-color: var(--el-color-primary-light-9);
--vxe-ui-table-row-hover-current-background-color: var(--el-color-primary-light-9);
--vxe-ui-table-border-width: 1px;
}
.vxe-toolbar {
@ -134,4 +135,3 @@
.vxe-modal--close-btn:hover {
color: red !important;
}

View File

@ -39,7 +39,7 @@ onUnmounted(() => {
const showTime = () => {
time.value = formatDate(new Date(), 'HH:MM:SS');
day.value = formatDate(new Date(), 'YYYY-MM-dd');
day.value = formatDate(new Date(), 'YYYY-mm-dd');
};
</script>