|
@@ -40,17 +40,12 @@ export const userConfigInfo = (form) => httpApi({
|
|
|
params: form,
|
|
|
})
|
|
|
|
|
|
-//获取上报批次
|
|
|
-// export const getReportNumber = (form) => httpApi({
|
|
|
-// url: '/api/blade-business/informationWriteQuery/getReportNumberByContractId',
|
|
|
-// 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',
|
|
@@ -115,11 +110,11 @@ export const getTenantDetail = (id) => httpApi({
|
|
|
params: {
|
|
|
tenantId: id,
|
|
|
},
|
|
|
-}, true)
|
|
|
-
|
|
|
+})
|
|
|
|
|
|
//获取更新信息
|
|
|
-export const getVersionJson = () => httpApi({
|
|
|
- url: 'version.json?time=' + new Date().getTime(),
|
|
|
+export const getVersionData = (form) => httpApi({
|
|
|
+ url: '/api/blade-manager/appVersionDetail/getNewVersion',
|
|
|
method: 'get',
|
|
|
-}, false)
|
|
|
+ params: form
|
|
|
+})
|