fix(transfer): 修复穿梭框逻辑, 新增 item 插槽
This commit is contained in:
parent
f568d29499
commit
29531eda88
@ -53,11 +53,48 @@ export default {
|
||||
|
||||
:::
|
||||
|
||||
::: field transfer 属性
|
||||
::: field 使用插槽
|
||||
:::
|
||||
|
||||
::: demo
|
||||
|
||||
<template>
|
||||
<lay-transfer :dataSource="dataSource1">
|
||||
<template v-slot:item="{ data }">
|
||||
{{data.id}}
|
||||
</template>
|
||||
</lay-transfer>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { ref } from 'vue'
|
||||
|
||||
export default {
|
||||
setup() {
|
||||
|
||||
const dataSource1 = [{id:'1', title:'易大师'},{id:'2', title:'战争之王'}]
|
||||
|
||||
return {
|
||||
dataSource1
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
:::
|
||||
|
||||
::: field transfer 属性
|
||||
:::
|
||||
|
||||
| Name | Description | Accepted Values |
|
||||
| -------- | ---- | ----------------------- |
|
||||
| dataSource | 数据来源 | -- |
|
||||
| title | 标题 | -- |
|
||||
| title | 标题 | -- |
|
||||
| id | 主键 | -- |
|
||||
|
||||
::: field transfer 插槽
|
||||
:::
|
||||
|
||||
| Name | Description | Accepted Values |
|
||||
| -------- | ---- | ----------------------- |
|
||||
| item | 列表项 | { data } |
|
@ -19,7 +19,8 @@
|
||||
skin="primary"
|
||||
:label="dataSource[id]"
|
||||
>
|
||||
<span>{{ dataSource.title }}</span>
|
||||
<slot v-if="slot.item" name="item" :data="dataSource" />
|
||||
<span v-else>{{ dataSource.title }}</span>
|
||||
</transfer-checkbox>
|
||||
</li>
|
||||
</ul>
|
||||
@ -56,7 +57,8 @@
|
||||
skin="primary"
|
||||
:label="dataSource[id]"
|
||||
>
|
||||
<span>{{ dataSource.title }}</span>
|
||||
<slot v-if="slot.item" name="item" :data="dataSource" />
|
||||
<span v-else>{{ dataSource.title }}</span>
|
||||
</transfer-checkbox>
|
||||
</li>
|
||||
</ul>
|
||||
@ -66,17 +68,18 @@
|
||||
</template>
|
||||
<script setup name="LayTransfer"></script>
|
||||
<script setup lang="ts">
|
||||
import { defineProps, Ref, ref, watch } from 'vue'
|
||||
import { computed, defineProps, Ref, ref, useSlots, watch } from 'vue'
|
||||
import { Recordable } from '/@src/module/type'
|
||||
import transferCheckbox from './component/checkbox.vue'
|
||||
import { check } from 'prettier'
|
||||
|
||||
const slot = useSlots()
|
||||
|
||||
const props = withDefaults(
|
||||
defineProps<{
|
||||
id?: string
|
||||
title?: string[]
|
||||
dataSource: Recordable[]
|
||||
selectedKeys: Array<string>
|
||||
}>(),
|
||||
{
|
||||
id: 'id',
|
||||
@ -148,14 +151,15 @@ watch(
|
||||
)
|
||||
|
||||
const add = function () {
|
||||
// 删除 leftDataSource 选中的元素
|
||||
|
||||
if(leftSelectedKeys.value.length === 0){
|
||||
return
|
||||
}
|
||||
|
||||
rightDataSource.value = leftDataSource.value.filter(
|
||||
(item) => leftSelectedKeys.value.indexOf(item.id) != -1
|
||||
)
|
||||
leftDataSource.value.forEach(item => {
|
||||
if( leftSelectedKeys.value.indexOf(item.id) != -1 ){
|
||||
rightDataSource.value.push(item)
|
||||
}
|
||||
})
|
||||
leftDataSource.value = leftDataSource.value.filter(
|
||||
(item) => leftSelectedKeys.value.indexOf(item.id) === -1
|
||||
)
|
||||
@ -166,9 +170,11 @@ const remove = function () {
|
||||
if(rightSelectedKeys.value.length === 0){
|
||||
return
|
||||
}
|
||||
leftDataSource.value = rightDataSource.value.filter(
|
||||
(item) => rightSelectedKeys.value.indexOf(item.id) != -1
|
||||
)
|
||||
rightDataSource.value.forEach(item => {
|
||||
if( rightSelectedKeys.value.indexOf(item.id) != -1 ){
|
||||
leftDataSource.value.push(item)
|
||||
}
|
||||
})
|
||||
rightDataSource.value = rightDataSource.value.filter(
|
||||
(item) => rightSelectedKeys.value.indexOf(item.id) === -1
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user