Browse Source

大司空编办筛选调整

MaiXinRong 3 months ago
parent
commit
f7f5cdae99
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/lib/dsk.js

+ 1 - 1
app/lib/dsk.js

@@ -75,7 +75,7 @@ class DSK {
         const url = this.url + 'api/compilation/external/list';
         const postData = {};
         const result = this.dealWith(await this.ctx.helper.sendRequest(url, postData, 'GET', 'json', true));
-        return result.filter(item => { return item.type === 'highway' && validName.indexOf(item.name) >= 0; });
+        return result.filter(item => { return validName.indexOf(item.name) >= 0; });
     }
 
     async getProjectList(mobile, compilationId) {