diff --git a/src/components/SearchForm.jsx b/src/components/SearchForm.jsx index f1f27a6..6cf8b6e 100644 --- a/src/components/SearchForm.jsx +++ b/src/components/SearchForm.jsx @@ -44,6 +44,7 @@ const SearchForm = ({ initialValue, onSubmit, onReset, onMounted, confirmText, f { key: "endtime", transform: arrVal => (arrVal ? arrVal[1].format(SMALL_DATETIME_FORMAT) : "") }, ], invoiceStatus: { key: "invoiceStatus", transform: value => value?.value || value?.key || "", default: "" }, + invoiceCheckStatus: { key: "invoiceCheckStatus", transform: value => value?.value || value?.key || "", default: "" }, audit_state: { key: "audit_state", transform: value => value?.value || value?.key || "", default: "" }, agency: { key: "agency", @@ -222,6 +223,22 @@ function getFields(props) { , fieldProps?.invoiceStatus?.col || 3 ), + item( + "invoiceCheckStatus", //账单审核状态 + 99, + +