bri-components 1.5.20 → 1.5.22
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/lib/5.bri-components.min.js +1 -1
- package/lib/bri-components.min.js +3 -3
- package/package.json +2 -2
- package/src/components/controls/base/DshCoordinates.vue +9 -1
- package/src/components/controls/base/DshSelect/DshSelectAll.vue +1 -1
- package/src/components/controls/senior/correlation.vue +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bri-components",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.22",
|
|
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.4.
|
|
35
|
+
"bri-datas": "^1.4.7",
|
|
36
36
|
"jshint": "^2.12.0",
|
|
37
37
|
"jsonlint": "^1.6.3",
|
|
38
38
|
"minio": "7.1.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<!-- 单选模式 编辑 -->
|
|
3
3
|
<div
|
|
4
|
-
v-if="!multipleMode && canEdit"
|
|
4
|
+
v-if="!multipleMode && canEdit && propsObj._enterType !== 'calculate'"
|
|
5
5
|
class="DshCoordinates"
|
|
6
6
|
>
|
|
7
7
|
<bri-tooltip
|
|
@@ -170,6 +170,11 @@
|
|
|
170
170
|
{{ emptyShowVal }}
|
|
171
171
|
</div>
|
|
172
172
|
</div>
|
|
173
|
+
<div v-else-if="propsObj._enterType === 'calculate'"
|
|
174
|
+
class="DshCoordinates-show"
|
|
175
|
+
>
|
|
176
|
+
<span :class="{'nodata': !showVal}">{{ showVal || '暂无内容' }}</span>
|
|
177
|
+
</div>
|
|
173
178
|
</template>
|
|
174
179
|
|
|
175
180
|
<script>
|
|
@@ -574,4 +579,7 @@
|
|
|
574
579
|
}
|
|
575
580
|
}
|
|
576
581
|
}
|
|
582
|
+
.nodata{
|
|
583
|
+
color: #999;
|
|
584
|
+
}
|
|
577
585
|
</style>
|