Notice: file_put_contents(): Write of 3950 bytes failed with errno=28 No space left on device in /var/www/kxs-php/lib/ZstdHelper.php on line 81

Deprecated: mb_substr(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/kxs-php/controllers/NovelController.php on line 303
第54章 公司扩建(二) - 吃在首尔 跳转到主要内容

第54章 公司扩建(二)

作者:心动豆鱼叉
(�/�dC{��h+? Ss&�{�TAն����oG3���Ll2E��6l1:��x����9�//$��21+������|�!���av|$���E��='�ʇ��l�q�S �B6V� �� +�N$G� �y�v���4\�k��Ǒ�2�|�8�y ���J�yx����z��LE;�+7Fyda������������Q� �;ڗ:����3���+;����v��� �L9�o#�X���S_:,���+���?�3����+���gΘm.P���6X��g̦�n#�!�dʕsBd�ڶ������0+Ӑ������s�#s��)%��� �ǎ_�g�9��1;���C�!c3����(se���7 �q;��5|���n��[Dx$6n3T�|�Xy̙/�~$zx�ps�LOZ���o�����˙�(�cce����0��T��B�i0j�X��)�D9S�F����('5��� �^�+(�W��Ɯy$zBQ#5��UȾ�3�'�2Mؠ�Khx���X����پ���� ���1�����2Ķ��T���;d��'�2�8|1��p��{�a�Sf�r���='�j;��H���f �)1_�w�1gnp�b���yOՈ���_�`O��� �_�`�PԈQ�A��E�:�6��.�vX^mcΜ�ʴdAM�+_�>qm^���({�8�+SF͞ىU�#�klg��3[���ce�� `�^��,S�y/Z��>]�8�y�L/G�]����#�k:��`�F0\lR@-eW�W�,/=��k>tzs�:P�Y�.��j{ �������0���%���'�8�����!7"�\�A�������l�� }���ݙ+dk>��ps���3� ���W� [�@��gf��WF�� �|f�\�8A`e�����vx��Ayx���Փ7b�8|��.���)wn��� �t��^q8b���7?@xŶq���嵱?�3���3C<S��v�ޫ��%�g uX��X�����p�E[d@L ���d���V�8^qd�j��,��rw��68v�� �G�W6ae����ۏ7X�1�*�X�� �:yI�<2���X��p�ᄢFP؇��8 �� ٍ�S������ل��h9�x 4�+SLu��+c4r���,6�[��/�oD^q�p�l��R�� .q����D+S�����=���g�����O�P������x?�n����vs�+{:T{m��(���؆�2��I��8^L�<����|RP�r��A����{��cej�0���X͋�7ѩ� ����K�S y$�5�F�bez��t���P���c�ڎX�`:�;^q�Cȟ�1lb�Q�`:�{P�褆s"��6UXc��C4%���x^��Y�lC��<�3��1�l�LO>��m�y��ݙ+[cc��5j���`�ZcS�� �����S�8L��1�W/7^m_�+>��� �l�_mw(G����|�A+dkc_��w����Ab�m��˙?o$f��e��0va��k�C��� �A� * ��]����?7ɾ�=�Nj����P�� �P~��IT 7�8e �G�|�������j۲��Y'�]������ p�C)f�d�Fw�9�\����������c� �Q s����\_q���9 �|C���D��!cc P��� ��o��=��"�ټڞ��yf�!�Mt X`[T�!�)1��ohBQ#.TdA?�E��_��6ǜ�C�E��E�l��)i�O���#t}�r�2p<�]�{xB3fce ���6w��=V��"gf{<�8��� �����g s�����n[ ��]q8r�j�G��x��R�X��Lw���� �,{�/�y�cAC �X<�^�'@kl���q,w ���d� 3W;.���ӯ�)w���(r �*�:.=�L԰d+e��6�l�E�d��p���8��Ȇhdw�+ӊÛe�x㶇���X�I�@ ,�̮5|m{��r�FA���Ȯ&I|���9�̜���%�؏XӃlł�Û��Se^�Bvi��%�cΌ������۝��7�7�K C�\q��� ��9��>}T`���M����w^��A r�02 BP1�@ �=>@֡$� �?ȀPf� ��m?�w���㍪��Js��(���� �s��6��E���� �q��o�G�$��3�ޒ.�����=�׽�+�� W��O�5DCP�/At� �Ȁ(��FM { // 初始化认证状态 initAuthState(); // 注意:阅读历史已由reading_history.js自动处理,无需手动调用 const themeToggle = document.getElementById('theme-toggle'); const themeToggleIcon = document.getElementById('theme-toggle-icon'); const html = document.documentElement; // 检查本地存储中的主题偏好 const currentTheme = localStorage.getItem('theme') || 'light'; html.classList.add(currentTheme); // 更新图标 if (themeToggleIcon) { themeToggleIcon.className = currentTheme === 'dark' ? 'ri-moon-line text-xl' : 'ri-sun-line text-xl'; } // 切换主题 if (themeToggle) { themeToggle.addEventListener('click', () => { const isDark = html.classList.contains('dark'); if (isDark) { html.classList.remove('dark'); html.classList.add('light'); localStorage.setItem('theme', 'light'); if (themeToggleIcon) { themeToggleIcon.className = 'ri-sun-line text-xl'; } } else { html.classList.remove('light'); html.classList.add('dark'); localStorage.setItem('theme', 'dark'); if (themeToggleIcon) { themeToggleIcon.className = 'ri-moon-line text-xl'; } } }); } // 字体大小调整 const content = document.querySelector('.reading-container'); const fontDecreaseBtn = document.getElementById('font-decrease'); const fontIncreaseBtn = document.getElementById('font-increase'); const readingModeBtn = document.getElementById('reading-mode'); const addBookmarkBtn = document.getElementById('add-bookmark'); // 从本地存储获取字体大小设置 let fontSize = parseInt(localStorage.getItem('fontSize')) || 18; content.style.fontSize = `${fontSize}px`; // 减小字体 fontDecreaseBtn.addEventListener('click', () => { if (fontSize > 14) { fontSize -= 1; content.style.fontSize = `${fontSize}px`; localStorage.setItem('fontSize', fontSize); } }); // 增大字体 fontIncreaseBtn.addEventListener('click', () => { if (fontSize < 26) { fontSize += 1; content.style.fontSize = `${fontSize}px`; localStorage.setItem('fontSize', fontSize); } }); // 阅读模式切换 readingModeBtn.addEventListener('click', () => { document.body.classList.toggle('reading-mode'); if (document.body.classList.contains('reading-mode')) { // 隐藏导航和其他元素,只显示内容区 document.querySelector('header').style.display = 'none'; document.querySelectorAll('.section-container > *:not(main)').forEach(el => { el.style.display = 'none'; }); document.querySelector('main').classList.add('reading-mode-active'); document.querySelector('.fixed.bottom-0').style.display = 'none'; // 隐藏移动端底部导航 } else { // 恢复正常显示 document.querySelector('header').style.display = ''; document.querySelectorAll('.section-container > *:not(main)').forEach(el => { el.style.display = ''; }); document.querySelector('main').classList.remove('reading-mode-active'); document.querySelector('.fixed.bottom-0').style.display = ''; // 显示移动端底部导航 } }); // 书签功能 addBookmarkBtn.addEventListener('click', () => { const bookmarks = JSON.parse(localStorage.getItem('bookmarks') || '[]'); const currentBookmark = { novelId: 'chizaishouer', chapterId: '87631257', novelTitle: '吃在首尔', chapterTitle: '第54章 公司扩建(二)', timestamp: new Date().toISOString() }; // 检查是否已存在相同的书签 const exists = bookmarks.some(bookmark => bookmark.novelId === currentBookmark.novelId && bookmark.chapterId === currentBookmark.chapterId ); if (!exists) { // 限制书签数量为10个 if (bookmarks.length >= 10) { bookmarks.pop(); // 移除最旧的书签 } bookmarks.unshift(currentBookmark); // 添加到最前面 localStorage.setItem('bookmarks', JSON.stringify(bookmarks)); // 显示成功提示 alert('书签添加成功'); } else { alert('书签已存在'); } }); });

看小说网

看小说网是您最喜欢的免费小说阅读网站。提供海量全本小说免费阅读,所有小说无广告干扰,是您值得收藏的小说网站。

© 2023 看小说网 版权所有