<template>
|
<el-dialog
|
:visible.sync="visible"
|
:append-to-body="true"
|
title="编辑列"
|
width="600px"
|
@close="handleCancel">
|
<div class="scene-name">您可通过拖拽管理列</div>
|
<flexbox class="scene-list">
|
<div class="scene-list-box">
|
<flexbox class="scene-list-head">
|
<el-checkbox
|
:indeterminate="isleftIndeterminate"
|
v-model="checkleftAll"
|
@change="handleleftCheckAllChange"/>
|
<div class="scene-list-head-name">显示的列</div>
|
<div class="scene-list-head-detail">{{ leftCheckItems.length + '/' + checkedLeftData.length }}</div>
|
</flexbox>
|
<div style="position: relative;">
|
<div class="scene-list-search">
|
<el-input
|
v-model="leftInput"
|
placeholder="请输入"
|
size="small"
|
suffix-icon="el-icon-search"
|
@input="inputLeftChange"/>
|
</div>
|
<div class="scene-list-body">
|
<draggable
|
v-model="checkedLeftData"
|
:move="leftMove"
|
:options="{group: 'list',forceFallback:true}"
|
style="min-height: 100px;"
|
@end="leftMoveEnd">
|
<flexbox
|
v-for="(item, index) in checkedLeftData"
|
v-if="item.show"
|
:key="index"
|
class="list-item">
|
<el-checkbox
|
v-model="item.check"
|
class="list-item-check"
|
@change="leftCheckItemChange"/>
|
<div class="list-item-name">{{ item.name }}</div>
|
</flexbox>
|
</draggable>
|
|
</div>
|
</div>
|
</div>
|
<div class="scene-middle-list">
|
<el-button
|
:class="{'scene-middle-button-select':rightCheckItems.length > 0}"
|
:disabled="rightCheckItems.length === 0"
|
class="scene-middle-left-button"
|
@click="changePositon('left')">
|
<i class="el-icon-arrow-left scene-middle-icon"/>
|
</el-button>
|
<el-button
|
:class="{'scene-middle-button-select':leftCheckItems.length > 0}"
|
:disabled="leftCheckItems.length === 0"
|
class="scene-middle-right-button"
|
@click="changePositon('right')">
|
<i class="el-icon-arrow-right scene-middle-icon"/>
|
</el-button>
|
</div>
|
<div class="scene-list-box">
|
<flexbox class="scene-list-head">
|
<el-checkbox
|
:indeterminate="isrightIndeterminate"
|
v-model="checkrightAll"
|
@change="handlerightCheckAllChange"/>
|
<div class="scene-list-head-name">隐藏的列</div>
|
<div class="scene-list-head-detail">{{ rightCheckItems.length + '/' + checkedRightData.length }}</div>
|
</flexbox>
|
<div style="position: relative;">
|
<div class="scene-list-body">
|
<div class="scene-list-search">
|
<el-input
|
v-model="rightInput"
|
placeholder="请输入"
|
size="small"
|
suffix-icon="el-icon-search"
|
@input="inputRightChange"/>
|
</div>
|
<draggable
|
v-model="checkedRightData"
|
:move="rightMove"
|
:options="{group: 'list',forceFallback:true}"
|
style="min-height: 100px;"
|
@end="rightMoveEnd">
|
<flexbox
|
v-for="(item, index) in checkedRightData"
|
v-if="item.show"
|
:key="index"
|
class="list-item">
|
<el-checkbox
|
v-model="item.check"
|
class="list-item-check"
|
@change="rightCheckItemChange"/>
|
<div class="list-item-name">{{ item.name }}</div>
|
</flexbox>
|
</draggable>
|
</div>
|
</div>
|
</div>
|
</flexbox>
|
<div class="handle-bar">
|
<div class="handle-bar-save">
|
<el-button @click.native="handleCancel">取消</el-button>
|
<el-button
|
type="primary"
|
@click.native="handleConfirm">保存</el-button>
|
</div>
|
</div>
|
</el-dialog>
|
</template>
|
|
<script type="text/javascript">
|
// import {
|
// crmFieldConfigIndex,
|
// crmFieldConfig
|
// } from '@/api/clients/common'
|
// import crmTypeModel from '@/views/clients/model/crmTypeModel'
|
import draggable from 'vuedraggable'
|
|
export default {
|
name: 'FieldsSet', // 场景 设置
|
components: {
|
draggable
|
},
|
props: {
|
dialogVisible: {
|
type: Boolean,
|
required: true,
|
default: false
|
},
|
/** 没有值就是全部类型 有值就是当个类型 */
|
crmType: {
|
type: String,
|
default: ''
|
},
|
// 是否是公海 客户模块的辅助参数
|
isSeas: {
|
type: Boolean,
|
default: false
|
}
|
},
|
data () {
|
return {
|
visible: false, // 控制展示
|
isleftIndeterminate: false, // 标注头部是多选框效果
|
checkleftAll: false, // 关联全选操作多选框
|
|
leftInput: '',
|
checkedLeftData: [], // 数据源
|
leftCheckItems: [], // 选择的数据源
|
|
isrightIndeterminate: false,
|
checkrightAll: false,
|
|
rightInput: '',
|
checkedRightData: [],
|
rightCheckItems: [],
|
|
moveItem: {}, // 移动中的item
|
handlDefaultItem: {} // 设置默认的中间item
|
}
|
},
|
computed: {},
|
watch: {
|
dialogVisible: {
|
handler (val) {
|
this.visible = val
|
if (val) {
|
if (
|
this.checkedLeftData.length === 0 &&
|
this.checkedRightData.length === 0
|
) {
|
this.getFieldConfigIndex()
|
}
|
}
|
},
|
deep: true,
|
immediate: true
|
}
|
},
|
mounted () {
|
// 为了防止火狐浏览器拖拽的时候以新标签打开,此代码真实有效
|
document.body.ondrop = function (event) {
|
event.preventDefault()
|
event.stopPropagation()
|
}
|
},
|
methods: {
|
getFieldConfigIndex () {
|
// crmFieldConfigIndex({
|
// label: this.isSeas ? crmTypeModel.pool : crmTypeModel[this.crmType]
|
// })
|
// .then(res => {
|
// this.checkedLeftData = res.data.value.map(function (item, index) {
|
// item.check = false
|
// item.show = true
|
// return item
|
// })
|
// this.checkedRightData = res.data.hideValue.map(function (item, index) {
|
// item.check = false
|
// item.show = true
|
// return item
|
// })
|
// })
|
// .catch(() => {})
|
},
|
/**
|
* 搜索操作
|
*/
|
inputLeftChange (val) {
|
this.checkedLeftData = this.checkedLeftData.map(function (item, index) {
|
if (item.name.indexOf(val) !== -1) {
|
item.show = true
|
} else {
|
item.show = false
|
}
|
return item
|
})
|
},
|
/**
|
* 搜索操作
|
*/
|
inputRightChange (val) {
|
this.checkedRightData = this.checkedRightData.map(function (item, index) {
|
if (item.name.indexOf(val) !== -1) {
|
item.show = true
|
} else {
|
item.show = false
|
}
|
return item
|
})
|
},
|
/**
|
* 确定选择
|
*/
|
handleConfirm () {
|
if (this.checkedLeftData.length < 2) {
|
this.$message.error('至少要显示两列')
|
} else {
|
// crmFieldConfig({
|
// label: this.isSeas ? crmTypeModel.pool : crmTypeModel[this.crmType],
|
// noHideIds: this.checkedLeftData
|
// .map(item => {
|
// return item.id
|
// })
|
// .join(','),
|
// hideIds: this.checkedRightData
|
// .map(item => {
|
// return item.id
|
// })
|
// .join(',')
|
// })
|
// .then(res => {
|
// this.$message.success('操作成功')
|
// this.$emit('set-success')
|
// this.handleCancel()
|
// })
|
// .catch(() => {})
|
}
|
},
|
/**
|
* 取消选择
|
*/
|
handleCancel () {
|
this.visible = false
|
this.$emit('update:dialogVisible', false)
|
},
|
/** 拖拽操作 */
|
rightMoveEnd (evt) {
|
this.moveItem.check = false
|
this.leftCheckItemChange()
|
this.rightCheckItemChange()
|
},
|
rightMove (obj) {
|
this.moveItem = obj.draggedContext.element
|
},
|
leftMoveEnd (evt) {
|
this.moveItem.check = false
|
this.leftCheckItemChange()
|
this.rightCheckItemChange()
|
},
|
leftMove (obj) {
|
this.moveItem = obj.draggedContext.element
|
},
|
// 选择全部
|
handleleftCheckAllChange (value) {
|
if (value) {
|
this.isleftIndeterminate = false
|
}
|
this.checkedLeftData = this.checkedLeftData.filter(function (
|
item,
|
index,
|
array
|
) {
|
item.check = value
|
return item
|
})
|
this.leftCheckItems = value ? this.checkedLeftData : []
|
},
|
leftCheckItemChange () {
|
this.leftCheckItems = this.checkedLeftData.filter(function (
|
item,
|
index,
|
array
|
) {
|
return item.check === true
|
})
|
if (this.leftCheckItems.length > 0) {
|
if (this.leftCheckItems.length === this.checkedLeftData.length) {
|
this.checkleftAll = true
|
this.isleftIndeterminate = false
|
} else {
|
this.checkleftAll = false
|
this.isleftIndeterminate = true
|
}
|
} else {
|
this.checkleftAll = false
|
this.isleftIndeterminate = false
|
}
|
},
|
// 选择全部
|
handlerightCheckAllChange (value) {
|
if (value) {
|
this.isrightIndeterminate = false
|
}
|
this.checkedRightData = this.checkedRightData.filter(function (
|
item,
|
index,
|
array
|
) {
|
item.check = value
|
return item
|
})
|
this.rightCheckItems = value ? this.checkedRightData : []
|
},
|
rightCheckItemChange () {
|
this.rightCheckItems = this.checkedRightData.filter(function (
|
item,
|
index,
|
array
|
) {
|
return item.check === true
|
})
|
if (this.rightCheckItems.length > 0) {
|
if (this.rightCheckItems.length === this.checkedRightData.length) {
|
this.checkrightAll = true
|
this.isrightIndeterminate = false
|
} else {
|
this.checkrightAll = false
|
this.isrightIndeterminate = true
|
}
|
} else {
|
this.checkrightAll = false
|
this.isrightIndeterminate = false
|
}
|
},
|
// 按钮操作
|
changePositon (type) {
|
var self = this
|
// 从右往左
|
if (type === 'left') {
|
this.checkedRightData = this.checkedRightData.filter(function (
|
item,
|
index,
|
array
|
) {
|
var remove = false
|
self.rightCheckItems.forEach(function (element, index) {
|
if (item.id === element.id) {
|
remove = true
|
}
|
})
|
return !remove
|
})
|
|
this.rightCheckItems.forEach(function (element, index) {
|
element.check = false
|
self.checkedLeftData.push(element)
|
})
|
|
this.rightCheckItems = []
|
this.isrightIndeterminate = false
|
this.checkrightAll = false
|
|
// 刷新左侧效果
|
this.leftCheckItemChange()
|
this.rightCheckItemChange()
|
} else {
|
this.checkedLeftData = this.checkedLeftData.filter(function (
|
item,
|
index,
|
array
|
) {
|
var remove = false
|
self.leftCheckItems.forEach(function (element, index) {
|
if (item.id === element.id) {
|
remove = true
|
}
|
})
|
return !remove
|
})
|
|
this.leftCheckItems.forEach(function (element, index) {
|
element.check = false
|
self.checkedRightData.push(element)
|
})
|
|
this.leftCheckItems = []
|
this.isleftIndeterminate = false
|
this.checkleftAll = false
|
|
// 刷新右侧效果
|
this.leftCheckItemChange()
|
this.rightCheckItemChange()
|
}
|
}
|
}
|
}
|
</script>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
.scene-name {
|
font-size: 12px;
|
padding-bottom: 5px;
|
color: #aaa;
|
}
|
|
.default-mark {
|
width: 4px;
|
height: 4px;
|
border-radius: 2px;
|
margin-right: 5px;
|
}
|
.default-mark-active {
|
background-color: #4D88FF;
|
}
|
|
.scene-list-search {
|
background-color: white;
|
position: absolute;
|
padding: 10px 20px;
|
top: 0;
|
left: 0;
|
z-index: 5;
|
}
|
|
.scene-list {
|
.scene-list-box {
|
flex: 1;
|
border: 1px solid #e6e6e6;
|
border-radius: 2px;
|
height: 360px;
|
position: relative;
|
padding: 15px;
|
}
|
.scene-middle-list {
|
width: 50px;
|
text-align: center;
|
button {
|
border: 1px solid #cccccc;
|
width: 34px;
|
height: 34px;
|
border-radius: 17px;
|
background-color: #f5f7fa;
|
}
|
.scene-middle-icon {
|
color: #cccccc;
|
font-size: 14px;
|
}
|
.scene-middle-left-button {
|
}
|
.scene-middle-right-button {
|
margin-top: 15px;
|
margin-left: 0;
|
}
|
|
.scene-middle-button-select {
|
border: 1px solid #4D88FF !important;
|
background-color: #4D88FF !important;
|
.scene-middle-icon {
|
color: white !important;
|
}
|
}
|
}
|
.scene-list-head {
|
padding-bottom: 15px;
|
border-bottom: 1px dashed #e6e6e6;
|
font-size: 13px;
|
.scene-list-head-name {
|
color: #333;
|
flex: 1;
|
margin: 0 8px;
|
}
|
|
.scene-list-head-detail {
|
color: #aaa;
|
}
|
}
|
.scene-list-body {
|
padding: 52px 0 5px 0;
|
height: 300px;
|
position: relative;
|
overflow-y: auto;
|
}
|
|
.list-item {
|
padding: 5px 0;
|
cursor: pointer;
|
.list-item-check {
|
margin-right: 8px;
|
}
|
.list-item-name {
|
font-size: 13px;
|
color: #333;
|
flex: 1;
|
}
|
}
|
}
|
|
.handle-bar {
|
font-size: 12px;
|
.handle-bar-save {
|
position: relative;
|
height: 30px;
|
button {
|
float: right;
|
margin-top: 10px;
|
margin-right: 10px;
|
}
|
}
|
}
|
</style>
|