You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
445 B
9 lines
445 B
|
6 days ago
|
// 列出 v29 清单全部 a3-* 页(商机模块全量),核对弹窗页(添加关联客户/写跟进等)去向
|
||
|
|
import fs from 'node:fs';
|
||
|
|
|
||
|
|
const manifest = JSON.parse(fs.readFileSync('e:/code/crm-backend-matt/.scratch/lanhu-latest/axure-v29.json', 'utf8'));
|
||
|
|
const names = Object.keys(manifest.pages ?? {}).filter(n => n.startsWith('a3'));
|
||
|
|
|
||
|
|
for (const n of names.sort()) console.log(n);
|
||
|
|
console.log('--- total a3 pages:', names.length);
|