HowardZhangdqs's picture
feat: add url param for date configure
7e54de1
raw
history blame
639 Bytes
function showDetail(paperId) {
// ιšθ— smartflow-paper-paperId ηš„ζ‰€ζœ‰ε…„εΌŸθŠ‚η‚Ή
var siblings = document.querySelectorAll(`div[id^='smartflow-paper-']:not(#smartflow-paper-${paperId.replace('.', '-')})`);
siblings.forEach(sibling => sibling.style.display = 'none');
// ζ˜Ύη€Ίε½“ε‰θŠ‚η‚Ή
var paper = document.getElementById(`smartflow-paper-${paperId.replace('.', '-')}`);
if (paper) {
paper.style.display = 'block';
}
document.getElementById("paper-detail-area").style.display = "block";
document.getElementById("paper-detail-area").scrollIntoView({
behavior: 'smooth'
});
}