|
@@ -44,8 +44,8 @@ class ApplyService extends CrudService {
|
|
|
*/
|
|
|
async checkPath() {
|
|
|
const thisDir = 'apply';
|
|
|
- const { root_path, export_dir } = this.ctx.app.config.export;
|
|
|
- const arr = [ root_path, export_dir, thisDir ];
|
|
|
+ const { root_path, project, export_dir } = this.ctx.app.config.export;
|
|
|
+ const arr = [ root_path, project, export_dir, thisDir ];
|
|
|
let rPath = '';
|
|
|
for (const i of arr) {
|
|
|
rPath = `${rPath}${i}${sep}`;
|