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.
8 lines
618 B
8 lines
618 B
import post, {get, put} from "@/api/request";
|
|
|
|
export const listLegalOrgCheckTypeReq = () => get('/law/law-legal-org-check-type')
|
|
export const listLegalOrgCheckTypeInfoReq = (id) => get(`/law/law-legal-org-check-type/${id}`)
|
|
export const listLegalOrgCheckConfigReq = params => get('/law/law-legal-org-check-config', {params})
|
|
export const addLegalOrgCheckContentReq = data => post('/law/law-legal-org-check-content', data)
|
|
export const updateLegalOrgCheckContentReq = data => post('/law/law-legal-org-check-content/update', data)
|
|
export const listLegalOrgCheckContentReq = () => get('/law/law-legal-org-check-content')
|