车辆接口更新
This commit is contained in:
@ -272,7 +272,7 @@ export class SupplyManagementBulkComponent implements OnInit {
|
|||||||
{
|
{
|
||||||
title: '操作',
|
title: '操作',
|
||||||
fixed: 'right',
|
fixed: 'right',
|
||||||
width: '200px',
|
width: '110px',
|
||||||
className: 'text-left',
|
className: 'text-left',
|
||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
@ -281,7 +281,7 @@ export class SupplyManagementBulkComponent implements OnInit {
|
|||||||
iif: item => item.auditStatus == 1,
|
iif: item => item.auditStatus == 1,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: '二维码',
|
text: '二维码 ',
|
||||||
click: (_record) => this.assignedQrcode(_record),
|
click: (_record) => this.assignedQrcode(_record),
|
||||||
iif: item => item.auditStatus == 1 || item.auditStatus == 2,
|
iif: item => item.auditStatus == 1 || item.auditStatus == 2,
|
||||||
},
|
},
|
||||||
|
|||||||
@ -83,7 +83,7 @@ export class VehicleComponentsAuditComponent implements OnInit {
|
|||||||
onSearch: (q: any) => {
|
onSearch: (q: any) => {
|
||||||
if (!!q) {
|
if (!!q) {
|
||||||
return this.service
|
return this.service
|
||||||
.request(this.service.$api_get_getCarLicenseListByCarNo, {
|
.request(this.service.$api_get_getCarLicenseListByCarNo_audit, {
|
||||||
carNo: q
|
carNo: q
|
||||||
})
|
})
|
||||||
.pipe(map((res: any) => (res?.records as any[]).map(i => ({ label: i.carNo, value: i.carNo } as SFSchemaEnum))))
|
.pipe(map((res: any) => (res?.records as any[]).map(i => ({ label: i.carNo, value: i.carNo } as SFSchemaEnum))))
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: your name
|
* @Author: your name
|
||||||
* @Date: 2021-11-29 15:22:34
|
* @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
|
* @LastEditors: Please set LastEditors
|
||||||
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
* @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
|
* @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_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`;
|
$api_get_getCarLicenseListByCarNo_audit= `/api/mdc/cuc/carLicenseAudit/operate/findCarLicenseAuditListByCarNo`;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user