government ui complated
This commit is contained in:
@@ -1,14 +1,30 @@
|
||||
import httpClient from '@/api/httpClient';
|
||||
import { API_URLS } from '@/api/URLs';
|
||||
import { AxiosResponse } from 'axios';
|
||||
import { GovermentServiceData } from './types';
|
||||
import { GovermentCategoryData, GovermentServiceData } from './types';
|
||||
|
||||
export const eservices_api = {
|
||||
async list(params: {
|
||||
page: number;
|
||||
page_size: number;
|
||||
category?: number;
|
||||
}): Promise<AxiosResponse<GovermentServiceData>> {
|
||||
const res = await httpClient.get(API_URLS.Goverment_Service, { params });
|
||||
return res;
|
||||
},
|
||||
|
||||
async category(): Promise<AxiosResponse<GovermentCategoryData>> {
|
||||
const res = await httpClient.get(API_URLS.Goverment_Category);
|
||||
return res;
|
||||
},
|
||||
};
|
||||
|
||||
export const search_api = {
|
||||
search: async (query: string) => {
|
||||
const res = await fetch(`https://server.myorg.uz/search?query=${encodeURIComponent(query)}`, {
|
||||
headers: { Access: 'Bearer 12opNgslS4S2DDllcsnPKD789D2ek2HJhH23C' },
|
||||
});
|
||||
if (!res.ok) throw new Error('Search error');
|
||||
return res.json();
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user