resolver-egretimp-plus 0.0.161 → 0.0.162
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
|
@@ -135,7 +135,12 @@ function getReqData(inParamMappingList = [], {dynamicMapComp, dynamicMapCompKeys
|
|
|
135
135
|
!isUndefined(dynamicMapComp[configCode]?.refValue) &&
|
|
136
136
|
!isNull(dynamicMapComp[configCode]?.refValue)
|
|
137
137
|
) {
|
|
138
|
-
|
|
138
|
+
let destParamArr
|
|
139
|
+
if (destParam?.indexOf('->') !== -1) {
|
|
140
|
+
destParamArr = destParam?.split('->') || []
|
|
141
|
+
} else {
|
|
142
|
+
destParamArr = destParam?.split('.') || []
|
|
143
|
+
}
|
|
139
144
|
assignmentPathVal(ret, destParamArr, dynamicMapComp[configCode]?.refValue)
|
|
140
145
|
}
|
|
141
146
|
return ret
|