123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- <template>
- <div>
- <h3 style="margin: 10px" v-show="column.label">{{ column.label }}</h3>
- <draggable
- class="widget-form-table__content"
- :list="column.children.column"
- :group="{ name: 'form' }"
- ghost-class="ghost"
- :animation="200"
- handle=".widget-form-table__item"
- @add="handleWidgetTableAdd($event, column)"
- @end="$emit('change')"
- >
- <template v-if="column.children.column.length > 0">
- <div
- v-for="(item, tableIndex) in column.children.column"
- :key="tableIndex"
- class="widget-form-table__item"
- :class="{ active: selectWidget.prop == item.prop, required: item.required }"
- :style="{ minWidth: item.width ? `${item.width}px` : '33.3%', width: item.width ? `${item.width}px` : '33.3%' }"
- @click.stop="handleWidgetTableSelect(item)"
- >
- <el-table :data="[item]" border>
- <el-table-column :prop="item.prop" :label="item.label" :align="column.children.align" :header-align="column.children.headerAlign">
- <widget-form-item :item="item" :params="column.params"></widget-form-item>
- <el-button
- title="删除"
- @click.stop="handleWidgetTableDelete(column, tableIndex)"
- class="widget-table-action-delete"
- v-if="selectWidget.prop == item.prop"
- circle
- plain
- size="small"
- type="danger"
- >
- <i class="iconfont icon-delete"></i>
- </el-button>
- <el-button
- title="复制"
- @click.stop="handleWidgetTableClone(column, item)"
- class="widget-table-action-clone"
- v-if="selectWidget.prop == item.prop"
- circle
- plain
- size="small"
- type="primary"
- >
- <i class="iconfont icon-copy"></i>
- </el-button>
- </el-table-column>
- </el-table>
- </div>
- </template>
- <template v-else>
- <avue-empty size="50" style="width: 100%" desc="拖拽字段至此"></avue-empty>
- </template>
- </draggable>
- <el-button
- title="删除"
- @click.stop="handleWidgetDelete(index)"
- class="widget-action-delete"
- v-if="selectWidget.prop == column.prop"
- circle
- plain
- size="small"
- type="danger"
- >
- <i class="iconfont icon-delete"></i>
- </el-button>
- <el-button
- title="清空"
- @click.stop="handleWidgetClear(index)"
- class="widget-action-clear"
- v-if="selectWidget.prop == column.prop"
- circle
- plain
- size="small"
- type="warning"
- >
- <i class="iconfont icon-clear"></i>
- </el-button>
- <el-button
- title="复制"
- @click.stop="handleWidgetCloneTable(index)"
- class="widget-action-clone"
- v-if="selectWidget.prop == column.prop"
- circle
- plain
- size="small"
- type="primary"
- >
- <i class="iconfont icon-copy"></i>
- </el-button>
- </div>
- </template>
- <script>
- import WidgetFormItem from './WidgetFormItem'
- import draggable from 'vuedraggable'
- export default {
- name: 'widget-form-table',
- props: ['data', 'column', 'select', 'index'],
- components: { WidgetFormItem, draggable },
- data() {
- return {
- selectWidget: this.select,
- }
- },
- methods: {
- handleSelectWidget(index) {
- this.selectWidget = this.data.column[index]
- },
- handleWidgetClear(index) {
- this.data.column[index].children.column = []
- this.selectWidget = this.data.column[index]
- this.$emit('change')
- },
- handleWidgetDelete(index) {
- if (this.data.column.length - 1 === index) {
- if (index === 0) this.selectWidget = {}
- else this.handleSelectWidget(index - 1)
- } else this.handleSelectWidget(index + 1)
- this.$nextTick(() => {
- this.data.column.splice(index, 1)
- this.$emit('change')
- })
- },
- handleWidgetCloneTable(index) {
- let cloneData = this.deepClone(this.data.column[index])
- cloneData.prop = 'a' + Date.now() + Math.ceil(Math.random() * 99999)
- cloneData.children.column.forEach((t) => {
- t.prop = 'a' + Date.now() + Math.ceil(Math.random() * 99999)
- })
- this.data.column.splice(index, 0, cloneData)
- this.$nextTick(() => {
- this.handleSelectWidget(index + 1)
- this.$emit('change')
- })
- },
- handleWidgetTableAdd(evt, column) {
- let newIndex = evt.newIndex
- const item = evt.item
- if (newIndex == 1 && newIndex > column.children.column.length - 1) newIndex = 0
- if (['子表单', '富文本', '坐标拾取器', '分组'].includes(item.textContent)) {
- column.children.column.splice(newIndex, 1)
- return
- }
- const data = this.deepClone(column.children.column[newIndex])
- if (!data.prop) data.prop = 'a' + Date.now() + Math.ceil(Math.random() * 99999)
- data.subfield = true
- delete data.icon
- this.$set(column.children.column, newIndex, { ...data })
- this.selectWidget = column.children.column[newIndex]
- this.$emit('change')
- },
- handleWidgetTableSelect(data) {
- this.selectWidget = data
- },
- handleWidgetTableClone(column, item) {
- const data = this.deepClone(item)
- data.prop = 'a' + Date.now() + Math.ceil(Math.random() * 99999)
- this.$set(column.children.column, column.children.column.length, { ...data })
- this.$nextTick(() => {
- this.selectWidget = column.children.column[column.children.column.length - 1]
- this.$emit('change')
- })
- },
- handleWidgetTableDelete(column, index) {
- if (column.children.column.length - 1 == index) {
- if (index == 0) this.selectWidget = column
- else this.selectWidget = column.children.column[index - 1]
- } else this.selectWidget = column.children.column[index + 1]
- this.$nextTick(() => {
- column.children.column.splice(index, 1)
- this.$emit('change')
- })
- },
- },
- watch: {
- select(val) {
- this.selectWidget = val
- },
- selectWidget: {
- handler(val) {
- this.$emit('update:select', val)
- },
- deep: true,
- },
- },
- }
- </script>
|