|
@@ -97,6 +97,7 @@ const getUnderlyingSystem = () => {
|
|
|
*/
|
|
|
const addUnderlyingSystem = (picture) => {
|
|
|
let params = new FormData();
|
|
|
+ picture && picture !== "" && params.append("picture", picture);
|
|
|
return post(`/data/underlying_system`, params);
|
|
|
};
|
|
|
|
|
@@ -105,4 +106,5 @@ export {
|
|
|
getCompanyBasicInfo,
|
|
|
editCompanyBasicInfo,
|
|
|
getBuildingList,
|
|
|
+ getUnderlyingSystem,
|
|
|
};
|