同步操作将从 美乐低代码/MetaLowCode 企业级全栈低代码平台 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<template><div v-if="usercolumn.length>0" class="setting-column" v-loading="isSave"><div class="setting-column__title"><span class="move_b"></span><span class="show_b">显示</span><span class="name_b">名称</span><span class="width_b">宽度</span><span class="sortable_b">排序</span><span class="fixed_b">固定</span></div><div class="setting-column__list" ref="list"><ul><li v-for="item in usercolumn" :key="item.prop"><span class="move_b"><el-tag class="move" style="cursor: move;"><el-icon-d-caret style="width: 1em; height: 1em;"/></el-tag></span><span class="show_b"><el-switch v-model="item.hide" :active-value="false" :inactive-value="true"></el-switch></span><span class="name_b" :title="item.prop">{{ item.label }}</span><span class="width_b"><el-input v-model="item.width" placeholder="auto" size="small"></el-input></span><span class="sortable_b"><el-switch v-model="item.sortable"></el-switch></span><span class="fixed_b"><el-switch v-model="item.fixed"></el-switch></span></li></ul></div><div class="setting-column__bottom"><el-button @click="backDefaul" :disabled="isSave">重置</el-button><el-button @click="save" type="primary">保存</el-button></div></div><el-empty v-else description="暂无可配置的列" :image-size="80"></el-empty></template><script>import Sortable from 'sortablejs'export default {components: {Sortable},props: {column: { type: Object, default: () => {} }},data() {return {isSave: false,usercolumn: JSON.parse(JSON.stringify(this.column||[]))}},watch:{usercolumn: {handler(){this.$emit('userChange', this.usercolumn)},deep: true}},mounted() {this.usercolumn.length>0 && this.rowDrop()},methods: {rowDrop(){const _this = thisconst tbody = this.$refs.list.querySelector('ul')Sortable.create(tbody, {handle: ".move",animation: 300,ghostClass: "ghost",onEnd({ newIndex, oldIndex }) {const tableData = _this.usercolumnconst currRow = tableData.splice(oldIndex, 1)[0]tableData.splice(newIndex, 0, currRow)}})},backDefaul(){this.$emit('back', this.usercolumn)},save(){this.$emit('save', this.usercolumn)}}}</script><style scoped>.setting-column {}.setting-column__title {border-bottom: 1px solid #EBEEF5;padding-bottom:15px;}.setting-column__title span {display: inline-block;font-weight: bold;color: #909399;font-size: 12px;}.setting-column__title span.move_b {width: 30px;margin-right:15px;}.setting-column__title span.show_b {width: 60px;}.setting-column__title span.name_b {width: 140px;}.setting-column__title span.width_b {width: 60px;margin-right:15px;}.setting-column__title span.sortable_b {width: 60px;}.setting-column__title span.fixed_b {width: 60px;}.setting-column__list {max-height:314px;overflow: auto;}.setting-column__list li {list-style: none;margin:10px 0;display: flex;align-items: center;}.setting-column__list li>span {display: inline-block;font-size: 12px;}.setting-column__list li span.move_b {width: 30px;margin-right:15px;}.setting-column__list li span.show_b {width: 60px;}.setting-column__list li span.name_b {width: 140px;white-space: nowrap;text-overflow: ellipsis;overflow: hidden;cursor:default;}.setting-column__list li span.width_b {width: 60px;margin-right:15px;}.setting-column__list li span.sortable_b {width: 60px;}.setting-column__list li span.fixed_b {width: 60px;}.setting-column__list li.ghost {opacity: 0.3;}.setting-column__bottom {border-top: 1px solid #EBEEF5;padding-top:15px;text-align: right;}.dark .setting-column__title {border-color: var(--el-border-color-light);}.dark .setting-column__bottom {border-color: var(--el-border-color-light);}</style>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。