This commit is contained in:
落小梅 2021-10-11 16:18:02 +08:00
commit 71e07cb0ac
4 changed files with 53 additions and 28 deletions

View File

@ -127,7 +127,7 @@ export default {
<template> <template>
{{selectedKeys}} {{selectedKeys}}
<lay-table :columns="columns" id="id" :dataSource="dataSource" default-toolbar="true" :selectedKeys="selectedKeys" checkbox="true"> <lay-table :columns="columns" id="id" :dataSource="dataSource" default-toolbar="true" :selectedKeys="selectedKeys" @changeSelectedKeys="changeSelectedKeys" checkbox="true">
<template v-slot:toolbar> <template v-slot:toolbar>
<lay-button>新增</lay-button> <lay-button>新增</lay-button>
<lay-button>删除</lay-button> <lay-button>删除</lay-button>
@ -149,6 +149,10 @@ export default {
const selectedKeys = ref(['1']) const selectedKeys = ref(['1'])
const changeSelectedKeys = function(val) {
selectedKeys.value = val
}
const columns = [ const columns = [
{ {
title:"账户", title:"账户",
@ -181,6 +185,7 @@ export default {
columns, columns,
dataSource, dataSource,
selectedKeys, selectedKeys,
changeSelectedKeys
} }
} }
} }

View File

@ -8,7 +8,7 @@
'layui-checkbox-disbaled layui-disabled': disabled, 'layui-checkbox-disbaled layui-disabled': disabled,
}, },
'layui-form-checkbox', 'layui-form-checkbox',
hasValue ? 'layui-form-checked' : '', props.modelValue.includes(props.label) ? 'layui-form-checked' : '',
]" ]"
:lay-skin="skin" :lay-skin="skin"
> >
@ -24,7 +24,7 @@ import { defineProps, ref, watch } from 'vue'
const props = const props =
defineProps<{ defineProps<{
modelValue: Array<unknown> modelValue: string[]
label: string label: string
disabled?: boolean disabled?: boolean
name?: string name?: string
@ -33,14 +33,6 @@ const props =
const hasValue = ref(false) const hasValue = ref(false)
watch(props.modelValue, (val) => {
if (props.modelValue.includes(props.label)) {
hasValue.value = true
} else {
hasValue.value = false
}
},{immediate: true})
const emit = defineEmits(['update:modelValue']) const emit = defineEmits(['update:modelValue'])
const handleClick = function () { const handleClick = function () {
@ -51,14 +43,6 @@ const handleClick = function () {
let index = props.modelValue.indexOf(props.label) let index = props.modelValue.indexOf(props.label)
props.modelValue.splice(index, 1) props.modelValue.splice(index, 1)
} }
props.modelValue.includes(props.label)
? (hasValue.value = true)
: (hasValue.value = false)
if (props.modelValue.includes(props.label)) {
hasValue.value = true
} else {
hasValue.value = false
}
emit('update:modelValue', props.modelValue) emit('update:modelValue', props.modelValue)
} }
} }

View File

@ -26,7 +26,7 @@
</template> </template>
<script setup name="LayMenuItem" lang="ts"> <script setup name="LayMenuItem" lang="ts">
import { defineProps, inject, provide, Ref, ref, useSlots } from 'vue' import { defineProps, inject, Ref, ref, useSlots } from 'vue'
const slots = useSlots() const slots = useSlots()
const props = const props =

View File

@ -29,7 +29,11 @@
<tr> <tr>
<th class="layui-table-col-special" v-if="checkbox"> <th class="layui-table-col-special" v-if="checkbox">
<div class="layui-table-cell laytable-cell-checkbox"> <div class="layui-table-cell laytable-cell-checkbox">
<lay-checkbox skin="primary" v-model="tableSelectedKeys" label="all"></lay-checkbox> <lay-checkbox
skin="primary"
v-model="allSelectedKeys"
label="all"
></lay-checkbox>
</div> </div>
</th> </th>
<th v-for="column in columns" :key="column"> <th v-for="column in columns" :key="column">
@ -51,7 +55,11 @@
<tr> <tr>
<td class="layui-table-col-special" v-if="checkbox"> <td class="layui-table-col-special" v-if="checkbox">
<div class="layui-table-cell laytable-cell-checkbox"> <div class="layui-table-cell laytable-cell-checkbox">
<lay-checkbox skin="primary" v-model="tableSelectedKeys" :label="data[id]"></lay-checkbox> <lay-checkbox
skin="primary"
v-model="tableSelectedKeys"
:label="data[id]"
></lay-checkbox>
</div> </div>
</td> </td>
@ -105,28 +113,56 @@
</div> </div>
</template> </template>
<script setup name="LayTable" lang="ts"> <script setup name="LayTable" lang="ts">
import { defineProps, ref, useSlots, watch, withDefaults, defineEmits } from 'vue' import {
defineProps,
ref,
useSlots,
watch,
withDefaults,
defineEmits,
computed,
} from 'vue'
const props = withDefaults( const props = withDefaults(
defineProps<{ defineProps<{
id?: string, id?: string
skin?: string skin?: string
page?: Object page?: Object
checkbox?: Boolean checkbox?: Boolean
columns?: Object[] columns?: Object[]
dataSource?: Object[] dataSource: Object[]
defaultToolbar?: Boolean defaultToolbar?: Boolean
selectedKeys: Array<String> selectedKeys: Array<String>
}>(), }>(),
{ {
id: "id", id: 'id',
selectedKeys: function() { return [] } dataSource: function () {
return []
},
selectedKeys: function () {
return []
},
} }
) )
const allSelectedKeys = ref([])
const tableSelectedKeys = ref(props.selectedKeys) const tableSelectedKeys = ref(props.selectedKeys)
const emit = defineEmits(['change']) watch(
allSelectedKeys,
function (val: String[]) {
const ids = props.dataSource.map((item: any) => {
return item[props.id]
})
tableSelectedKeys.value.splice(0, ids.length)
if (val.includes('all')) {
ids.forEach(id => { tableSelectedKeys.value.push(id) })
}
},
{ deep: true }
)
const emit = defineEmits(['change', 'changeSelectedKeys'])
const slot = useSlots() const slot = useSlots()
const slots = slot.default && slot.default() const slots = slot.default && slot.default()