初始化多多畅职企业内推平台项目
功能特性: - 3D地球动画与中国地图可视化 - 省份/城市/企业搜索功能 - 308家企业数据展示 - 响应式设计(PC端和移动端) - 企业详情页面与业务板块展示 - 官网新闻轮播图 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
13
scripts/checkLines783_788.js
Normal file
13
scripts/checkLines783_788.js
Normal file
@@ -0,0 +1,13 @@
|
||||
const fs = require('fs');
|
||||
|
||||
const content = fs.readFileSync('公司介绍.csv', 'utf-8');
|
||||
const lines = content.split('\n');
|
||||
|
||||
console.log('第783-788行内容分析:\n');
|
||||
|
||||
for (let i = 782; i <= 787; i++) {
|
||||
const line = lines[i];
|
||||
console.log(`\n第${i+1}行 (长度: ${line.length}):`);
|
||||
console.log(line.substring(0, 200) + '...');
|
||||
console.log('末尾100字符:', line.substring(line.length - 100));
|
||||
}
|
||||
Reference in New Issue
Block a user