This commit is contained in:
wangshiming
2022-04-26 21:05:25 +08:00
parent f8135db6dc
commit 74786ab680
6 changed files with 33 additions and 18 deletions

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2022-02-24 20:09:49 * @Date : 2022-02-24 20:09:49
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-04-26 20:39:42 * @LastEditTime : 2022-04-26 20:44:56
* @FilePath : \\tms-obc-web\\src\\app\\routes\\partner\\rebate-management\\components\\rebate-setting\\add\\add.component.html * @FilePath : \\tms-obc-web\\src\\app\\routes\\partner\\rebate-management\\components\\rebate-setting\\add\\add.component.html
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
--> -->
@ -23,7 +23,7 @@
<sv-title> 固定结算费率配置</sv-title> <sv-title> 固定结算费率配置</sv-title>
<sv label="固定结算费率"> <sv label="固定结算费率">
<nz-input-number [disabled]="hiden" [(ngModel)]="accountingRate" [nzPrecision]="precision" nzPlaceHolder="请输入"></nz-input-number <nz-input-number [disabled]="hiden" [nzMin]="0" [nzMax]="100" [(ngModel)]="accountingRate" [nzPrecision]="precision" nzPlaceHolder="请输入"></nz-input-number
>&nbsp;%</sv >&nbsp;%</sv
> >

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2022-03-21 09:26:45 * @Date : 2022-03-21 09:26:45
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-04-26 20:42:01 * @LastEditTime : 2022-04-26 20:52:29
* @FilePath : \\tms-obc-web\\src\\app\\routes\\partner\\rebate-management\\components\\rebate-setting\\add\\add.component.ts * @FilePath : \\tms-obc-web\\src\\app\\routes\\partner\\rebate-management\\components\\rebate-setting\\add\\add.component.ts
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
*/ */
@ -145,10 +145,7 @@ export class ParterRebateManageMentAddComponent implements OnInit {
} }
save() { save() {
console.log(this.configName); console.log(this.configName);
if(!this.configName) { if(!this.configName) {
console.log('4444');
this.service.msgSrv.warning('请输入配置名称!'); this.service.msgSrv.warning('请输入配置名称!');
return return
} }
@ -164,6 +161,9 @@ export class ParterRebateManageMentAddComponent implements OnInit {
this.service.msgSrv.warning('请选择合伙人!'); this.service.msgSrv.warning('请选择合伙人!');
return return
} }
this.partnerPeopleList.forEach((element: any) => {
});
const params = { const params = {
accountingRate: this.accountingRate, accountingRate: this.accountingRate,
configName: this.configName, configName: this.configName,

View File

@ -262,10 +262,19 @@ export class VehicleComponentsAuditDetailComponent implements OnInit, OnDestroy
return value; return value;
} }
viewEvaluate(item: any) { viewEvaluate(item: any) {
this.modal.createStatic(VehicleImgViewComponent, { i: item }).subscribe(i => { // this.modal.createStatic(VehicleImgViewComponent, { i: item }).subscribe(i => {
// this.st.reload();
// this.getDetailList();
// });
console.log(item);
const params = {
imgList: [item.carProtocal],
index: 0
};
this.nzImageService.preview([{ src: item.carProtocal}]);
this.st.reload(); this.st.reload();
this.getDetailList(); this.getDetailList();
});
} }
updateEvaluate(item: any) { updateEvaluate(item: any) {
this.modal.createStatic(VehicleComponentsListEditComponent, { i: item }).subscribe(i => { this.modal.createStatic(VehicleComponentsListEditComponent, { i: item }).subscribe(i => {

View File

@ -198,10 +198,14 @@ export class VehicleComponentsListDetailComponent implements OnInit {
*查看评价 *查看评价
*/ */
viewEvaluate(item: any) { viewEvaluate(item: any) {
this.modal.createStatic(VehicleImgViewComponent, { i: item }).subscribe(() => { console.log(item);
this.st.reload(); this.st.reload();
this.getDetailList(); this.getDetailList();
}); const params = {
imgList: [item.carProtocal],
index: 0
};
this.nzImageService.preview([{ src: item.carProtocal}]);
} }
/** /**
*查看评价 *查看评价

View File

@ -61,7 +61,7 @@ export class VehicleComponentsListEditComponent implements OnInit {
title: '车主申明/挂靠协议', title: '车主申明/挂靠协议',
ui: { ui: {
widget: 'upload', widget: 'upload',
action: apiConf.fileUpload, action: apiConf.waterFileUpload,
fileType: 'image/png,image/jpeg,image/jpg,image/gif', fileType: 'image/png,image/jpeg,image/jpg,image/gif',
limit: 1, limit: 1,
limitFileCount: 1, limitFileCount: 1,
@ -110,8 +110,10 @@ export class VehicleComponentsListEditComponent implements OnInit {
this.modal.destroy(); this.modal.destroy();
} }
sure() { sure() {
console.log(this.sf.value);
const params ={ const params ={
carProtocal: this.sf.value.carProtocal?.data?.fullFilePath, carProtocal: this.sf.value.carProtocal,
id: this.i.id id: this.i.id
} }
this.service.request(this.service.$api_get_upLoadCarProtocal, params).subscribe((res) => { this.service.request(this.service.$api_get_upLoadCarProtocal, params).subscribe((res) => {

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2022-01-25 20:18:52 * @Date : 2022-01-25 20:18:52
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-04-26 16:58:41 * @LastEditTime : 2022-04-26 20:46:19
* @FilePath : \\tms-obc-web\\src\\app\\shared\\components\\rebate-table\\rebate-table.component.html * @FilePath : \\tms-obc-web\\src\\app\\shared\\components\\rebate-table\\rebate-table.component.html
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
--> -->
@ -48,7 +48,7 @@
<td nzWidth="160px" nzAlign="center" > <td nzWidth="160px" nzAlign="center" >
<div > <div >
<nz-input-group nzPrefix="=" > <nz-input-group nzPrefix="=" >
<nz-input-number nzPrefix="=" [(ngModel)]="item.startAmount" [nzMin]="0" nzSize="small" (ngModelChange)="changeendAmount($event,i)" <nz-input-number nzPrefix="=" [(ngModel)]="item.startAmount" [nzMin]="0" [nzMax]="99999999"nzSize="small" (ngModelChange)="changeendAmount($event,i)"
> >
</nz-input-number> </nz-input-number>
</nz-input-group> </nz-input-group>
@ -58,7 +58,7 @@
<td nzWidth="160px" nzAlign="center" > <td nzWidth="160px" nzAlign="center" >
<div > <div >
<nz-input-group nzPrefix=""> <nz-input-group nzPrefix="">
<nz-input-number [(ngModel)]="item.endAmount" [nzMin]="0" nzSize="small" > <nz-input-number [(ngModel)]="item.endAmount" [nzMin]="0" [nzMax]="99999999" nzSize="small" >
</nz-input-number> </nz-input-number>
</nz-input-group> </nz-input-group>
</div> </div>
@ -66,7 +66,7 @@
<td nzWidth="160px" nzAlign="center" > <td nzWidth="160px" nzAlign="center" >
<div > <div >
<nz-input-group [nzAddOnAfter]="addOnAfterTemplate2"> <nz-input-group [nzAddOnAfter]="addOnAfterTemplate2">
<nz-input-number [(ngModel)]="item.managementFeeRatio" [nzMin]="0" nzSize="small" <nz-input-number [(ngModel)]="item.managementFeeRatio" [nzMin]="0" [nzMax]="100"nzSize="small"
> >
</nz-input-number> </nz-input-number>
</nz-input-group> </nz-input-group>