|
@@ -71,7 +71,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'; });
|
|
|
+ return result.filter(item => { return item.type === 'highway' && (item.name === '全国公路(2018)' || item.name === '广东公路(2018)'); });
|
|
|
}
|
|
|
|
|
|
async getProjectList(mobile, compilationId) {
|