// 批量生成所有页面组件 - 第1部分 const fs = require('fs'); const path = require('path'); const b = 'D:/opencode/haoliang/frontend/src/views'; function w(d, f, c) { const p = path.join(b, d, f); fs.writeFileSync(p, c, 'utf8'); console.log('OK: ' + d + '/' + f); } // ==================== 品牌列表 ==================== w('brand', 'BrandListPage.vue', ` `); // ==================== 品牌编辑 ==================== w('brand', 'BrandEditPage.vue', ` `); console.log('Part 1 done: brand pages');