resolver-egretimp-plus 0.0.287 → 0.0.288

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.287",
3
+ "version": "0.0.288",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -265,7 +265,8 @@ export default {
265
265
  return value
266
266
  }
267
267
  if (value === null || value === undefined) return ''
268
- let val = parseFloat(value)
268
+ let val = `${value}`.replace(props.moneySeg, '')
269
+ val = parseFloat(val)
269
270
  if (isNaN(val)) {
270
271
  return ''
271
272
  }