resolver-egretimp-plus 0.0.167 → 0.0.168

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.167",
3
+ "version": "0.0.168",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -161,9 +161,11 @@ export default {
161
161
  ret.suffix = () => {
162
162
  const iconProps = {}
163
163
  if (isPagePopup.value && inputProps.value.suffixIcon == 'Search') {
164
- iconProps.onClick = attrs.onClick
165
- iconProps.style = {
166
- cursor: 'pointer'
164
+ if (!props.disabled) {
165
+ iconProps.onClick = attrs.onClick
166
+ iconProps.style = {
167
+ cursor: 'pointer'
168
+ }
167
169
  }
168
170
  }
169
171