push rasad front on new repo
This commit is contained in:
18
src/features/file/services/financial-check-request.js
Normal file
18
src/features/file/services/financial-check-request.js
Normal file
@@ -0,0 +1,18 @@
|
||||
import { createAsyncThunk } from "@reduxjs/toolkit";
|
||||
import axios from "axios";
|
||||
import { LOADING_END, LOADING_START } from "../../../lib/redux/slices/appSlice";
|
||||
|
||||
export const financialCheckRequest = createAsyncThunk(
|
||||
"PROVINCE_CHECK_REQUEST",
|
||||
async (d, { dispatch }) => {
|
||||
dispatch(LOADING_START());
|
||||
try {
|
||||
const { data, status } = await axios.post(`province_check_info/`, d);
|
||||
dispatch(LOADING_END());
|
||||
return { data, status };
|
||||
} catch (e) {
|
||||
dispatch(LOADING_END());
|
||||
return { error: e.response.data.result };
|
||||
}
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user