vue2-client 1.10.33 → 1.10.35

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.
Files changed (23) hide show
  1. package/package.json +107 -107
  2. package/src/App.vue +196 -196
  3. package/src/base-client/components/common/XAddNativeForm/demo.vue +43 -43
  4. package/src/base-client/components/common/XAddReport/XAddReport.vue +1 -1
  5. package/src/base-client/components/common/XConversation/XConversation.vue +12 -0
  6. package/src/base-client/components/common/XForm/XForm.vue +393 -393
  7. package/src/base-client/components/common/XForm/XFormItem.vue +1248 -1248
  8. package/src/base-client/components/common/XFormCol/XFormCol.vue +157 -157
  9. package/src/base-client/components/common/XFormTable/XFormTable.vue +12 -0
  10. package/src/base-client/components/common/XIntervalPicker/XIntervalPicker.vue +121 -121
  11. package/src/base-client/components/common/XReportDrawer/XReportDrawer.vue +1 -1
  12. package/src/base-client/components/common/XReportGrid/XReport.vue +1079 -1070
  13. package/src/base-client/components/common/XReportGrid/XReportDemo.vue +46 -47
  14. package/src/base-client/components/common/XReportGrid/XReportDesign.vue +628 -628
  15. package/src/base-client/components/common/XReportGrid/XReportJsonRender.vue +380 -380
  16. package/src/base-client/components/common/XReportGrid/XReportTrGroup.vue +1104 -1104
  17. package/src/base-client/components/common/XReportGrid/print.js +184 -184
  18. package/src/base-client/components/common/XTab/XTab.vue +57 -25
  19. package/src/components/cache/AKeepAlive.js +179 -179
  20. package/src/layouts/BlankView.vue +78 -78
  21. package/src/pages/ReportGrid/index.vue +76 -76
  22. package/src/router/async/router.map.js +2 -2
  23. package/src/utils/microAppUtils.js +49 -49
@@ -1,47 +1,46 @@
1
- <template>
2
- <div id="test">
3
- <a-card :bordered="false">
4
- <XReport
5
- ref="main"
6
- :use-oss-for-img="false"
7
- config-name="admissionDiagnosisCover"
8
- server-name="af-his"
9
- :show-img-in-cell="true"
10
- :display-only="true"
11
- :edit-mode="false"
12
- :show-save-button="false"
13
- :no-padding="true"
14
- :dont-format="true"/>
15
- </a-card>
16
- </div>
17
- </template>
18
-
19
- <script>
20
- import XReport from './XReport'
21
- import XAddReport from '../XAddReport/XAddReport.vue'
22
- // eslint-disable-next-line no-unused-vars
23
- import { exportHTMLNodeToPDF } from '@vue2-client/utils/htmlToPDFApi'
24
-
25
- export default {
26
- name: 'XReportDemo',
27
- components: {
28
- XReport, XAddReport
29
- },
30
- mounted () {
31
- // this.$refs.xAddReport.init({
32
- // configName: 'skinTestExecuActionCover',
33
- // selectedId: '11111',
34
- // mixinData: {}
35
- // })
36
- },
37
- data () {
38
- return {
39
- }
40
- },
41
- methods: {
42
- }
43
- }
44
- </script>
45
- <style scoped>
46
-
47
- </style>
1
+ <template>
2
+ <div id="test">
3
+ <a-card :bordered="false">
4
+ <XReport
5
+ ref="main"
6
+ :use-oss-for-img="false"
7
+ config-name="nurseWorkstationCover"
8
+ server-name="af-his"
9
+ :show-img-in-cell="true"
10
+ :display-only="true"
11
+ :edit-mode="false"
12
+ :show-save-button="false"
13
+ :no-padding="true"
14
+ :dont-format="true"/>
15
+ </a-card>
16
+ </div>
17
+ </template>
18
+
19
+ <script>
20
+ import XReport from './XReport'
21
+ import XAddReport from '../XAddReport/XAddReport.vue'
22
+ // eslint-disable-next-line no-unused-vars
23
+
24
+ export default {
25
+ name: 'XReportDemo',
26
+ components: {
27
+ XReport, XAddReport
28
+ },
29
+ mounted () {
30
+ // this.$refs.xAddReport.init({
31
+ // configName: 'skinTestExecuActionCover',
32
+ // selectedId: '11111',
33
+ // mixinData: {}
34
+ // })
35
+ },
36
+ data () {
37
+ return {
38
+ }
39
+ },
40
+ methods: {
41
+ }
42
+ }
43
+ </script>
44
+ <style scoped>
45
+
46
+ </style>