bri-components 1.3.54 → 1.3.56
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bri-components",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.56",
|
|
4
4
|
"author": "dengshanghui",
|
|
5
5
|
"description": "a component lib for vue project",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"ali-oss": "^6.13.1",
|
|
34
34
|
"axios": "^0.23.0",
|
|
35
|
-
"bri-datas": "^1.1.
|
|
35
|
+
"bri-datas": "^1.1.63",
|
|
36
36
|
"jshint": "^2.12.0",
|
|
37
37
|
"jsonlint": "^1.6.3",
|
|
38
38
|
"minio": "7.1.0",
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
<!-- 级联表头 的下拉 -->
|
|
44
44
|
<dsh-dropdown
|
|
45
45
|
v-if="
|
|
46
|
+
!isSearching &&
|
|
46
47
|
column.colType === 'tree' &&
|
|
47
48
|
column.level === treeColumns.length &&
|
|
48
49
|
$getOperationList(getTreeThBtns(column)).length
|
|
@@ -127,7 +128,7 @@
|
|
|
127
128
|
|
|
128
129
|
<!-- 操作下拉 -->
|
|
129
130
|
<dsh-dropdown
|
|
130
|
-
v-if="$getOperationList(getTreeTdBtns(column, row, row[column._key])).length"
|
|
131
|
+
v-if="!isSearching && $getOperationList(getTreeTdBtns(column, row, row[column._key])).length"
|
|
131
132
|
class="table-td-tree-dropdown"
|
|
132
133
|
menuClass="table-td-tree-dropdown-list"
|
|
133
134
|
trigger="hover"
|
|
@@ -223,6 +224,7 @@
|
|
|
223
224
|
<!-- 级联表头 的下拉 -->
|
|
224
225
|
<dsh-dropdown
|
|
225
226
|
v-if="
|
|
227
|
+
!isSearching &&
|
|
226
228
|
column.colType === 'tree' &&
|
|
227
229
|
column.level === treeColumns.length &&
|
|
228
230
|
$getOperationList(getTreeThBtns(column)).length
|
|
@@ -307,7 +309,7 @@
|
|
|
307
309
|
|
|
308
310
|
<!-- 操作下拉 -->
|
|
309
311
|
<dsh-dropdown
|
|
310
|
-
v-if="$getOperationList(getTreeTdBtns(column, row, row[column._key])).length"
|
|
312
|
+
v-if="!isSearching && $getOperationList(getTreeTdBtns(column, row, row[column._key])).length"
|
|
311
313
|
class="table-td-tree-dropdown"
|
|
312
314
|
menuClass="table-td-tree-dropdown-list"
|
|
313
315
|
trigger="hover"
|