1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
| <script setup>
|
| import {reactive} from "vue";
| import {useRouter} from 'vue-router'
| let router=useRouter()
| const getTableRow = (row,type) =>{
| switch (type) {
| case 'edit' :{
| //alert('我接收到子组件传送的编辑信息')
| router.push({path: '/main/customer/CreateCustomer', query: { id: row.id }})
| break
| }
| case 'delete':{
| alert('我接收到子组件传送的删除信息')
| break
| }
| }
| }
|
|
|
| //子组件接收参数
|
| const gridOptions = reactive({
| border: "full",//表格加边框
| keepSource: true,//保持源数据
| align: 'center',//文字居中
| stripe:true,//斑马纹
| rowConfig: {isCurrent: true, isHover: true,height: 50},//鼠标移动或选择高亮
| id: 'CustomerList',
| showFooter: true,//显示脚
| printConfig: {},
| importConfig: {},
| exportConfig: {},
| scrollY:{ enabled: true },//开启虚拟滚动
| showOverflow:true,
| columnConfig: {
| resizable: true,
| useKey: true
| },
| filterConfig: { //筛选配置项
| remote: true
| },
| customConfig: {
| storage: true
| },
| editConfig: {
| trigger: 'click',
| mode: 'row',
| showStatus: true
| },//表头参数
| columns:[
| {type:'expand',fixed:"left",slots: { content:'content' },width: 50},
| {type: 'seq',fixed:"left", title: '自序', width: 80 },
| {title: '操作', width: 110, slots: { default: 'button_slot' },fixed:"left"},
| {field: '0', title: '客户编码',filters:[{ data: '' }],slots: { filter: 'num1_filter' }, sortable: true},
| {field: '1', title: '名称',filters:[{ data: '' }],slots: { filter: 'num1_filter' }, sortable: true},
| {field: '2', title: '客户等级',filters:[{ data: '' }],slots: { filter: 'num1_filter' }, sortable: true},
| {field: '3', title: '信用额度',filters:[{ data: '' }],slots: { filter: 'num1_filter' }, sortable: true},
| {field: '4', title: '地址',filters:[{ data: '' }],slots: { filter: 'num1_filter' }, sortable: true},
| {field: '5', title: '联系人',filters:[{ data: '' }],slots: { filter: 'num1_filter' }, sortable: true},
| {field: '6', title: '联系电话',filters:[{ data: '' }],slots: { filter: 'num1_filter' }, sortable: true}
| ],//表头按钮
| toolbarConfig: {
| buttons: [],
| import: false,
| export: true,
| print: true,
| zoom: true,
| custom: true
| },
| data: [
| {
| '0':'1',
| '1':'太仓卓高玻璃制品有限公司',
| '2':'A',
| '3':'100000',
| '4':'江苏太仓xxxx街道',
| '5':'张三',
| '6':'139xxxxxxxx',
|
| },
| {
| '0':'1',
| '1':'山西某某公司',
| '2':'A',
| '3':'100000',
| '4':'江苏太仓xxxx街道',
| '5':'张三',
| '6':'139xxxxxxxx',
|
| }
| ],//table body实际数据
| footerMethod ({ columns, data }) {//页脚函数
| return[
| columns.map((column, columnIndex) => {
| if (columnIndex === 0) {
| return '合计:'
| }
| // if (props.tableProp.footList.includes(column.field)) {
| // return sumNum(data, column.field)
| // }
| return ''
| })
| ]
| }
|
| })
|
|
|
| </script>
|
| <template>
| <div class="main-div-customer">
| <vxe-grid
| max-height="100%"
| @filter-change="filterChanged"
| class="mytable-scrollbar"
| ref="xGrid"
| v-bind="gridOptions"
|
| >
| <!-- @toolbar-button-click="toolbarButtonClickEvent"-->
| <!-- 下拉显示所有信息插槽-->
| <template #content="{ row }">
| <ul class="expand-wrapper">
| <li v-for="(item,index) in gridOptions.columns" v-show="item.field!=undefined ">
| <span style="font-weight: bold">{{item.title+': '}}</span>
| <span>{{ row[item.field] }}</span>
| </li>
| </ul>
| </template>
|
| <!--左边固定显示的插槽-->
| <template #button_slot="{ row }">
| <el-button @click="getTableRow(row,'edit')" link type="primary" size="small">编辑</el-button>
| <el-button @click="getTableRow(row,'delete')" link type="primary" size="small">删除</el-button>
| </template>
|
| <template #num1_filter="{ column, $panel }">
| <div>
| <div v-for="(option, index) in column.filters" :key="index">
| <input type="type" v-model="option.data" @input="changeFilterEvent($event, option, $panel)"/>
| </div>
| </div>
| </template>
|
|
| </vxe-grid>
| </div>
| </template>
|
| <style scoped>
| .main-div-customer{
| width: 99%;
| height: 100%;
| }
| </style>
|
|