diff --git a/src/app/routes/usercenter/components/driver/driver-config/driver-config.component.ts b/src/app/routes/usercenter/components/driver/driver-config/driver-config.component.ts index 3ae0c418..66161971 100644 --- a/src/app/routes/usercenter/components/driver/driver-config/driver-config.component.ts +++ b/src/app/routes/usercenter/components/driver/driver-config/driver-config.component.ts @@ -62,7 +62,7 @@ export class UserCenterComponentsDriverConfigComponent implements OnInit { exportList() { const params = this.reqParams; - this.service.downloadFile(this.service.$api_export_driver_cap, { ...params, pageSize: -1 }); + this.service.downloadFile(this.service.$api_driver_exportConfig, { ...params, pageSize: -1 }); } private initSF(): SFSchema { diff --git a/src/app/routes/usercenter/services/usercenter.service.ts b/src/app/routes/usercenter/services/usercenter.service.ts index 6bd733d5..db00ea06 100644 --- a/src/app/routes/usercenter/services/usercenter.service.ts +++ b/src/app/routes/usercenter/services/usercenter.service.ts @@ -1,7 +1,7 @@ /* * @Author: your name * @Date: 2021-11-29 15:22:34 - * @LastEditTime : 2022-02-18 11:15:16 + * @LastEditTime : 2022-04-09 14:54:17 * @LastEditors : Shiming * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @FilePath : \\tms-obc-web\\src\\app\\routes\\usercenter\\services\\usercenter.service.ts @@ -111,6 +111,8 @@ export class UsermanageService extends ShipperBaseService { $api_export_driver = '/api/mdc/cuc/driver/export'; // 车队长导出-运营后台 $api_export_driver_cap = '/api/mdc/userDriverExpand/export'; + // 司机配置列表导出-运营后台 + $api_driver_exportConfig = '/api/mdc/cuc/driver/exportConfig'; // 营业执照识别 $api_ocr_recognize_business_license = '/api/mdc/pbc/hwc/ocr/recognizeBusinessLicense';