This commit is contained in:
Taric Xin
2022-03-24 09:08:53 +08:00
parent 50fcebb09a
commit 559ba3955c

View File

@ -35,7 +35,7 @@ export class TransactionFlowComponent {
Object.assign(requestOptions.body, {
...this.sf.value,
createTime: {
start: this.sf.value.tcreateTimeime?.[0] || '',
start: this.sf.value.createTime?.[0] || '',
end: this.sf.value.createTime?.[1] || ''
}
});
@ -120,9 +120,9 @@ export class TransactionFlowComponent {
type: 'string',
title: '收支类型',
enum: [
{ label: '全部', value: '' },
{ label: '收入', value: 1 },
{ label: '支出', value: 2 }
{ label: '全部', value: '' },
{ label: '收入', value: 2 },
{ label: '支出', value: 1 }
],
ui: {
widget: 'select',