@ebiz/designer-components 0.0.50 → 0.0.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/designer-components.css +1 -1
- package/dist/index.mjs +587 -554
- package/package.json +2 -1
- package/src/components/EbizApproval.vue +13 -3
- package/src/components/EbizDiv.vue +33 -0
- package/src/components/EbizEmployeeSelector.vue +2 -2
- package/src/components/EbizVxeTable.vue +291 -0
- package/src/index.js +4 -1
- package/src/router/index.js +12 -1
- package/src/views/Home.vue +7 -1
- package/src/views/PermissionBoxDemo.vue +86 -0
- package/src/views/VxeTableDemo.vue +280 -0
@@ -0,0 +1,280 @@
|
|
1
|
+
<template>
|
2
|
+
<div class="demo-container">
|
3
|
+
<h1>VxeTable 表格组件示例</h1>
|
4
|
+
|
5
|
+
<div class="demo-section">
|
6
|
+
<h2>1. 基础表格</h2>
|
7
|
+
<EbizVxeTable
|
8
|
+
ref="basicTable"
|
9
|
+
:tableData="basicTableData"
|
10
|
+
:tableCols="basicTableCols"
|
11
|
+
:isPagination="false"
|
12
|
+
/>
|
13
|
+
</div>
|
14
|
+
<!--
|
15
|
+
<div class="demo-section">
|
16
|
+
<h2>2. 带分页的表格</h2>
|
17
|
+
<EbizVxeTable
|
18
|
+
ref="paginationTable"
|
19
|
+
@query="handleQuery"
|
20
|
+
v-model:currentPage="currentPage"
|
21
|
+
v-model:pageSize="pageSize"
|
22
|
+
:total="total"
|
23
|
+
:tableData="paginationTableData"
|
24
|
+
:tableCols="paginationTableCols"
|
25
|
+
/>
|
26
|
+
</div>
|
27
|
+
|
28
|
+
<div class="demo-section">
|
29
|
+
<h2>3. 树形表格</h2>
|
30
|
+
<EbizVxeTable
|
31
|
+
ref="treeTable"
|
32
|
+
:tableData="treeTableData"
|
33
|
+
:tableCols="treeTableCols"
|
34
|
+
:tableProp="treeTableProp"
|
35
|
+
:isPagination="false"
|
36
|
+
/>
|
37
|
+
</div>
|
38
|
+
|
39
|
+
<div class="demo-section">
|
40
|
+
<h2>4. 自定义渲染表格</h2>
|
41
|
+
<EbizVxeTable
|
42
|
+
ref="customTable"
|
43
|
+
:tableData="customTableData"
|
44
|
+
:tableCols="customTableCols"
|
45
|
+
:isPagination="false"
|
46
|
+
/>
|
47
|
+
</div> -->
|
48
|
+
</div>
|
49
|
+
</template>
|
50
|
+
|
51
|
+
<script setup>
|
52
|
+
import { ref, onMounted, h } from 'vue';
|
53
|
+
import EbizVxeTable from '../components/EbizVxeTable.vue';
|
54
|
+
|
55
|
+
// 基础表格数据
|
56
|
+
const basicTableData = ref([
|
57
|
+
{ id: 1, name: '张三', age: 28, gender: '男', department: '研发部', position: '前端开发' },
|
58
|
+
{ id: 2, name: '李四', age: 32, gender: '男', department: '产品部', position: '产品经理' },
|
59
|
+
{ id: 3, name: '王五', age: 24, gender: '女', department: '设计部', position: 'UI设计师' },
|
60
|
+
{ id: 4, name: '赵六', age: 35, gender: '男', department: '研发部', position: '后端开发' },
|
61
|
+
{ id: 5, name: '钱七', age: 29, gender: '女', department: '市场部', position: '市场专员' }
|
62
|
+
]);
|
63
|
+
|
64
|
+
const basicTableCols = ref([
|
65
|
+
{ field: 'name', title: '姓名', width: 100 },
|
66
|
+
{ field: 'age', title: '年龄', width: 80 },
|
67
|
+
{ field: 'gender', title: '性别', width: 80 },
|
68
|
+
{ field: 'department', title: '部门', width: 120 },
|
69
|
+
{ field: 'position', title: '职位', minWidth: 120 }
|
70
|
+
]);
|
71
|
+
|
72
|
+
// 分页表格数据
|
73
|
+
const currentPage = ref(1);
|
74
|
+
const pageSize = ref(10);
|
75
|
+
const total = ref(100);
|
76
|
+
const paginationTableData = ref([]);
|
77
|
+
const paginationTableCols = ref([
|
78
|
+
{ type: 'seq', title: '序号', width: 60 },
|
79
|
+
{ field: 'name', title: '姓名', width: 100 },
|
80
|
+
{ field: 'age', title: '年龄', width: 80 },
|
81
|
+
{ field: 'gender', title: '性别', width: 80 },
|
82
|
+
{ field: 'email', title: '邮箱', minWidth: 180 },
|
83
|
+
{ field: 'address', title: '地址', minWidth: 200 }
|
84
|
+
]);
|
85
|
+
|
86
|
+
// 树形表格数据
|
87
|
+
const treeTableData = ref([
|
88
|
+
{
|
89
|
+
id: 1,
|
90
|
+
name: '研发中心',
|
91
|
+
manager: '张总',
|
92
|
+
headcount: 120,
|
93
|
+
children: [
|
94
|
+
{
|
95
|
+
id: 11,
|
96
|
+
name: '前端组',
|
97
|
+
manager: '李经理',
|
98
|
+
headcount: 45,
|
99
|
+
children: [
|
100
|
+
{ id: 111, name: 'Vue小组', manager: '王组长', headcount: 15 },
|
101
|
+
{ id: 112, name: 'React小组', manager: '刘组长', headcount: 18 },
|
102
|
+
{ id: 113, name: '移动端小组', manager: '陈组长', headcount: 12 }
|
103
|
+
]
|
104
|
+
},
|
105
|
+
{
|
106
|
+
id: 12,
|
107
|
+
name: '后端组',
|
108
|
+
manager: '赵经理',
|
109
|
+
headcount: 75,
|
110
|
+
children: [
|
111
|
+
{ id: 121, name: 'Java小组', manager: '钱组长', headcount: 30 },
|
112
|
+
{ id: 122, name: 'Python小组', manager: '孙组长', headcount: 25 },
|
113
|
+
{ id: 123, name: 'Node小组', manager: '周组长', headcount: 20 }
|
114
|
+
]
|
115
|
+
}
|
116
|
+
]
|
117
|
+
},
|
118
|
+
{
|
119
|
+
id: 2,
|
120
|
+
name: '产品设计中心',
|
121
|
+
manager: '吴总',
|
122
|
+
headcount: 80,
|
123
|
+
children: [
|
124
|
+
{ id: 21, name: '产品组', manager: '郑经理', headcount: 35 },
|
125
|
+
{ id: 22, name: 'UI设计组', manager: '冯经理', headcount: 25 },
|
126
|
+
{ id: 23, name: 'UX设计组', manager: '蒋经理', headcount: 20 }
|
127
|
+
]
|
128
|
+
}
|
129
|
+
]);
|
130
|
+
|
131
|
+
const treeTableCols = ref([
|
132
|
+
{ field: 'name', title: '部门名称', width: 180, treeNode: true },
|
133
|
+
{ field: 'manager', title: '负责人', width: 120 },
|
134
|
+
{ field: 'headcount', title: '人数', width: 80 }
|
135
|
+
]);
|
136
|
+
|
137
|
+
const treeTableProp = ref({
|
138
|
+
'auto-resize': true,
|
139
|
+
border: true,
|
140
|
+
'row-id': 'id',
|
141
|
+
'highlight-current-row': true,
|
142
|
+
'show-overflow': true,
|
143
|
+
'tree-config': {
|
144
|
+
children: 'children',
|
145
|
+
indent: 20,
|
146
|
+
expandAll: true
|
147
|
+
}
|
148
|
+
});
|
149
|
+
|
150
|
+
// 自定义渲染表格数据
|
151
|
+
const customTableData = ref([
|
152
|
+
{ id: 1, name: '项目A', status: 'success', progress: 100, startDate: '2023-01-10', endDate: '2023-03-15' },
|
153
|
+
{ id: 2, name: '项目B', status: 'processing', progress: 65, startDate: '2023-02-20', endDate: '2023-05-30' },
|
154
|
+
{ id: 3, name: '项目C', status: 'warning', progress: 32, startDate: '2023-03-05', endDate: '2023-07-10' },
|
155
|
+
{ id: 4, name: '项目D', status: 'error', progress: 0, startDate: '2023-04-15', endDate: '2023-08-20' },
|
156
|
+
{ id: 5, name: '项目E', status: 'success', progress: 100, startDate: '2023-02-01', endDate: '2023-04-25' }
|
157
|
+
]);
|
158
|
+
|
159
|
+
const customTableCols = ref([
|
160
|
+
{ field: 'name', title: '项目名称', width: 120 },
|
161
|
+
{
|
162
|
+
field: 'status',
|
163
|
+
title: '状态',
|
164
|
+
width: 100,
|
165
|
+
type: 'jsx',
|
166
|
+
render: ({ row }) => {
|
167
|
+
const statusMap = {
|
168
|
+
success: { text: '完成', color: '#52c41a' },
|
169
|
+
processing: { text: '进行中', color: '#1677ff' },
|
170
|
+
warning: { text: '警告', color: '#faad14' },
|
171
|
+
error: { text: '错误', color: '#ff4d4f' }
|
172
|
+
};
|
173
|
+
const status = statusMap[row.status] || { text: '未知', color: '#999' };
|
174
|
+
return h('span', {
|
175
|
+
style: {
|
176
|
+
padding: '2px 8px',
|
177
|
+
borderRadius: '4px',
|
178
|
+
backgroundColor: status.color + '20',
|
179
|
+
color: status.color,
|
180
|
+
border: `1px solid ${status.color}`
|
181
|
+
}
|
182
|
+
}, status.text);
|
183
|
+
}
|
184
|
+
},
|
185
|
+
{
|
186
|
+
field: 'progress',
|
187
|
+
title: '进度',
|
188
|
+
width: 180,
|
189
|
+
type: 'jsx',
|
190
|
+
render: ({ row }) => {
|
191
|
+
return h('div', {
|
192
|
+
style: {
|
193
|
+
width: '100%',
|
194
|
+
background: '#f5f5f5',
|
195
|
+
borderRadius: '4px',
|
196
|
+
height: '16px'
|
197
|
+
}
|
198
|
+
}, [
|
199
|
+
h('div', {
|
200
|
+
style: {
|
201
|
+
width: `${row.progress}%`,
|
202
|
+
background: row.progress === 100 ? '#52c41a' : '#1677ff',
|
203
|
+
borderRadius: '4px',
|
204
|
+
height: '16px',
|
205
|
+
transition: 'width 0.3s'
|
206
|
+
}
|
207
|
+
}, ''),
|
208
|
+
h('span', {
|
209
|
+
style: {
|
210
|
+
position: 'absolute',
|
211
|
+
top: '50%',
|
212
|
+
left: '50%',
|
213
|
+
transform: 'translate(-50%, -50%)',
|
214
|
+
fontSize: '12px',
|
215
|
+
color: row.progress > 50 ? '#fff' : '#333'
|
216
|
+
}
|
217
|
+
}, `${row.progress}%`)
|
218
|
+
]);
|
219
|
+
}
|
220
|
+
},
|
221
|
+
{ field: 'startDate', title: '开始日期', width: 120 },
|
222
|
+
{ field: 'endDate', title: '结束日期', width: 120 }
|
223
|
+
]);
|
224
|
+
|
225
|
+
// 处理分页查询
|
226
|
+
const handleQuery = (page, size) => {
|
227
|
+
// 模拟异步加载数据
|
228
|
+
setTimeout(() => {
|
229
|
+
const list = [];
|
230
|
+
const startIndex = (page - 1) * size;
|
231
|
+
for (let i = 0; i < size; i++) {
|
232
|
+
if (startIndex + i < total.value) {
|
233
|
+
list.push({
|
234
|
+
id: startIndex + i + 1,
|
235
|
+
name: `用户${startIndex + i + 1}`,
|
236
|
+
age: Math.floor(Math.random() * 40) + 20,
|
237
|
+
gender: Math.random() > 0.5 ? '男' : '女',
|
238
|
+
email: `user${startIndex + i + 1}@example.com`,
|
239
|
+
address: `北京市朝阳区某某街道第${Math.floor(Math.random() * 100) + 1}号`
|
240
|
+
});
|
241
|
+
}
|
242
|
+
}
|
243
|
+
paginationTableData.value = list;
|
244
|
+
// 完成加载
|
245
|
+
if (list.length === 0) {
|
246
|
+
// 如果没有数据,则回到第一页
|
247
|
+
currentPage.value = 1;
|
248
|
+
}
|
249
|
+
}, 300);
|
250
|
+
};
|
251
|
+
|
252
|
+
onMounted(() => {
|
253
|
+
// 初始加载分页表格数据
|
254
|
+
handleQuery(currentPage.value, pageSize.value);
|
255
|
+
});
|
256
|
+
</script>
|
257
|
+
|
258
|
+
<style scoped>
|
259
|
+
.demo-container {
|
260
|
+
padding: 20px;
|
261
|
+
}
|
262
|
+
|
263
|
+
.demo-section {
|
264
|
+
margin-bottom: 40px;
|
265
|
+
}
|
266
|
+
|
267
|
+
h1 {
|
268
|
+
font-size: 24px;
|
269
|
+
margin-bottom: 20px;
|
270
|
+
color: #333;
|
271
|
+
}
|
272
|
+
|
273
|
+
h2 {
|
274
|
+
font-size: 18px;
|
275
|
+
margin-bottom: 15px;
|
276
|
+
color: #333;
|
277
|
+
padding-bottom: 8px;
|
278
|
+
border-bottom: 1px solid #eee;
|
279
|
+
}
|
280
|
+
</style>
|