resolver-egretimp-plus 0.0.177 → 0.0.179

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.177",
3
+ "version": "0.0.179",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -88,7 +88,10 @@ export default {
88
88
  definePrivatelyProp(props.config, 'route', route)
89
89
 
90
90
  if (props.config.onVnodeMounted && typeof props.config.onVnodeMounted === 'function') {
91
- props.config.onVnodeMounted(props, e, selects)
91
+ const context = {
92
+ dataLoad: dataLoad
93
+ }
94
+ props.config.onVnodeMounted.call(context, props, e, selects)
92
95
  }
93
96
  if (props.config.onMounted) {
94
97
  let onMounted = props.config.onMounted
@@ -648,7 +648,7 @@ function generateFormItemPc (config, lang, compProps, params,) {
648
648
  node = (
649
649
  <div style="width: 100%">
650
650
  {node}
651
- {config.polyfillNode(h, { config })}
651
+ {config.polyfillNode(h, { config, props: compProps })}
652
652
  </div>
653
653
  )
654
654
  }