parent
f2aad8473d
commit
d912224992
@ -0,0 +1,175 @@
|
||||
<!-- 仅做模块化展示使用 -->
|
||||
<template>
|
||||
<div>
|
||||
<lkyTable
|
||||
:table_pagination_width="table_pagination_width"
|
||||
:table_pagination_height="table_pagination_height"
|
||||
:table_data="table_data"
|
||||
:table_height="table_height"
|
||||
:table_select="table_select"
|
||||
:table_index="table_index"
|
||||
:table_columns="table_columns"
|
||||
:table_operation="table_operation"
|
||||
:operation_label="operation_label"
|
||||
:operation_text="operation_text"
|
||||
:page_sizes="page_sizes"
|
||||
:pageSize="pageSize"
|
||||
:pageNum="pageNum"
|
||||
:total="total"
|
||||
@open_event="open_event"
|
||||
@size_change="size_change"
|
||||
@num_change="num_change"
|
||||
></lkyTable>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
table_pagination_width: "60",
|
||||
table_pagination_height: "60",
|
||||
table_data: [
|
||||
{
|
||||
company: "宁波保润有限石化公司",
|
||||
personNum: "22",
|
||||
idcard: "34567",
|
||||
unit: "最小单位",
|
||||
level: "一级",
|
||||
pic_child:'https://t12.baidu.com/it/u=2944858655,3260611328&fm=58',
|
||||
picTwo:'https://t12.baidu.com/it/u=3165178178,1926556480&fm=58',
|
||||
},
|
||||
{
|
||||
company: "宁波保润石化公司",
|
||||
personNum: "22",
|
||||
idcard: "34567",
|
||||
unit: "最小单位",
|
||||
level: "四级",
|
||||
pic_child:'https://t12.baidu.com/it/u=3165178178,1926556480&fm=58',
|
||||
picTwo:'https://t12.baidu.com/it/u=3165178178,1926556480&fm=58',
|
||||
},
|
||||
{
|
||||
company: "宁波保润石化公司",
|
||||
personNum: "22",
|
||||
idcard: "34567",
|
||||
unit: "最小单位",
|
||||
level: "一级",
|
||||
pic_child:'1222.png',
|
||||
picTwo:'https://t12.baidu.com/it/u=3165178178,1926556480&fm=58',
|
||||
},
|
||||
{
|
||||
company: "宁波保润石化公司",
|
||||
personNum: "22",
|
||||
idcard: "34567",
|
||||
unit: "最小单位",
|
||||
level: "三级",
|
||||
pic_child:'1222.png',
|
||||
picTwo:'https://t12.baidu.com/it/u=3165178178,1926556480&fm=58',
|
||||
},
|
||||
{
|
||||
company: "宁波保润石化公司",
|
||||
personNum: "22",
|
||||
idcard: "34567",
|
||||
unit: "最小单位",
|
||||
level: "一级",
|
||||
pic_child:'1222.png',
|
||||
picTwo:'https://t12.baidu.com/it/u=3165178178,1926556480&fm=58',
|
||||
},
|
||||
{
|
||||
company: "宁波保润石化公司",
|
||||
personNum: "22",
|
||||
idcard: "34567",
|
||||
unit: "最小单位",
|
||||
level: "二级",
|
||||
pic:'1000.png',
|
||||
picTwo:'https://t12.baidu.com/it/u=3165178178,1926556480&fm=58',
|
||||
pic_child:'1222.png',
|
||||
},
|
||||
],
|
||||
table_height: "592", // 表格高度根据实际场景确定高度
|
||||
table_select: false,
|
||||
table_index: true,
|
||||
table_columns: [
|
||||
{
|
||||
prop: "company_all",
|
||||
label: "公司全览",
|
||||
children: [
|
||||
{
|
||||
prop: "company",
|
||||
label: "公司名称",
|
||||
width: "180",
|
||||
},
|
||||
{
|
||||
prop: "personPic",
|
||||
label: "个人照片",
|
||||
width: "120",
|
||||
picture: true,
|
||||
},
|
||||
{
|
||||
prop: "personNum",
|
||||
label: "公司人数",
|
||||
width: "120",
|
||||
},
|
||||
{
|
||||
prop: "idcard",
|
||||
label: "公司id",
|
||||
width: "90",
|
||||
},
|
||||
{
|
||||
prop: "unit",
|
||||
label: "公司单位",
|
||||
width: "180",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
prop: "level",
|
||||
label: "公司等级",
|
||||
width: "80",
|
||||
},
|
||||
{
|
||||
prop: "pic",
|
||||
label: "公司照片",
|
||||
width: "120",
|
||||
picture: true,
|
||||
},
|
||||
{
|
||||
prop: "person_pic",
|
||||
label: "个人照片",
|
||||
width: "100",
|
||||
picture_two: true,
|
||||
},
|
||||
],
|
||||
table_operation: true,
|
||||
operation_label: "操作",
|
||||
operation_text: "详情",
|
||||
page_sizes: [4, 6],
|
||||
pageSize: 4,
|
||||
pageNum: 1,
|
||||
total: 8,
|
||||
pagination_width: "60",
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
get_search() {
|
||||
console.log("123");
|
||||
},
|
||||
// 表格详情点击事件
|
||||
open_event(row) {
|
||||
console.log("row456", row);
|
||||
},
|
||||
// 分页--每页多少条
|
||||
size_change(val) {
|
||||
this.pageNum = 1;
|
||||
this.pageSize = val;
|
||||
this.get_search();
|
||||
},
|
||||
// 分页--前往哪一页
|
||||
num_change(val) {
|
||||
this.pageNum = val;
|
||||
this.get_search();
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="less" scoped>
|
||||
</style>
|
Loading…
Reference in new issue