车辆对接

This commit is contained in:
wangshiming
2022-01-13 19:22:42 +08:00
parent 03af0d2dfb
commit 8bab2011fd
5 changed files with 68 additions and 99 deletions

View File

@ -505,8 +505,10 @@ export class SupplyManagementReleasePublishComponent implements OnInit {
title: '预付',
default: 0,
minimum: 0,
maximum: 999999,
ui: {
prefix: '¥',
widgetWidth: 300,
change: _args => this.payChange()
} as SFNumberWidgetSchema
},
@ -514,22 +516,37 @@ export class SupplyManagementReleasePublishComponent implements OnInit {
type: 'number',
title: '到付',
minimum: 0,
maximum: 999999,
default: 0,
ui: { prefix: '¥', change: _args => this.payChange() } as SFNumberWidgetSchema
ui: {
prefix: '¥',
widgetWidth: 300,
change: _args => this.payChange()
} as SFNumberWidgetSchema
},
oilCardPay: {
type: 'number',
title: '油卡',
maximum: 999999,
minimum: 0,
default: 0,
ui: { prefix: '¥', change: _args => this.payChange() } as SFNumberWidgetSchema
ui: {
prefix: '¥',
widgetWidth: 300,
change: _args => this.payChange()
} as SFNumberWidgetSchema
},
receiptPay: {
type: 'number',
title: '回单付',
maximum: 999999,
minimum: 0,
default: 0,
ui: { prefix: '¥', change: _args => this.payChange() } as SFNumberWidgetSchema
ui: {
prefix: '¥',
widgetWidth: 300,
change: _args => this.payChange()
} as SFNumberWidgetSchema
},
subtotal: { type: 'number', title: '小计', default: 0, ui: { widget: 'custom' } as SFNumberWidgetSchema },
appendFee: { type: 'number', title: '附加费', default: 0, ui: { widget: 'custom' } as SFNumberWidgetSchema },