对6楼消息做出反馈的用户

全部 (1) 点赞 点赞 (1)

    1. 点赞

      李天yuyu

      • 帖子
        17
      • 反馈评分
        3
      • 点数
        2
  • 正在加载…
// 移动端隐藏电脑版搜索 function hideDesktopSearchBar() { document.querySelectorAll('.uix_searchBarInner').forEach(el => { el.style.display = 'none'; }); } // 电脑端显示电脑版搜索 function showDesktopSearchBar() { document.querySelectorAll('.uix_searchBarInner').forEach(el => { el.style.display = ''; }); }