Compare commits

...

3 Commits

Author SHA1 Message Date
LiuJiaNan 9256bf4e8f 1.0.32 2025-10-31 15:40:24 +08:00
LiuJiaNan 349b844113 优化Search 2025-10-31 15:40:17 +08:00
LiuJiaNan 2910073267 1.0.31 2025-10-31 14:26:57 +08:00
3 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
import { DownOutlined, UpOutlined } from "@ant-design/icons"; import { DownOutlined, SearchOutlined, UndoOutlined, UpOutlined } from "@ant-design/icons";
import { Button, Col, Form, Row } from "antd"; import { Button, Col, Form, Row } from "antd";
import { useEffect, useRef, useState } from "react"; import { useEffect, useRef, useState } from "react";
import FormItemsRenderer from "../FormBuilder/FormItemsRenderer"; import FormItemsRenderer from "../FormBuilder/FormItemsRenderer";
@ -87,14 +87,14 @@ const Search = (props) => {
initialValues={values} initialValues={values}
/> />
<Col span={showCollapseButton ? (collapse ? 6 : span) : span}> <Col span={showCollapseButton ? (collapse ? 6 : span) : span}>
<Form.Item label=" " colon={false} style={{ textAlign: "right" }}> <Form.Item label=" " labelCol={{ span: 2 }} colon={false} style={{ textAlign: "right" }}>
{showSearchButton && ( {showSearchButton && (
<Button type="primary" onClick={handleSubmit}> <Button type="primary" icon={<SearchOutlined />} onClick={handleSubmit}>
{searchText} {searchText}
</Button> </Button>
)} )}
{showResetButton && ( {showResetButton && (
<Button style={{ marginLeft: 8 }} onClick={handleReset}> <Button style={{ marginLeft: 8 }} icon={<UndoOutlined />} onClick={handleReset}>
{resetText} {resetText}
</Button> </Button>
)} )}

View File

@ -1,6 +1,6 @@
import { message, Modal } from "antd"; import { message, Modal } from "antd";
import { getFileName, getFileSuffix, getFileUrl } from "../../utils/index.js";
import { useState } from "react"; import { useState } from "react";
import { getFileName, getFileSuffix, getFileUrl } from "../../utils";
/** /**
* 下载文件 * 下载文件

View File

@ -1,7 +1,7 @@
{ {
"name": "zy-react-library", "name": "zy-react-library",
"private": false, "private": false,
"version": "1.0.30", "version": "1.0.32",
"type": "module", "type": "module",
"description": "", "description": "",
"author": "LiuJiaNan", "author": "LiuJiaNan",