feiyu02
2025-09-17 b330e57051e54789eb83d10dc58c4d9d10c608e1
src/api/fysp/userMapApi.js
@@ -6,5 +6,22 @@
   */
  fetchDeviceMap(param) {
    return $fysp.post(`usermap/device`, param).then((res) => res.data);
  },
  /**
   * 搜索第三方设备
   */
  searchThirdPartyDevice(areaVo, keyword, page, perPage) {
    return $fysp
      .post(`usermap/searchThirdPartyDevice`, areaVo, {
        params: { keyword, page, perPage }
      })
      .then((res) => res.data);
  },
  insertOrUpdate(areaVo, deviceMap) {
    return $fysp
      .post(`usermap/insertOrUpdate`, { first: areaVo, second: deviceMap })
      .then((res) => res.data);
  }
};