|
|
@@ -274,6 +274,15 @@ $(document).ready(() => {
|
|
|
$('#nav_tender').attr('href', item.path)
|
|
|
});
|
|
|
});
|
|
|
+
|
|
|
+ const $activeItem = $('.list-group-item.active');
|
|
|
+ if ($activeItem.length) {
|
|
|
+ const $scrollContainer = $activeItem.closest('.col-3');
|
|
|
+ const scrollTop = $activeItem.offset().top - $scrollContainer.offset().top + $scrollContainer.scrollTop();
|
|
|
+ $scrollContainer.animate({ scrollTop: scrollTop }, 100);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
// 设置页显示数目
|
|
|
$('.nav-tabs .nav-link').each(function () {
|
|
|
const pageSize = getLocalCache('account-pageSize') ? getLocalCache('account-pageSize') : '';
|