Bläddra i källkod

[Fix 0000] 可配置首页配置无法读取

houzekong 8 månader sedan
förälder
incheckning
1c235a626f

+ 1 - 1
src/views/vent/deviceManager/configurationTable/configuration.api.ts

@@ -15,7 +15,7 @@ enum Api {
  * @param params
  */
 export function list(params: any): Promise<{ records: Config[] }> {
-  return defHttp.post({ url: Api.list, params: _.omitBy(params, _.isNil) }).then((result) => {
+  return defHttp.post({ url: Api.list, params: _.omitBy(params, _.isNil) }, { joinParamsToUrl: true }).then((result) => {
     result.records.forEach((item) => {
       parseModuleData(item);
     });