|
|
|
@ -163,14 +163,15 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
api: () => {
|
|
|
|
|
return new Promise((resolve) => {
|
|
|
|
|
getDictOption('CM_RentDirect').then((res) => {
|
|
|
|
|
let data: any = []
|
|
|
|
|
res.forEach((item) => {
|
|
|
|
|
item.value = parseInt(item.value)
|
|
|
|
|
if (!item.label.indexOf('租入')) {
|
|
|
|
|
data.push(item)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
resolve(data)
|
|
|
|
|
// let data: any = []
|
|
|
|
|
// res.forEach((item) => {
|
|
|
|
|
// item.value = parseInt(item.value)
|
|
|
|
|
// if (!item.label.indexOf('租入')) {
|
|
|
|
|
// data.push(item)
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
// resolve(data)
|
|
|
|
|
resolve(res)
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
@ -184,27 +185,40 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'etd',
|
|
|
|
|
label: 'ETD',
|
|
|
|
|
component: 'DatePicker',
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
defaultValue: '',
|
|
|
|
|
componentProps: {
|
|
|
|
|
showTime: true,
|
|
|
|
|
style: 'width:100%',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'eta',
|
|
|
|
|
label: 'ETA',
|
|
|
|
|
component: 'DatePicker',
|
|
|
|
|
field: 'accdate',
|
|
|
|
|
label: '会计期间',
|
|
|
|
|
component: 'MonthPicker',
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
defaultValue: '',
|
|
|
|
|
// defaultValue: moment(),
|
|
|
|
|
componentProps: {
|
|
|
|
|
showTime: true,
|
|
|
|
|
style: 'width:100%',
|
|
|
|
|
allowClear: true,
|
|
|
|
|
valueFormat: 'YYYY-MM',
|
|
|
|
|
format: 'YYYY-MM',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// field: 'etd',
|
|
|
|
|
// label: 'ETD',
|
|
|
|
|
// component: 'DatePicker',
|
|
|
|
|
// colProps: { span: 4 },
|
|
|
|
|
// defaultValue: '',
|
|
|
|
|
// componentProps: {
|
|
|
|
|
// showTime: true,
|
|
|
|
|
// style: 'width:100%',
|
|
|
|
|
// },
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// field: 'eta',
|
|
|
|
|
// label: 'ETA',
|
|
|
|
|
// component: 'DatePicker',
|
|
|
|
|
// colProps: { span: 4 },
|
|
|
|
|
// defaultValue: '',
|
|
|
|
|
// componentProps: {
|
|
|
|
|
// showTime: true,
|
|
|
|
|
// style: 'width:100%',
|
|
|
|
|
// },
|
|
|
|
|
// },
|
|
|
|
|
]
|
|
|
|
|
export const formSchema: FormSchema[] = [
|
|
|
|
|
{
|
|
|
|
|