fix: bug#10938
This commit is contained in:
parent
81f7e58c01
commit
b283c729d9
|
@ -85,6 +85,7 @@
|
||||||
width="700px"
|
width="700px"
|
||||||
@cancel="modalVis = false"
|
@cancel="modalVis = false"
|
||||||
@ok="handleItemModalSubmit"
|
@ok="handleItemModalSubmit"
|
||||||
|
:zIndex='1100'
|
||||||
>
|
>
|
||||||
<div style="width: 100%; height: 300px">
|
<div style="width: 100%; height: 300px">
|
||||||
<JMonacoEditor v-model:modelValue="objectValue" />
|
<JMonacoEditor v-model:modelValue="objectValue" />
|
||||||
|
@ -212,6 +213,10 @@ const dateChange = (e: any) => {
|
||||||
|
|
||||||
myValue.value = props.modelValue
|
myValue.value = props.modelValue
|
||||||
|
|
||||||
|
if (props.itemType === 'object') {
|
||||||
|
objectValue.value = props.modelValue as string
|
||||||
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped></style>
|
<style lang="less" scoped></style>
|
||||||
|
|
Loading…
Reference in New Issue