1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| <template>
| <j-input-pop
| :value="innerValue"
| :width="300"
| :height="210"
| v-bind="cellProps"
| style="width: 100%;"
| @change="handleChangeCommon"
| />
| </template>
|
| <script>
| import JInputPop from '@/components/jeecg/minipop/JInputPop'
| import JVxeCellMixins, { dispatchEvent } from '@/components/jeecg/JVxeTable/mixins/JVxeCellMixins'
|
| export default {
| name: 'JVxeTextareaCell',
| mixins: [JVxeCellMixins],
| components: {JInputPop},
| // 【组件增强】注释详见:JVxeCellMixins.js
| enhanced: {
| installOptions: {
| autofocus: '.ant-input',
| },
| aopEvents: {
| editActived(event) {
| dispatchEvent.call(this, event, 'anticon-fullscreen')
| },
| },
| },
| }
| </script>
|
| <style scoped>
|
| </style>
|
|