vue2-client 1.22.39 → 1.22.46
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/.env.iot +1 -0
- package/.idea/af-vue2-client.iml +2 -3
- package/.idea/inspectionProfiles/Project_Default.xml +17 -0
- package/1yarn.lock +11850 -0
- package/logs/afgit.config.log +12 -0
- package/logs/afgit.config.log.2026-02-27 +7 -0
- package/logs/afgit.config_error.log +6 -0
- package/logs/afgit.config_error.log.2026-02-27 +3 -0
- package/package.json +1 -1
- package/pnpm-workspace.yaml +4 -0
- package/public/his/editor/mock/bind_data_with_images.html +78 -0
- package/public/his/editor/mock/blank.html +645 -0
- package/src/assets/img/80359c35a5465167cb25ff87bab49035d041a65558b35-YJOr3x.png +0 -0
- package/src/assets/img/hisLogo.png +0 -0
- package/src/assets/svg/unknown-icon.svg +3 -3
- package/src/base-client/components/common/AfMap/InfoWindowComponent.vue +141 -141
- package/src/base-client/components/common/AfMap/demo.vue +492 -492
- package/src/base-client/components/common/HIS/HButtons/HButtons.vue +89 -1
- package/src/base-client/components/common/HIS/HButtons/HButtonsSuffixDemo.vue +141 -0
- package/src/base-client/components/common/Upload/Upload.vue +2 -2
- package/src/base-client/components/common/XInspectionDetailDrawer/components/DeviceStatus.vue +1 -1
- package/src/base-client/components/his/XHisEditor/ImageReportDemo.vue +156 -0
- package/src/base-client/components/his/XHisEditor/XDocTree.vue +529 -529
- package/src/base-client/plugins/GetLoginInfoService.js +26 -1
- package/src/components/ImagePreview/ImagePreview.vue +323 -323
- package/src/constants/crypto.js +9 -1
- package/src/pages/login/Login.vue +107 -3
- package/src/router/async/router.map.js +6 -1
- package/src/services/user.js +7 -3
- package/src/utils/EncryptUtil.js +7 -2
- package/src/utils/login.js +29 -14
- package/src/utils/request.js +14 -3
- package/src/utils/util.js +27 -4
- package/vue.config.js +10 -0
- package/.idea/MarsCodeWorkspaceAppSettings.xml +0 -7
- package/.idea/deployment.xml +0 -14
- package/.idea/encodings.xml +0 -6
- package/.idea/gradle.xml +0 -7
- package/.idea/misc.xml +0 -6
package/.env.iot
CHANGED
package/.idea/af-vue2-client.iml
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="
|
|
3
|
-
<component name="NewModuleRootManager"
|
|
4
|
-
<exclude-output />
|
|
2
|
+
<module type="WEB_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
5
4
|
<content url="file://$MODULE_DIR$" />
|
|
6
5
|
<orderEntry type="inheritedJdk" />
|
|
7
6
|
<orderEntry type="sourceFolder" forTests="false" />
|
|
@@ -2,5 +2,22 @@
|
|
|
2
2
|
<profile version="1.0">
|
|
3
3
|
<option name="myName" value="Project Default" />
|
|
4
4
|
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
5
|
+
<inspection_tool class="HtmlUnknownTag" enabled="true" level="WARNING" enabled_by_default="true">
|
|
6
|
+
<option name="myValues">
|
|
7
|
+
<value>
|
|
8
|
+
<list size="7">
|
|
9
|
+
<item index="0" class="java.lang.String" itemvalue="nobr" />
|
|
10
|
+
<item index="1" class="java.lang.String" itemvalue="noembed" />
|
|
11
|
+
<item index="2" class="java.lang.String" itemvalue="comment" />
|
|
12
|
+
<item index="3" class="java.lang.String" itemvalue="noscript" />
|
|
13
|
+
<item index="4" class="java.lang.String" itemvalue="embed" />
|
|
14
|
+
<item index="5" class="java.lang.String" itemvalue="script" />
|
|
15
|
+
<item index="6" class="java.lang.String" itemvalue="a-descriptions-item" />
|
|
16
|
+
</list>
|
|
17
|
+
</value>
|
|
18
|
+
</option>
|
|
19
|
+
<option name="myCustomValuesEnabled" value="true" />
|
|
20
|
+
</inspection_tool>
|
|
21
|
+
<inspection_tool class="UsePropertyAccessSyntax" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
|
|
5
22
|
</profile>
|
|
6
23
|
</component>
|