handle download poster and qrcode, fix to show timestamp, add pagination to doctors page

This commit is contained in:
ehsan
2025-10-02 02:52:26 +03:30
parent 645da72002
commit e1510b142b
21 changed files with 394 additions and 154 deletions
+3 -1
View File
@@ -13,6 +13,7 @@ import { request } from "@/services/response";
function SearchBar({
state,
limit,
setPage,
selected,
specialties,
setSelected,
@@ -63,6 +64,7 @@ function SearchBar({
limit={limit}
state={state}
setOpen={setOpen}
setPage={setPage}
selected={selected}
filterData={filterData}
setSelected={setSelected}
@@ -71,9 +73,9 @@ function SearchBar({
</ModalSearchCity>
<AutoSearch
data={specialties}
inputValue={selected.specialty}
placeholder="جستجوی تخصص"
handleSearch={handleSearch}
inputValue={selected.specialty}
/>
<FilterButton limit={limit} selected={selected} filterData={filterData} />
</ButtonGroup>