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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "resolver-egretimp-plus",
3
- "version": "0.0.161",
3
+ "version": "0.0.162",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -135,7 +135,12 @@ function getReqData(inParamMappingList = [], {dynamicMapComp, dynamicMapCompKeys
135
135
  !isUndefined(dynamicMapComp[configCode]?.refValue) &&
136
136
  !isNull(dynamicMapComp[configCode]?.refValue)
137
137
  ) {
138
- const destParamArr = destParam?.split('.') || []
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