fix
This commit is contained in:
@@ -341,7 +341,7 @@ export default function TaskForm() {
|
||||
<Select
|
||||
mode="multiple"
|
||||
placeholder="请选择客户"
|
||||
className="rounded-md hover:border-blue-400 focus:border-blue-500"
|
||||
className=" hover:border-blue-400 focus:border-blue-500"
|
||||
showSearch
|
||||
optionFilterProp="children"
|
||||
filterOption={(input, option) =>
|
||||
@@ -363,7 +363,7 @@ export default function TaskForm() {
|
||||
allowClear
|
||||
loading={loadingUnits}
|
||||
placeholder="请选择任务状态"
|
||||
className="rounded-md hover:border-blue-400 focus:border-blue-500"
|
||||
className=" hover:border-blue-400 focus:border-blue-500"
|
||||
options={units.map((unit) => ({
|
||||
label: unit.attributes.name,
|
||||
value: unit.attributes.name,
|
||||
@@ -377,7 +377,7 @@ export default function TaskForm() {
|
||||
rules={[{ required: true, message: "请选择时间范围" }]}
|
||||
>
|
||||
<DatePicker.RangePicker
|
||||
className="w-full rounded-md hover:border-blue-400 focus:border-blue-500"
|
||||
className="w-full hover:border-blue-400 focus:border-blue-500"
|
||||
format="YYYY-MM-DD"
|
||||
onChange={(dates) => {
|
||||
if (dates) {
|
||||
|
||||
Reference in New Issue
Block a user