车辆对接
This commit is contained in:
@ -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 },
|
||||
|
||||
Reference in New Issue
Block a user