tiny-vue/examples/docs/resources/pc/demo/select/nest-checkbox-grid.vue

50 lines
1.2 KiB
Vue

<template>
<div class="demo-select">
<tiny-select
v-model="radioValue"
value-field="id"
:multiple="true"
text-field="city"
render-type="grid"
:grid-op="gridOp"
placeholder="请选择"
></tiny-select>
</div>
</template>
<script lang="jsx">
import { Select } from '@opentiny/vue'
export default {
components: {
TinySelect: Select
},
data() {
return {
radioValue: ['001', '002'],
gridOp: {
data: [
{ id: '001', area: '华南区', province: '广东省', city: '广州市' },
{ id: '002', area: '华南区', province: '广东省', city: '深圳市' },
{ id: '003', area: '华南区', province: '广东省', city: '珠海市' },
{ id: '004', area: '华南区', province: '广东省', city: '佛山市' },
{ id: '005', area: '华南区', province: '广东省', city: '中山市' }
],
columns: [
{ type: 'selection', title: '' },
{ field: 'area', title: '区域', width: 90 },
{ field: 'province', title: '省份', width: 60 },
{ field: 'city', title: '城市', width: 60 }
]
}
}
}
}
</script>
<style scoped>
.demo-select .tiny-select {
width: 270px;
}
</style>