59d54956ea037f9979cfc30eb2c1067ea153d6bc.svn-base 784 B

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