Commit c31d5aa4f458e864f8889960d159ac4de775c036

Authored by ww
1 parent 33f174b1

fix: 修复缩放因子参数丢失

... ... @@ -9023,7 +9023,7 @@ DataFormatPanel.prototype.addDataFont = function (container) {
9023 9023 * @param {{orgId: string, deviceId: string, slaveDeviceId?: string, attr: string}} dataSource
9024 9024 */
9025 9025 function echoDataSource(dataSource = {}) {
9026   - const { orgId, deviceId, deviceProfileId, deviceType, attr, method, deviceCode, registerAddress, thingsModelDataType, actionType, zoomFacor } = dataSource
  9026 + const { orgId, deviceId, deviceProfileId, deviceType, attr, method, deviceCode, registerAddress, thingsModelDataType, actionType, zoomFactor } = dataSource
9027 9027 const queue = []
9028 9028 currentDataSource = { organizationId: orgId, deviceProfileId, deviceType }
9029 9029 queue.push(getProduct(deviceType))
... ... @@ -9054,7 +9054,7 @@ DataFormatPanel.prototype.addDataFont = function (container) {
9054 9054 actionType,
9055 9055 deviceName,
9056 9056 attrName,
9057   - zoomFacor
  9057 + zoomFactor
9058 9058 })
9059 9059
9060 9060 })
... ...