@bsgoal/common 2.14.2 → 2.14.3
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 +5 -4
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/bsgoal-base-form/index.vue +2 -1
- package/src/components/bsgoal-base-search-table/demo.vue +1 -2
- package/src/components/bsgoal-base-search-table/index.vue +2 -2
- package/src/components/bsgoal-base-table/index.vue +1 -1
- package/src/components/bsgoal-base-table-pagination/index.vue +1 -1
- package/src/components/bsgoal-base-tree-table/index.vue +2 -2
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Author: canlong.shen
|
|
3
3
|
* @Date: 2023-04-17 11:44:29
|
|
4
4
|
* @LastEditors: canlong.shen
|
|
5
|
-
* @LastEditTime: 2023-
|
|
5
|
+
* @LastEditTime: 2023-06-26 11:56:55
|
|
6
6
|
* @FilePath: \common\src\components\bsgoal-base-form\index.vue
|
|
7
7
|
* @Description: 表单公共组件
|
|
8
8
|
*
|
|
@@ -510,6 +510,7 @@ defineExpose({
|
|
|
510
510
|
<template v-if="type === ComponentTypeEnums.SELECT">
|
|
511
511
|
<el-select
|
|
512
512
|
v-model="model[prop]"
|
|
513
|
+
no-data-text="暂无数据"
|
|
513
514
|
:multiple="multiple"
|
|
514
515
|
:placeholder="placeholderSet(type, label, placeholder)"
|
|
515
516
|
@change="triggerValueChange(type, prop)"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Author: canlong.shen
|
|
3
3
|
* @Date: 2023-04-18 17:04:53
|
|
4
4
|
* @LastEditors: canlong.shen
|
|
5
|
-
* @LastEditTime: 2023-06-
|
|
5
|
+
* @LastEditTime: 2023-06-26 11:52:21
|
|
6
6
|
* @FilePath: \common\src\components\bsgoal-base-search-table\demo.vue
|
|
7
7
|
* @Description: 查询 + 表格 组合公共组件
|
|
8
8
|
*
|
|
@@ -747,7 +747,6 @@ const task = (done = () => {}, rows = {}) => {
|
|
|
747
747
|
:fetch="fetch"
|
|
748
748
|
:config-options="configOptions"
|
|
749
749
|
:expression="75"
|
|
750
|
-
:page-size="40"
|
|
751
750
|
@on-search="triggerSearch"
|
|
752
751
|
>
|
|
753
752
|
<!--
|
|
@@ -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-
|
|
5
|
+
* @LastEditTime: 2023-06-26 11:53:22
|
|
6
6
|
* @FilePath: \common\src\components\bsgoal-base-search-table\index.vue
|
|
7
7
|
* @Description: 查询+表格 基础组件
|
|
8
8
|
*
|
|
@@ -129,7 +129,7 @@ const props = defineProps({
|
|
|
129
129
|
*/
|
|
130
130
|
pageSize: {
|
|
131
131
|
type: [Number],
|
|
132
|
-
default:
|
|
132
|
+
default: 20
|
|
133
133
|
}
|
|
134
134
|
})
|
|
135
135
|
|
|
@@ -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-
|
|
5
|
+
* @LastEditTime: 2023-06-26 11:54:08
|
|
6
6
|
* @FilePath: \common\src\components\bsgoal-base-tree-table\index.vue
|
|
7
7
|
* @Description: 树结构 + 列表
|
|
8
8
|
*
|
|
@@ -153,7 +153,7 @@ const props = defineProps({
|
|
|
153
153
|
*/
|
|
154
154
|
pageSize: {
|
|
155
155
|
type: [Number],
|
|
156
|
-
default:
|
|
156
|
+
default: 20
|
|
157
157
|
}
|
|
158
158
|
})
|
|
159
159
|
|