日期控件加载结束后事件,颜色自己改吧。
"use document";
const style = document.createElement('style');
style.textContent = `
.bi-tip.bi-tooltip {
background-color: #FF9900 !important;
color: #ffffff !important;
border: 1px solid #3a4a5f !important;
border-radius: 4px !important;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4) !important;
}
.bi-tip .bi-text {
color: #ffffff !important;
}
`;
document.head.appendChild(style);--------修改提示的样式--------------------

-------------------------如果想去掉-------------------------
"use document";
const style = document.createElement('style');
style.textContent = `
.bi-tip.bi-tooltip {
display: none !important;
}
`;
document.head.appendChild(style);---------------不会有提示了。。鼠标悬停到2号也没有任何提示了-------------
