123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <template>
- <a-popover trigger="contextmenu" v-model="visible" :placement="position" overlayClassName="j-input-pop">
- <!--"(node) => node.parentNode.parentNode"-->
- <div slot="title">
- <span>{{ title }}</span>
- <span style="float: right" title="关闭">
- <a-icon type="close" @click="visible=false"/>
- </span>
- </div>
- <a-input :value="inputContent" :disabled="disabled" @change="handleInputChange">
- <a-icon slot="suffix" type="fullscreen" @click.stop="pop" />
- </a-input>
- <div slot="content">
- <j-code-editor
- language="javascript"
- v-model="inputContent"
- :fullScreen="true"
- :style="{ minHeight: height + 'px', minWidth: width + 'px'}"
- />
- </div>
- </a-popover>
- </template>
- <script>
- import JCodeEditor from '@/components/jeecg/JCodeEditor'
- export default {
- name: 'JCodeEditorPop',
- components: {
- JCodeEditor
- },
- props: {
- title: {
- type: String,
- default: '',
- required: false
- },
- position: {
- type: String,
- default: 'right',
- required: false
- },
- height: {
- type: Number,
- default: 200,
- required: false
- },
- width: {
- type: Number,
- default: 500,
- required: false
- },
- value: {
- type: String,
- required: false
- },
- popContainer: {
- type: String,
- default: '',
- required: false
- },
- disabled: {
- type: Boolean,
- default: false
- }
- },
- data() {
- return {
- visible: false,
- inputContent: ''
- }
- },
- watch: {
- value: {
- immediate: true,
- handler: function() {
- if (this.value && this.value.length > 0) {
- this.inputContent = this.value
- }
- }
- },
- inputContent(value) {
- this.$emit('change', value)
- }
- },
- model: {
- prop: 'value',
- event: 'change'
- },
- methods: {
- handleInputChange(event) {
- this.inputContent = event.target.value
- this.$emit('change', this.inputContent)
- },
- pop() {
- this.visible = true
- },
- getPopupContainer(node) {
- if (!this.popContainer) {
- return node.parentNode
- } else {
- return document.getElementById(this.popContainer)
- }
- }
- }
- }
- </script>
- <style scoped>
- </style>
|