vue2-client 1.16.35 → 1.16.37
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 +112 -112
- package/src/base-client/components/common/HIS/HButtons/HButtons.vue +366 -365
- package/src/base-client/components/common/HIS/HFormGroup/HFormGroup.vue +120 -0
- package/src/base-client/components/common/HIS/HFormGroup/index.js +3 -0
- package/src/base-client/components/common/HIS/demo.vue +61 -54
- package/src/base-client/components/common/XFormTable/demo.vue +45 -7
- package/src/base-client/components/common/XReport/print.js +186 -186
- package/src/base-client/components/common/XReportGrid/XReportTrGroup.vue +824 -821
- package/src/base-client/components/common/XWebSocketProgress/index.vue +6 -1
- package/src/base-client/components/his/XHisEditor/XHisEditor.vue +705 -705
- package/src/base-client/components/his/threeTestOrders/editor.vue +113 -113
- package/src/pages/userInfoDetailManage/ExceptionRecordQuery/index.vue +45 -0
- package/src/pages/userInfoDetailManage/userInfoDetailQueryTabs.vue +4 -2
- package/src/router/async/router.map.js +129 -129
- package/src/utils/map-utils.js +47 -47
- package/vue.config.js +0 -6
@@ -6,7 +6,7 @@
|
|
6
6
|
style="padding-right: 20px;" />
|
7
7
|
|
8
8
|
<!-- 连接状态指示 -->
|
9
|
-
<div class="connection-status">
|
9
|
+
<div v-if="showConnectionStatus" class="connection-status">
|
10
10
|
<a-tooltip :title="connectionStatusText">
|
11
11
|
<a-badge
|
12
12
|
:status="connectionBadgeStatus"
|
@@ -62,6 +62,11 @@ export default {
|
|
62
62
|
}
|
63
63
|
},
|
64
64
|
computed: {
|
65
|
+
// 是否显示连接状态
|
66
|
+
showConnectionStatus () {
|
67
|
+
return this.progressValue < 100
|
68
|
+
},
|
69
|
+
|
65
70
|
// 连接状态文本
|
66
71
|
connectionStatusText () {
|
67
72
|
if (this.connectionState.isConnected) {
|