qinzexin dfa22b1804 团市委后台样式调整和
文章分类控制显示隐藏
2025-06-07 15:40:51 +08:00

18 lines
437 B
JavaScript

/*require.config({
paths: {
},
shim: {
}
});*/
require([], function (undefined) {
// 后台切换主题,先直接刷新
if (Config.modulename == 'admin' && Config.controllername == 'index' && Config.actionname == 'index') {
$('.skin-list .clearfix.full-opacity-hover').on('click', function () {
setTimeout(() => {
location.reload();
}, 100)
})
}
});