resolver-egretimp-plus 0.1.71 → 0.1.73
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
|
@@ -12,7 +12,7 @@ const lang = inject('lang')
|
|
|
12
12
|
const attrs = useAttrs()
|
|
13
13
|
const modelValue = defineModel()
|
|
14
14
|
const tabpanes = computed(() => {
|
|
15
|
-
return props.config.pmPageMetaList || []
|
|
15
|
+
return [...(props.config.pmPageMetaList || []).filter(item => item.hidden != '1'), ...(props.config.pmPageMetaList || []).filter(item => item.hidden == '1')]
|
|
16
16
|
})
|
|
17
17
|
|
|
18
18
|
const activeNames = computed({
|
|
@@ -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
|
}
|