This commit is contained in:
liamzi
2024-12-31 14:25:51 +08:00
parent 0ec46f2fbe
commit 73f8033183
5 changed files with 34 additions and 80 deletions

View File

@@ -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) {