resolver-egretimp-plus 0.0.133 → 0.0.134
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -144,7 +144,6 @@ function getReqData(inParamMappingList = [], {dynamicMapComp, dynamicMapCompKeys
|
|
|
144
144
|
|
|
145
145
|
function initOutParamData(outParamMappingList = [], { dynamicMapComp, dynamicMapCompKeys, dynamicHireRelat, outResult = {} }) {
|
|
146
146
|
outParamMappingList.forEach(params => {
|
|
147
|
-
debugger
|
|
148
147
|
const { orignParam = '', destParam = '', isList = false, primaryKeys = [] } = params
|
|
149
148
|
const configCodes = getRelateConfigKeys(dynamicMapCompKeys, destParam, dynamicHireRelat)
|
|
150
149
|
if (configCodes.length > 1) {
|
package/src/utils/common.js
CHANGED
|
@@ -337,7 +337,7 @@ export function setValueDeep(obj, key = '', val) {
|
|
|
337
337
|
const cod = matchs[1]
|
|
338
338
|
const idx = matchs[2]
|
|
339
339
|
!ret[cod] && (ret[cod] = [])
|
|
340
|
-
ret[cod][idx] = {}
|
|
340
|
+
!ret[cod][idx] && (ret[cod][idx] = {})
|
|
341
341
|
return ret[cod][idx]
|
|
342
342
|
} else {
|
|
343
343
|
!ret[code] && (ret[code] = {})
|