return (
<Form
{...formOption}
form={form}
onFinish={handleSearch}
initialValues={initialValues}
>
<FormSelect
label={getLang("付费")}
name={"paymentCategoryTypeId"}
text="value"
value="key"
//allowClear={false}
data={paymentCategoryTypeList}
showSearch={false}
/>
{/*<FormSelect
label={getLang("未归还账单")}
name={"ifHaveUnpaidBillOrder"}
text="value"
value="key"
showSearch={false}
data={ifHaveUnpaidBillSelectItems}
/>*/}
<FormSelect
label={getLang("销售")}
name={"salesUserIds"}
text="value"
value="key"
mode="multiple"
data={salesUsers}
/>
<FormItem>
<Button htmlType="submit" type="primary" loading={loading}>{getLang("查询")}</Button>
</FormItem>
</Form>
)