车辆接口更新

This commit is contained in:
wangshiming
2022-01-20 16:34:32 +08:00
parent 60544b8896
commit 440c8d38dc
2 changed files with 3 additions and 2 deletions

View File

@ -235,7 +235,7 @@ export class PaymentOrderComponent implements OnInit {
width: 120,
type: 'widget',
className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.paymoney }) }
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.payMoney }) }
},
{ title: '付款类型', index: 'payTypeLabel', width: 130 },
{ title: '付款方式', index: 'payModeLabel', width: 130 },

View File

@ -6,6 +6,7 @@ import { NzModalService } from 'ng-zorro-antd/modal';
import { of } from 'rxjs';
import { map } from 'rxjs/operators';
import { SystemService } from '../../services/system.service';
import { environment } from '@env/environment';
@Component({
selector: 'app-sys-setting-components-announcement-message',
@ -125,7 +126,7 @@ export class AnnouncementMessageComponent implements OnInit {
type: 'string',
title: '发布平台',
enum: [
{ label: '运营后台', value: 1 },
{ label: '运营后台', value: environment.appId },
{ label: '货主后台', value: 2 },
{ label: '司机端', value: 3 }
],