123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- import { httpApi } from '../../request/httpApi'
- export const ApprovalApi = (url, form) => httpApi({
- url: '/api/blade-business/' + url,
- method: 'post',
- data: form,
- })
- export const batchApproval = (form) => httpApi({
- url: '/api/blade-business/archiveFile/batchApproval',
- method: 'post',
- data: form,
- })
- export const sendNotice = (form) => httpApi({
- url: '/api/blade-business/task/send-notice',
- method: 'post',
- params: form,
- })
- export const saveSmsTimeout = (form) => httpApi({
- url: '/api/blade-business/task/save-sms-timeout',
- method: 'get',
- params: form,
- })
- export const userConfigSave = (form) => httpApi({
- url: '/api/blade-business/defaultConfig/saveOrUpdate',
- method: 'post',
- data: form,
- })
- export const userConfigInfo = (form) => httpApi({
- url: '/api/blade-business/defaultConfig/detail',
- method: 'get',
- params: form,
- })
- export const getReportNumber = (form) => httpApi({
- url: 'api/blade-business/task/query-batch-list-two',
- method: 'get',
- params: form,
- })
- export const getDictionary = (form) => httpApi({
- url: '/api/blade-system/dict/dictionary',
- method: 'get',
- params: form,
- })
- export const getDapSiteData = (form) => httpApi({
- url: '/api/blade-business/dap/site',
- method: 'get',
- params: form,
- })
- export const eVisaTaskCheck = (form) => httpApi({
- url: '/api/blade-business/eVisaTaskCheck/checkContractIsOpenEVisa',
- method: 'get',
- params: form,
- })
- export const checkFlowUserIsExistPfxFile = (form= {}) => httpApi({
- url: '/api/blade-business/eVisaTaskCheck/checkFlowUserIsExistPfxFile',
- method: 'get',
- params: form,
- })
- export const queryFixedFlow = (form) => httpApi({
- url: '/api/blade-business/eVisaTaskCheck/queryFixedFlow',
- method: 'post',
- data: form,
- })
- export const checkFlowUser = (form) => httpApi({
- url: '/api/blade-business/eVisaTaskCheck/checkCustomFlowUserIsEVisaPermissions',
- method: 'post',
- data: form,
- })
- export const checkFlowUserQuery = (form) => httpApi({
- url: '/api/blade-business/eVisaTaskCheck/batchCheckCustomFlowUserIsEVisaPermissions2',
- method: 'post',
- data: form,
- })
- export const getContractUserList = (form) => httpApi({
- url: '/api/blade-manager/contractInfo/get-contract-userList',
- method: 'get',
- params: form,
- })
- export const getTenantDetail = (id) => httpApi({
- url: '/api/blade-system/tenant/detail',
- method: 'get',
- params: {
- tenantId: id,
- },
- })
- export const getVersionData = (form) => httpApi({
- url: '/api/blade-manager/appVersionDetail/getNewVersion',
- method: 'get',
- params: form
- })
|