|
|
|
@ -188,7 +188,7 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<Teleport
|
|
|
|
<Teleport
|
|
|
|
v-if="isShowFormulaModal"
|
|
|
|
v-if="isShowFormulaModal"
|
|
|
|
to="#docuseal_modal_container"
|
|
|
|
:to="modalContainerEl"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<FormulaModal
|
|
|
|
<FormulaModal
|
|
|
|
:field="field"
|
|
|
|
:field="field"
|
|
|
|
@ -199,7 +199,7 @@
|
|
|
|
</Teleport>
|
|
|
|
</Teleport>
|
|
|
|
<Teleport
|
|
|
|
<Teleport
|
|
|
|
v-if="isShowFontModal"
|
|
|
|
v-if="isShowFontModal"
|
|
|
|
to="#docuseal_modal_container"
|
|
|
|
:to="modalContainerEl"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<FontModal
|
|
|
|
<FontModal
|
|
|
|
:field="multiSelectField || field"
|
|
|
|
:field="multiSelectField || field"
|
|
|
|
@ -213,7 +213,7 @@
|
|
|
|
</Teleport>
|
|
|
|
</Teleport>
|
|
|
|
<Teleport
|
|
|
|
<Teleport
|
|
|
|
v-if="isShowConditionsModal"
|
|
|
|
v-if="isShowConditionsModal"
|
|
|
|
to="#docuseal_modal_container"
|
|
|
|
:to="modalContainerEl"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<ConditionsModal
|
|
|
|
<ConditionsModal
|
|
|
|
:item="multiSelectField || field"
|
|
|
|
:item="multiSelectField || field"
|
|
|
|
@ -226,7 +226,7 @@
|
|
|
|
</Teleport>
|
|
|
|
</Teleport>
|
|
|
|
<Teleport
|
|
|
|
<Teleport
|
|
|
|
v-if="isShowDescriptionModal"
|
|
|
|
v-if="isShowDescriptionModal"
|
|
|
|
to="#docuseal_modal_container"
|
|
|
|
:to="modalContainerEl"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<DescriptionModal
|
|
|
|
<DescriptionModal
|
|
|
|
:field="field"
|
|
|
|
:field="field"
|
|
|
|
@ -309,6 +309,9 @@ export default {
|
|
|
|
computed: {
|
|
|
|
computed: {
|
|
|
|
fieldNames: FieldType.computed.fieldNames,
|
|
|
|
fieldNames: FieldType.computed.fieldNames,
|
|
|
|
fieldLabels: FieldType.computed.fieldLabels,
|
|
|
|
fieldLabels: FieldType.computed.fieldLabels,
|
|
|
|
|
|
|
|
modalContainerEl () {
|
|
|
|
|
|
|
|
return this.$el.getRootNode().querySelector('#docuseal_modal_container')
|
|
|
|
|
|
|
|
},
|
|
|
|
selectedFields () {
|
|
|
|
selectedFields () {
|
|
|
|
if (!this.isMultiSelection) return []
|
|
|
|
if (!this.isMultiSelection) return []
|
|
|
|
|
|
|
|
|
|
|
|
|