车辆接口更新
This commit is contained in:
@ -147,7 +147,7 @@ export class ReceivableOrderDetailComponent implements OnInit {
|
|||||||
// { title: '费用类型', index: 'cnoName', width: 90 },
|
// { title: '费用类型', index: 'cnoName', width: 90 },
|
||||||
// { title: '订单费用科目', index: 'feeSubId', width: 100 },
|
// { title: '订单费用科目', index: 'feeSubId', width: 100 },
|
||||||
{ title: '费用科目', index: 'feeSubId', width: 140 },
|
{ title: '费用科目', index: 'feeSubId', width: 140 },
|
||||||
{ title: '结算客户', index: 'cno', width: 100 },
|
{ title: '结算客户', index: 'cnoName', width: 100 },
|
||||||
{
|
{
|
||||||
title: '已收金额',
|
title: '已收金额',
|
||||||
index: 'ahxmoney',
|
index: 'ahxmoney',
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
* @Author : Shiming
|
* @Author : Shiming
|
||||||
* @Date : 2022-01-12 10:52:50
|
* @Date : 2022-01-12 10:52:50
|
||||||
* @LastEditors : Shiming
|
* @LastEditors : Shiming
|
||||||
* @LastEditTime : 2022-01-25 20:01:20
|
* @LastEditTime : 2022-01-26 11:08:44
|
||||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\insurance-management\\components\\list\\list.component.html
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\insurance-management\\components\\list\\list.component.html
|
||||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||||
-->
|
-->
|
||||||
@ -105,7 +105,7 @@
|
|||||||
|
|
||||||
<ng-template #extraTemplate>
|
<ng-template #extraTemplate>
|
||||||
<div>
|
<div>
|
||||||
<button nz-button nzType="primary" >
|
<button nz-button nzType="primary" (click)="changeOrder()">
|
||||||
保险配置
|
保险配置
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -442,7 +442,7 @@ export class insuranceManagementListComponent implements OnInit {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: '退保费',
|
text: '退保费',
|
||||||
click: _record => this.changeOrder(_record),
|
click: _record => this.changeOrder(),
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -472,7 +472,7 @@ export class insuranceManagementListComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 修改订单
|
// 修改订单
|
||||||
changeOrder(value: any) {
|
changeOrder() {
|
||||||
this.router.navigate(['/insurance-management/list-set', value.id]);
|
this.router.navigate(['/insurance-management/list-set', 1]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -16,5 +16,5 @@
|
|||||||
</ng-template>
|
</ng-template>
|
||||||
</page-header-wrapper>
|
</page-header-wrapper>
|
||||||
<nz-card>
|
<nz-card>
|
||||||
<!-- <app-insurance-table></app-insurance-table> -->
|
<app-insurance-table></app-insurance-table>
|
||||||
</nz-card>
|
</nz-card>
|
||||||
|
|||||||
@ -16,7 +16,8 @@ import { insuranceManagementSetComponent } from './components/set/set.component'
|
|||||||
import { InsuranceManagementRoutingModule } from './insurance-management-routing.module';
|
import { InsuranceManagementRoutingModule } from './insurance-management-routing.module';
|
||||||
const COMPONENTS: Type<void>[] = [
|
const COMPONENTS: Type<void>[] = [
|
||||||
insuranceManagementListComponent,
|
insuranceManagementListComponent,
|
||||||
insuranceManagementSetComponent
|
insuranceManagementSetComponent,
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
|
|||||||
@ -4,9 +4,10 @@
|
|||||||
* @Author : Shiming
|
* @Author : Shiming
|
||||||
* @Date : 2022-01-25 20:20:07
|
* @Date : 2022-01-25 20:20:07
|
||||||
* @LastEditors : Shiming
|
* @LastEditors : Shiming
|
||||||
* @LastEditTime : 2022-01-25 20:28:47
|
* @LastEditTime : 2022-01-26 11:05:44
|
||||||
* @FilePath : \\tms-obc-web\\src\\app\\shared\\components\\insurance-table\\index.ts
|
* @FilePath : \\tms-obc-web\\src\\app\\shared\\components\\insurance-table\\index.ts
|
||||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||||
*/
|
*/
|
||||||
export * from './insurance-table.module'
|
export * from './insurance-table.module'
|
||||||
export * from './insurance-table.service'
|
export * from './insurance-table.service'
|
||||||
|
export * from './insurance-table.component'
|
||||||
@ -1,3 +1,13 @@
|
|||||||
|
/*
|
||||||
|
* @Description :
|
||||||
|
* @Version : 1.0
|
||||||
|
* @Author : Shiming
|
||||||
|
* @Date : 2022-01-13 15:10:17
|
||||||
|
* @LastEditors : Shiming
|
||||||
|
* @LastEditTime : 2022-01-26 11:07:31
|
||||||
|
* @FilePath : \\tms-obc-web\\src\\app\\shared\\shared.module.ts
|
||||||
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||||
|
*/
|
||||||
/* eslint-disable import/order */
|
/* eslint-disable import/order */
|
||||||
import { CommonModule } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
@ -27,6 +37,7 @@ import { ImageListModule } from './components/imagelist';
|
|||||||
import { DictSelectComponent } from './components/dict-select';
|
import { DictSelectComponent } from './components/dict-select';
|
||||||
import { PipeModule } from './pipes';
|
import { PipeModule } from './pipes';
|
||||||
import { AccountDetailComponent } from './components/account-detail/account-detail.component';
|
import { AccountDetailComponent } from './components/account-detail/account-detail.component';
|
||||||
|
import { InsuranceTableModule } from './components/insurance-table';
|
||||||
|
|
||||||
const MODULES = [
|
const MODULES = [
|
||||||
AddressModule,
|
AddressModule,
|
||||||
@ -41,6 +52,7 @@ const MODULES = [
|
|||||||
AmapModule,
|
AmapModule,
|
||||||
ImageListModule,
|
ImageListModule,
|
||||||
PipeModule,
|
PipeModule,
|
||||||
|
InsuranceTableModule,
|
||||||
...PRO_SHARED_MODULES
|
...PRO_SHARED_MODULES
|
||||||
];
|
];
|
||||||
// #endregion
|
// #endregion
|
||||||
|
|||||||
Reference in New Issue
Block a user