resolver-egretimp-plus 0.0.149 → 0.0.150

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.149",
3
+ "version": "0.0.150",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -35,7 +35,10 @@ const isMutiple = computed(() => {
35
35
  })
36
36
 
37
37
  const options = computed(() => {
38
- return props.options?.filter?.(item => props.rangeOptions?.some(subItem => subItem.columnValue == item.columnValue))
38
+ if (props.rangeOptions && props.rangeOptions.length) {
39
+ return props.options?.filter?.(item => props.rangeOptions?.some(subValue => subValue == item.columnValue))
40
+ }
41
+ return props.options
39
42
  })
40
43
 
41
44
  const value = computed({