resolver-egretimp-plus 0.1.70 → 0.1.72

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.1.70",
3
+ "version": "0.1.72",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -11,6 +11,12 @@ const lang = inject('lang')
11
11
  const modelValue = defineModel()
12
12
  const props = defineProps({
13
13
  ...commonPropsType,
14
+ filterable: {
15
+ type: String
16
+ },
17
+ multiple: {
18
+ type: String
19
+ }
14
20
  })
15
21
  const open = computed({
16
22
  get() {
@@ -157,10 +157,14 @@ export default {
157
157
  }
158
158
  if (props.showMoney == '1') {
159
159
  ret['onFocus'] = () => {
160
+ if (modelValue.value === null || modelValue.value === undefined) {
161
+ modelValue.value = ''
162
+ }
160
163
  isFocus.value = true
161
164
  currentVal.value = modelValue.value
162
165
  }
163
166
  ret['onBlur'] = () => {
167
+ debugger
164
168
  isFocus.value = false
165
169
  modelValue.value = parseValue(formatValue(currentVal.value))
166
170
  }