@bsgoal/common 2.15.3 → 2.15.4
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/index.mjs +1947 -1938
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +13 -13
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/bsgoal-base-search-table/index.vue +8 -2
- package/src/components/bsgoal-base-table/index.vue +10 -8
- package/src/components/bsgoal-base-tree-table/demo.vue +5 -1
- package/src/components/bsgoal-base-tree-table/index.vue +10 -5
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Author: canlong.shen
|
|
3
3
|
* @Date: 2023-04-18 17:04:47
|
|
4
4
|
* @LastEditors: canlong.shen
|
|
5
|
-
* @LastEditTime: 2023-06-28
|
|
5
|
+
* @LastEditTime: 2023-06-28 14:19:38
|
|
6
6
|
* @FilePath: \common\src\components\bsgoal-base-search-table\index.vue
|
|
7
7
|
* @Description: 查询+表格 基础组件
|
|
8
8
|
*
|
|
@@ -133,7 +133,7 @@ const props = defineProps({
|
|
|
133
133
|
}
|
|
134
134
|
})
|
|
135
135
|
|
|
136
|
-
const emits = defineEmits(['select', 'select-all', 'selection-change'])
|
|
136
|
+
const emits = defineEmits(['select', 'select-all', 'selection-change', 'on-total-change'])
|
|
137
137
|
|
|
138
138
|
const transferFoldStatus = ref(false)
|
|
139
139
|
provide('transferFoldStatus', transferFoldStatus)
|
|
@@ -196,6 +196,11 @@ const triggerSelectAll = (selection) => {
|
|
|
196
196
|
const triggerSelectionChange = (selection) => {
|
|
197
197
|
emits('selection-change', selection)
|
|
198
198
|
}
|
|
199
|
+
|
|
200
|
+
const triggerTotalChange = (total = 0) => {
|
|
201
|
+
emits('on-total-change', total)
|
|
202
|
+
}
|
|
203
|
+
|
|
199
204
|
// ---> E 触发事件 <---
|
|
200
205
|
|
|
201
206
|
// ---> S 暴露事件 <---
|
|
@@ -243,6 +248,7 @@ defineExpose({
|
|
|
243
248
|
@select="triggerSelect"
|
|
244
249
|
@select-all="triggerSelectAll"
|
|
245
250
|
@selection-change="triggerSelectionChange"
|
|
251
|
+
@on-total-change="triggerTotalChange"
|
|
246
252
|
>
|
|
247
253
|
<!-- S 顶部菜单 -->
|
|
248
254
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Author: canlong.shen
|
|
3
3
|
* @Date: 2023-04-10 11:29:04
|
|
4
4
|
* @LastEditors: canlong.shen
|
|
5
|
-
* @LastEditTime: 2023-06-28
|
|
5
|
+
* @LastEditTime: 2023-06-28 14:17:06
|
|
6
6
|
* @FilePath: \common\src\components\bsgoal-base-table\index.vue
|
|
7
7
|
* @Description:
|
|
8
8
|
*
|
|
@@ -136,8 +136,7 @@ const props = defineProps({
|
|
|
136
136
|
}
|
|
137
137
|
})
|
|
138
138
|
|
|
139
|
-
const emits = defineEmits(['select','select-all','selection-change'])
|
|
140
|
-
|
|
139
|
+
const emits = defineEmits(['select', 'select-all', 'selection-change','on-total-change'])
|
|
141
140
|
|
|
142
141
|
/**
|
|
143
142
|
* @Author: canlong.shen
|
|
@@ -220,6 +219,10 @@ watch(resData, (data) => {
|
|
|
220
219
|
}
|
|
221
220
|
})
|
|
222
221
|
|
|
222
|
+
watchEffect(() => {
|
|
223
|
+
emits('on-total-change', total.value)
|
|
224
|
+
})
|
|
225
|
+
|
|
223
226
|
// 查询
|
|
224
227
|
const refreshList = (params = {}) => {
|
|
225
228
|
searchParams.value = params
|
|
@@ -257,15 +260,14 @@ const triggerSelectionChange = (selection) => {
|
|
|
257
260
|
|
|
258
261
|
// ---> S 暴露事件 <---
|
|
259
262
|
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
+
const BSGOAL_EL_TABLE_REF = ref(null)
|
|
264
|
+
|
|
265
|
+
const clearSelection = () => {
|
|
263
266
|
BSGOAL_EL_TABLE_REF.value.clearSelection()
|
|
264
|
-
|
|
267
|
+
}
|
|
265
268
|
|
|
266
269
|
// ---> E 暴露事件 <---
|
|
267
270
|
|
|
268
|
-
|
|
269
271
|
// 暴露的属性
|
|
270
272
|
defineExpose({
|
|
271
273
|
refreshList,
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Author: canlong.shen
|
|
3
3
|
* @Date: 2023-06-20 09:20:51
|
|
4
4
|
* @LastEditors: canlong.shen
|
|
5
|
-
* @LastEditTime: 2023-06-28 14:
|
|
5
|
+
* @LastEditTime: 2023-06-28 14:22:20
|
|
6
6
|
* @FilePath: \common\src\components\bsgoal-base-tree-table\demo.vue
|
|
7
7
|
* @Description: 树 + 列表 + 演示
|
|
8
8
|
*
|
|
@@ -807,6 +807,9 @@ const triggerTableSelectAll = () => {
|
|
|
807
807
|
const triggerTableSelectionChange = () => {
|
|
808
808
|
console.log('triggerTableSelectionChange', triggerTableSelectionChange)
|
|
809
809
|
}
|
|
810
|
+
const triggerTableTotalChange = (total = 0) => {
|
|
811
|
+
console.log('triggerTableTotalChange', total)
|
|
812
|
+
}
|
|
810
813
|
|
|
811
814
|
const clearSelection = () => {
|
|
812
815
|
BSGOAL_BASE_TREE_TABLE_REF.value.clearSelection()
|
|
@@ -834,6 +837,7 @@ const clearSelection = () => {
|
|
|
834
837
|
@on-select-table="triggerTableSelect"
|
|
835
838
|
@on-select-all-table="triggerTableSelectAll"
|
|
836
839
|
@on-selection-change-table="triggerTableSelectionChange"
|
|
840
|
+
@on-total-change-table="triggerTableTotalChange"
|
|
837
841
|
>
|
|
838
842
|
<!-- <template #tree="{data}">
|
|
839
843
|
<div>{{ data }}</div>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Author: canlong.shen
|
|
3
3
|
* @Date: 2023-06-20 09:20:44
|
|
4
4
|
* @LastEditors: canlong.shen
|
|
5
|
-
* @LastEditTime: 2023-06-28 14:
|
|
5
|
+
* @LastEditTime: 2023-06-28 14:21:32
|
|
6
6
|
* @FilePath: \common\src\components\bsgoal-base-tree-table\index.vue
|
|
7
7
|
* @Description: 树结构 + 列表
|
|
8
8
|
*
|
|
@@ -177,7 +177,8 @@ const emits = defineEmits([
|
|
|
177
177
|
'on-add-tree',
|
|
178
178
|
'on-select-table',
|
|
179
179
|
'on-select-all-table',
|
|
180
|
-
'on-selection-change-table'
|
|
180
|
+
'on-selection-change-table',
|
|
181
|
+
'on-total-change-table'
|
|
181
182
|
])
|
|
182
183
|
|
|
183
184
|
// ---> S 注入插槽 <---
|
|
@@ -225,15 +226,18 @@ const refreshList = (params = {}) => {
|
|
|
225
226
|
}
|
|
226
227
|
|
|
227
228
|
// ---> S 触发事件 <---
|
|
228
|
-
const triggerSelect = (selection, row) => {
|
|
229
|
+
const triggerSelect = (selection = {}, row =[]) => {
|
|
229
230
|
emits('on-select-table', selection, row)
|
|
230
231
|
}
|
|
231
|
-
const triggerSelectAll = (selection) => {
|
|
232
|
+
const triggerSelectAll = (selection = {}) => {
|
|
232
233
|
emits('on-select-all-table', selection)
|
|
233
234
|
}
|
|
234
|
-
const triggerSelectionChange = (selection) => {
|
|
235
|
+
const triggerSelectionChange = (selection = {}) => {
|
|
235
236
|
emits('on-selection-change-table', selection)
|
|
236
237
|
}
|
|
238
|
+
const triggerTotalChange = (total = 0) => {
|
|
239
|
+
emits('on-total-change-table', total)
|
|
240
|
+
}
|
|
237
241
|
// ---> E 触发事件 <---
|
|
238
242
|
|
|
239
243
|
// ---> S 暴露事件 <---
|
|
@@ -294,6 +298,7 @@ const tableStyler = computed(() => {
|
|
|
294
298
|
@select="triggerSelect"
|
|
295
299
|
@select-all="triggerSelectAll"
|
|
296
300
|
@selection-change="triggerSelectionChange"
|
|
301
|
+
@on-total-change="triggerTotalChange"
|
|
297
302
|
>
|
|
298
303
|
<template v-for="slotName of slotNames" v-slot:[slotName]="{ row = {} }">
|
|
299
304
|
<slot :name="slotName" :row="row"></slot>
|