车辆接口更新

This commit is contained in:
wangshiming
2022-01-14 15:05:31 +08:00
parent b38cf032f8
commit 387c63bdb3
3 changed files with 6 additions and 6 deletions

View File

@ -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,
},

View File

@ -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))))

View File

@ -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`;