|
|
|
@ -48,6 +48,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
//表格
|
|
|
|
|
const columns = [
|
|
|
|
|
{ title: "名称", dataIndex: "name", width: 100, key: "1", align: "center" },
|
|
|
|
|
{
|
|
|
|
@ -75,6 +76,7 @@ const columns = [
|
|
|
|
|
scopedSlots: { customRender: "action" },
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
//数据
|
|
|
|
|
const data = [
|
|
|
|
|
{
|
|
|
|
|
key: '1',
|
|
|
|
@ -86,6 +88,7 @@ const data = [
|
|
|
|
|
operation: '',
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
//左边数行控件
|
|
|
|
|
const treeData = [
|
|
|
|
|
{
|
|
|
|
|
title: "广西印象物业服务有限公司",
|
|
|
|
@ -143,6 +146,7 @@ const treeData = [
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
//表格选择框
|
|
|
|
|
const rowSelection = {
|
|
|
|
|
onChange: (selectedRowKeys, selectedRows) => {
|
|
|
|
|
console.log(`selectedRowKeys: ${selectedRowKeys}`, 'selectedRows: ', selectedRows);
|
|
|
|
|