diff --git a/src/app/routes/supply-management/components/bulk/bulk.component.ts b/src/app/routes/supply-management/components/bulk/bulk.component.ts index 23d20bde..4c86d13b 100644 --- a/src/app/routes/supply-management/components/bulk/bulk.component.ts +++ b/src/app/routes/supply-management/components/bulk/bulk.component.ts @@ -272,7 +272,7 @@ export class SupplyManagementBulkComponent implements OnInit { { title: '操作', fixed: 'right', - width: '200px', + width: '110px', className: 'text-left', buttons: [ { @@ -281,7 +281,7 @@ export class SupplyManagementBulkComponent implements OnInit { iif: item => item.auditStatus == 1, }, { - text: '二维码', + text: '二维码 ', click: (_record) => this.assignedQrcode(_record), iif: item => item.auditStatus == 1 || item.auditStatus == 2, }, diff --git a/src/app/routes/vehicle/components/audit/audit.component.ts b/src/app/routes/vehicle/components/audit/audit.component.ts index 0490d625..a742173a 100644 --- a/src/app/routes/vehicle/components/audit/audit.component.ts +++ b/src/app/routes/vehicle/components/audit/audit.component.ts @@ -83,7 +83,7 @@ export class VehicleComponentsAuditComponent implements OnInit { onSearch: (q: any) => { if (!!q) { return this.service - .request(this.service.$api_get_getCarLicenseListByCarNo, { + .request(this.service.$api_get_getCarLicenseListByCarNo_audit, { carNo: q }) .pipe(map((res: any) => (res?.records as any[]).map(i => ({ label: i.carNo, value: i.carNo } as SFSchemaEnum)))) diff --git a/src/app/routes/vehicle/services/vehicle.service.ts b/src/app/routes/vehicle/services/vehicle.service.ts index c02ab5e0..938e65a6 100644 --- a/src/app/routes/vehicle/services/vehicle.service.ts +++ b/src/app/routes/vehicle/services/vehicle.service.ts @@ -1,7 +1,7 @@ /* * @Author: your name * @Date: 2021-11-29 15:22:34 - * @LastEditTime: 2022-01-13 15:56:57 + * @LastEditTime: 2022-01-14 15:02:51 * @LastEditors: Please set LastEditors * @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 @@ -45,8 +45,8 @@ export class VehicleService extends BaseService { $api_get_upLoadCarProtocal= `/api/mdc/cuc/carLicenseAudit/operate/upLoadCarProtocal`; // 根据车牌号查询车辆信息(车辆认证表) - $api_get_getCarLicenseListByCarNo= `/api/mdc/cuc/carLicense/operate/findCarLicenseListByCarNo`; - + $api_get_getCarLicenseListByCarNo= `/api/mdc/cuc/carLicense/findCarLicenseByCarNo`; + // /api/mdc/cuc/carLicense/findCarLicenseByCarNo // 根据车牌号查询车辆信息(车辆审核认证表) $api_get_getCarLicenseListByCarNo_audit= `/api/mdc/cuc/carLicenseAudit/operate/findCarLicenseAuditListByCarNo`;