update
This commit is contained in:
@@ -628,11 +628,11 @@
|
||||
return;
|
||||
}
|
||||
|
||||
// 过滤掉1520开头的职位代码
|
||||
// 过滤掉152开头的职位代码
|
||||
const codes = listResp.data
|
||||
.map(it => it.zwdm)
|
||||
.filter(code => !code.startsWith('1520'));
|
||||
showMessage('result-message', `共 ${codes.length} 个职位(已跳过1520开头),开始逐条获取...`, 'info');
|
||||
.filter(code => !code.startsWith('152'));
|
||||
showMessage('result-message', `共 ${codes.length} 个职位(已跳过152开头),开始逐条获取...`, 'info');
|
||||
|
||||
// 逐条获取职位详情
|
||||
for (let i = 0; i < codes.length; i++) {
|
||||
|
||||
Reference in New Issue
Block a user