94 lines
3.0 KiB
Vue
94 lines
3.0 KiB
Vue
<template>
|
||
<tiny-grid :data="tableData">
|
||
<tiny-grid-column type="index" width="60"></tiny-grid-column>
|
||
<tiny-grid-column type="selection" width="60"></tiny-grid-column>
|
||
<tiny-grid-column field="name" title="名称"></tiny-grid-column>
|
||
<tiny-grid-column field="area" title="所属区域"></tiny-grid-column>
|
||
<tiny-grid-column field="address" title="地址"></tiny-grid-column>
|
||
<tiny-grid-column field="introduction" title="公司简介" show-overflow></tiny-grid-column>
|
||
<tiny-grid-column title="操作" width="100">
|
||
<template #default="data">
|
||
<div class="demo-custom-column">
|
||
<tiny-icon-search class="tiny-svg-size" @click="clickHandler(data.row)"></tiny-icon-search>
|
||
<tiny-icon-edit class="tiny-svg-size" @click="clickHandler(data.row)"></tiny-icon-edit>
|
||
</div>
|
||
</template>
|
||
</tiny-grid-column>
|
||
</tiny-grid>
|
||
</template>
|
||
|
||
<script setup lang="jsx">
|
||
import { ref } from 'vue'
|
||
import { Grid as TinyGrid, GridColumn as TinyGridColumn, Modal } from '@opentiny/vue'
|
||
import { iconEdit, iconSearch } from '@opentiny/vue-icon'
|
||
|
||
const tableData = ref([
|
||
{
|
||
id: '1',
|
||
name: 'GFD科技YX公司',
|
||
area: '华东区',
|
||
address: '福州',
|
||
introduction: '公司技术和研发实力雄厚,是国家863项目的参与者,并被政府认定为“高新技术企业”。'
|
||
},
|
||
{
|
||
id: '2',
|
||
name: 'WWWW科技YX公司',
|
||
area: '华南区',
|
||
address: '深圳福田区',
|
||
introduction: '公司技术和研发实力雄厚,是国家863项目的参与者,并被政府认定为“高新技术企业”。'
|
||
},
|
||
{
|
||
id: '3',
|
||
name: 'RFV有限责任公司',
|
||
area: '华南区',
|
||
address: '中山市',
|
||
introduction: '公司技术和研发实力雄厚,是国家863项目的参与者,并被政府认定为“高新技术企业”。'
|
||
},
|
||
{
|
||
id: '4',
|
||
name: 'TGBYX公司',
|
||
area: '华北区',
|
||
address: '梅州',
|
||
introduction: '公司技术和研发实力雄厚,是国家863项目的参与者,并被政府认定为“高新技术企业”。'
|
||
},
|
||
{
|
||
id: '5',
|
||
name: 'YHN科技YX公司',
|
||
area: '华南区',
|
||
address: '韶关',
|
||
introduction: '公司技术和研发实力雄厚,是国家863项目的参与者,并被政府认定为“高新技术企业”。'
|
||
},
|
||
{
|
||
id: '6',
|
||
name: '康康物业YX公司',
|
||
area: '华北区',
|
||
address: '广州天河区',
|
||
introduction: '公司技术和研发实力雄厚,是国家863项目的参与者,并被政府认定为“高新技术企业”。'
|
||
}
|
||
])
|
||
|
||
const TinyIconEdit = iconEdit()
|
||
const TinyIconSearch = iconSearch()
|
||
|
||
function clickHandler(row) {
|
||
Modal.message({ message: JSON.stringify(row), status: 'success' })
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
.demo-custom-column {
|
||
font-size: 0;
|
||
}
|
||
.demo-custom-column svg {
|
||
font-size: 16px;
|
||
fill: var(--ti-common-color-line-active);
|
||
}
|
||
.demo-custom-column svg:hover {
|
||
fill: #40a9ff;
|
||
cursor: pointer;
|
||
}
|
||
.demo-custom-column svg:not(:last-child) {
|
||
margin-right: 8px;
|
||
}
|
||
</style>
|