|
|
@ -67,6 +67,9 @@ const setFormState = (path: string, value: any) => { |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
<template v-else-if="field.type === FormBuilderInputType.Password"> |
|
|
|
<template v-else-if="field.type === FormBuilderInputType.Password"> |
|
|
|
<a-input-password |
|
|
|
<a-input-password |
|
|
|
|
|
|
|
readonly |
|
|
|
|
|
|
|
onfocus="this.removeAttribute('readonly');" |
|
|
|
|
|
|
|
onblur="this.setAttribute('readonly', true);" |
|
|
|
autocomplete="off" |
|
|
|
autocomplete="off" |
|
|
|
:value="deepReference(field.model)" |
|
|
|
:value="deepReference(field.model)" |
|
|
|
@update:value="setFormState(field.model, $event)" |
|
|
|
@update:value="setFormState(field.model, $event)" |
|
|
|