You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
642 B
11 lines
642 B
import post, {get} from "@/api/request";
|
|
|
|
export const listLawOrgReq = params => get('/law/law-org', {params})
|
|
|
|
export const listLawOrgPeopleReq = params => get('/law/law-org-people', {params})
|
|
export const lawOrgCheckActionReq = data => post('/law/law-org-check-log', data)
|
|
export const lawLegalAidReq = data => post('/law/law-legal-aid', data)
|
|
export const sendChatReq = data => post('/chat/message', data)
|
|
export const stopChatReq = data => post('/chat/messageStop', data)
|
|
export const lawLegalArbitrateReq = data => post('/law/law-legal-arbitrate', data)
|
|
export const lawLegalAppraisalReq = data => post('/law/law-legal-appraisal', data)
|