|
@ -12,11 +12,15 @@ const schema = { |
|
|
}, |
|
|
}, |
|
|
beginDate: { |
|
|
beginDate: { |
|
|
title: "开始时间", |
|
|
title: "开始时间", |
|
|
type: "DateTime", |
|
|
type: "string", |
|
|
|
|
|
input: "datetime", |
|
|
|
|
|
clearable: true, |
|
|
}, |
|
|
}, |
|
|
endDate: { |
|
|
endDate: { |
|
|
title: "结束时间", |
|
|
title: "结束时间", |
|
|
type: "DateTime", |
|
|
type: "string", |
|
|
|
|
|
input: "datetime", |
|
|
|
|
|
clearable: true, |
|
|
}, |
|
|
}, |
|
|
clientCode: { |
|
|
clientCode: { |
|
|
title: "客户编码", |
|
|
title: "客户编码", |
|
@ -72,6 +76,20 @@ export default function () { |
|
|
}, |
|
|
}, |
|
|
}, |
|
|
}, |
|
|
default: [ |
|
|
default: [ |
|
|
|
|
|
{ |
|
|
|
|
|
logic: "and", |
|
|
|
|
|
column: "beginDate", |
|
|
|
|
|
action: "biggerThanOrEqual", |
|
|
|
|
|
value: null, |
|
|
|
|
|
readOnly: true, |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
logic: "and", |
|
|
|
|
|
column: "endDate", |
|
|
|
|
|
action: "smallThanOrEqual", |
|
|
|
|
|
value: null, |
|
|
|
|
|
readOnly: true, |
|
|
|
|
|
}, |
|
|
{ |
|
|
{ |
|
|
logic: "and", |
|
|
logic: "and", |
|
|
column: "lu", |
|
|
column: "lu", |
|
@ -79,6 +97,13 @@ export default function () { |
|
|
value: null, |
|
|
value: null, |
|
|
readOnly: true, |
|
|
readOnly: true, |
|
|
}, |
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
logic: "and", |
|
|
|
|
|
column: "contractNo", |
|
|
|
|
|
action: "like", |
|
|
|
|
|
value: null, |
|
|
|
|
|
readOnly: true, |
|
|
|
|
|
}, |
|
|
], |
|
|
], |
|
|
}, |
|
|
}, |
|
|
skipCount: { |
|
|
skipCount: { |
|
|