vue2-client 1.18.31 → 1.18.33

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 (109) hide show
  1. package/.eslintrc.js +90 -90
  2. package/Components.md +60 -60
  3. package/docs/index.md +30 -30
  4. package/index.js +31 -31
  5. package/jest-transform-stub.js +8 -8
  6. package/jest.setup.js +7 -7
  7. package/package.json +1 -1
  8. package/src/assets/img/querySlotDemo.svg +15 -15
  9. package/src/assets/svg/female.svg +1 -1
  10. package/src/assets/svg/male.svg +1 -1
  11. package/src/base-client/components/common/AmapMarker/AmapPointRendering.vue +120 -120
  12. package/src/base-client/components/common/CitySelect/index.js +3 -3
  13. package/src/base-client/components/common/CitySelect/index.md +109 -109
  14. package/src/base-client/components/common/CreateQuery/CreateQuery.vue +669 -669
  15. package/src/base-client/components/common/CreateQuery/index.js +3 -3
  16. package/src/base-client/components/common/CreateQuery/index.md +42 -42
  17. package/src/base-client/components/common/CreateSimpleFormQuery/index.js +3 -3
  18. package/src/base-client/components/common/CreateSimpleFormQuery/index.md +42 -42
  19. package/src/base-client/components/common/FormGroupEdit/index.js +3 -3
  20. package/src/base-client/components/common/FormGroupEdit/index.md +43 -43
  21. package/src/base-client/components/common/FormGroupQuery/FormGroupQuery.vue +166 -166
  22. package/src/base-client/components/common/FormGroupQuery/index.js +3 -3
  23. package/src/base-client/components/common/FormGroupQuery/index.md +43 -43
  24. package/src/base-client/components/common/HIS/HFormGroup/index.js +3 -3
  25. package/src/base-client/components/common/JSONToTree/jsontotree.vue +271 -271
  26. package/src/base-client/components/common/PersonSetting/PersonSetting.vue +208 -208
  27. package/src/base-client/components/common/PersonSetting/index.js +3 -3
  28. package/src/base-client/components/common/Tree/Tree.vue +149 -149
  29. package/src/base-client/components/common/Tree/index.js +2 -2
  30. package/src/base-client/components/common/Upload/index.js +3 -3
  31. package/src/base-client/components/common/XAddNativeForm/index.md +146 -146
  32. package/src/base-client/components/common/XCard/XCard.vue +64 -64
  33. package/src/base-client/components/common/XCollapse/XCollapse.vue +830 -830
  34. package/src/base-client/components/common/XDataDrawer/XDataDrawer.vue +180 -180
  35. package/src/base-client/components/common/XDataDrawer/index.js +3 -3
  36. package/src/base-client/components/common/XDataDrawer/index.md +41 -41
  37. package/src/base-client/components/common/XDescriptions/index.js +3 -3
  38. package/src/base-client/components/common/XDescriptions/index.md +322 -322
  39. package/src/base-client/components/common/XForm/index.md +178 -178
  40. package/src/base-client/components/common/XFormTable/demo.vue +2 -1
  41. package/src/base-client/components/common/XReportGrid/XReportTrGroup.vue +6 -3
  42. package/src/base-client/components/common/XStepView/XStepView.vue +252 -252
  43. package/src/base-client/components/common/XStepView/index.js +3 -3
  44. package/src/base-client/components/common/XStepView/index.md +31 -31
  45. package/src/base-client/components/common/XTable/XTable.vue +1715 -1715
  46. package/src/base-client/components/common/XTable/XTableWrapper.vue +8 -0
  47. package/src/base-client/components/common/XTable/index.md +255 -255
  48. package/src/base-client/components/common/XTimeline/XTimeline.vue +477 -477
  49. package/src/base-client/components/his/XHisEditor/XHisEditor.vue +705 -705
  50. package/src/base-client/components/his/XList/XList.vue +938 -938
  51. package/src/base-client/components/his/XSimpleTable/XSimpleTable.vue +443 -44
  52. package/src/base-client/components/his/XTimeSelect/XTimeSelect.vue +354 -354
  53. package/src/base-client/components/his/XTitle/XTitle.vue +314 -314
  54. package/src/base-client/components/his/XTreeRows/XTreeRows.vue +341 -341
  55. package/src/base-client/components/his/threeTestOrders/editor.vue +113 -113
  56. package/src/base-client/components/system/DictionaryDetailsView/DictionaryDetailsView.vue +232 -232
  57. package/src/base-client/plugins/Config.js +19 -19
  58. package/src/base-client/plugins/tabs-page-plugin.js +39 -39
  59. package/src/components/Charts/Bar.vue +62 -62
  60. package/src/components/Charts/ChartCard.vue +134 -134
  61. package/src/components/Charts/Liquid.vue +67 -67
  62. package/src/components/Charts/MiniArea.vue +39 -39
  63. package/src/components/Charts/MiniBar.vue +39 -39
  64. package/src/components/Charts/MiniProgress.vue +75 -75
  65. package/src/components/Charts/MiniSmoothArea.vue +40 -40
  66. package/src/components/Charts/Radar.vue +68 -68
  67. package/src/components/Charts/RankList.vue +77 -77
  68. package/src/components/Charts/TagCloud.vue +113 -113
  69. package/src/components/Charts/TransferBar.vue +64 -64
  70. package/src/components/Charts/Trend.vue +82 -82
  71. package/src/components/Charts/chart.less +12 -12
  72. package/src/components/Charts/smooth.area.less +13 -13
  73. package/src/components/NumberInfo/NumberInfo.vue +54 -54
  74. package/src/components/NumberInfo/index.js +3 -3
  75. package/src/components/NumberInfo/index.less +54 -54
  76. package/src/components/NumberInfo/index.md +43 -43
  77. package/src/components/STable/index.js +1 -1
  78. package/src/components/card/ChartCard.vue +79 -79
  79. package/src/components/chart/Bar.vue +60 -60
  80. package/src/components/chart/MiniArea.vue +67 -67
  81. package/src/components/chart/MiniBar.vue +59 -59
  82. package/src/components/chart/MiniProgress.vue +57 -57
  83. package/src/components/chart/Radar.vue +80 -80
  84. package/src/components/chart/RankingList.vue +60 -60
  85. package/src/components/chart/Trend.vue +79 -79
  86. package/src/components/chart/index.less +9 -9
  87. package/src/components/checkbox/ColorCheckbox.vue +157 -157
  88. package/src/components/input/IInput.vue +66 -66
  89. package/src/components/menu/SideMenu.vue +75 -75
  90. package/src/components/menu/menu.js +273 -273
  91. package/src/components/tool/AStepItem.vue +60 -60
  92. package/src/layouts/CommonLayout.vue +56 -56
  93. package/src/layouts/header/HeaderNotice.vue +177 -177
  94. package/src/lib.js +1 -1
  95. package/src/mock/extend/index.js +84 -84
  96. package/src/mock/goods/index.js +108 -108
  97. package/src/pages/dashboard/workplace/WorkPlace.vue +141 -141
  98. package/src/pages/system/dictionary/index.vue +44 -44
  99. package/src/pages/system/monitor/loginInfor/index.vue +37 -37
  100. package/src/pages/system/monitor/operLog/index.vue +37 -37
  101. package/src/pages/userInfoDetailManage/ExceptionRecordQuery/index.vue +45 -45
  102. package/src/router/async/router.map.js +2 -2
  103. package/src/services/api/cas.js +79 -79
  104. package/src/store/modules/setting.js +119 -119
  105. package/src/utils/authority-utils.js +85 -85
  106. package/src/utils/errorCode.js +6 -6
  107. package/src-base-client/components/common/HIS/HForm/HForm.vue +347 -0
  108. package/src-base-client/components/common/XCollapse/XCollapse.vue +0 -0
  109. package//350/277/201/347/247/273/346/227/245/345/277/227.md +15 -15
@@ -1,180 +1,180 @@
1
- <template>
2
- <a-drawer
3
- :visible="visible"
4
- :width="isMobile ? screenWidth : screenWidth * 0.85"
5
- placement="right"
6
- :title="title"
7
- @close="onClose"
8
- >
9
- <a-spin :spinning="loading">
10
- <a-page-header :title="getPageHeaderTitle">
11
- <div class="row">
12
- <div class="content">
13
- <slot name="contentDescriptions" :datas="details"></slot>
14
- </div>
15
- <div class="extra">
16
- <a-row class="status-list" v-for="(item,index) in extraStatusList" :key="'extraStatus' + index">
17
- <a-col :sm="24" :xs="12">
18
- <div class="text">{{ item.text }}</div>
19
- <div class="heading">
20
- <x-badge :is-external-text="true" :value="item.key" :badge-key="item.keyMap ? item.keyMap : 'none'"/>
21
- </div>
22
- </a-col>
23
- </a-row>
24
- </div>
25
- </div>
26
- <!-- actions -->
27
- <template #extra>
28
- <a-button-group style="margin-right: 4px;">
29
- <a-button :loading="loading" type="dashed" @click="initView('1')">刷新</a-button>
30
- </a-button-group>
31
- <a-button-group style="margin-right: 4px;">
32
- <slot name="extraActions" :datas="details"></slot>
33
- </a-button-group>
34
- </template>
35
- <template #footer>
36
- <slot name="footerContent" :datas="details"></slot>
37
- </template>
38
- </a-page-header>
39
- </a-spin>
40
- </a-drawer>
41
- </template>
42
-
43
- <script>
44
- import { mapState } from 'vuex'
45
- import XBadge from '@vue2-client/base-client/components/common/XBadge/XBadge'
46
-
47
- export default {
48
- name: 'InstructDetailsView',
49
- components: {
50
- XBadge
51
- },
52
- data () {
53
- return {
54
- // 页面宽度
55
- screenWidth: document.documentElement.clientWidth,
56
- // Tab页签
57
- tabActiveKey: '1',
58
- // 数据详情
59
- details: {},
60
- // 加载状态
61
- loading: true
62
- }
63
- },
64
- mounted () {
65
- this.initView('1')
66
- },
67
- computed: {
68
- ...mapState('account', { currUser: 'user' }),
69
- ...mapState('setting', ['isMobile'])
70
- },
71
- props: {
72
- title: {
73
- type: String,
74
- required: true
75
- },
76
- extraStatusList: {
77
- type: Array,
78
- default: () => {
79
- return []
80
- }
81
- },
82
- visible: {
83
- type: Boolean,
84
- default: false
85
- }
86
- },
87
- methods: {
88
- // 初始化组件
89
- initView (tabActiveKey) {
90
- this.tabActiveKey = tabActiveKey || '1'
91
- this.getDatas()
92
- },
93
- // 获取详情信息
94
- getDatas () {
95
- this.loading = true
96
- this.$emit('load').then(res => {
97
- this.details = res
98
- }, err => {
99
- console.error(err)
100
- }).finally(() => {
101
- this.loading = false
102
- })
103
- },
104
- // 获取页头标题
105
- getPageHeaderTitle () {
106
- this.$emit('getPageHeaderTitle', this.details)
107
- },
108
- // 关闭抽屉时回调
109
- onClose () {
110
- this.$emit('update:visible', false)
111
- }
112
- },
113
- watch: {
114
- 'visible' (val) {
115
- if (val) {
116
- this.initView('1')
117
- }
118
- }
119
- }
120
- }
121
- </script>
122
-
123
- <style lang="less" scoped>
124
- .detail-layout {
125
- margin-left: 44px;
126
- }
127
- .text {
128
- color: rgba(0, 0, 0, .45);
129
- }
130
-
131
- .heading {
132
- color: rgba(0, 0, 0, .85);
133
- font-size: 20px;
134
- }
135
-
136
- .no-data {
137
- color: rgba(0, 0, 0, .25);
138
- text-align: center;
139
- line-height: 64px;
140
- font-size: 16px;
141
-
142
- i {
143
- font-size: 24px;
144
- margin-right: 16px;
145
- position: relative;
146
- top: 3px;
147
- }
148
- }
149
-
150
- .mobile {
151
- .detail-layout {
152
- margin-left: unset;
153
- }
154
- .text {
155
-
156
- }
157
- .status-list {
158
- text-align: left;
159
- }
160
- }
161
-
162
- .row {
163
- display: flex;
164
-
165
- .content {
166
- -webkit-box-flex: 1;
167
- flex: auto;
168
- -ms-flex: auto;
169
- }
170
-
171
- .extra {
172
- flex: 0 1 auto;
173
- -webkit-box-flex: 0;
174
- -ms-flex: 0 1 auto;
175
- min-width: 242px;
176
- margin-left: 88px;
177
- text-align: right;
178
- }
179
- }
180
- </style>
1
+ <template>
2
+ <a-drawer
3
+ :visible="visible"
4
+ :width="isMobile ? screenWidth : screenWidth * 0.85"
5
+ placement="right"
6
+ :title="title"
7
+ @close="onClose"
8
+ >
9
+ <a-spin :spinning="loading">
10
+ <a-page-header :title="getPageHeaderTitle">
11
+ <div class="row">
12
+ <div class="content">
13
+ <slot name="contentDescriptions" :datas="details"></slot>
14
+ </div>
15
+ <div class="extra">
16
+ <a-row class="status-list" v-for="(item,index) in extraStatusList" :key="'extraStatus' + index">
17
+ <a-col :sm="24" :xs="12">
18
+ <div class="text">{{ item.text }}</div>
19
+ <div class="heading">
20
+ <x-badge :is-external-text="true" :value="item.key" :badge-key="item.keyMap ? item.keyMap : 'none'"/>
21
+ </div>
22
+ </a-col>
23
+ </a-row>
24
+ </div>
25
+ </div>
26
+ <!-- actions -->
27
+ <template #extra>
28
+ <a-button-group style="margin-right: 4px;">
29
+ <a-button :loading="loading" type="dashed" @click="initView('1')">刷新</a-button>
30
+ </a-button-group>
31
+ <a-button-group style="margin-right: 4px;">
32
+ <slot name="extraActions" :datas="details"></slot>
33
+ </a-button-group>
34
+ </template>
35
+ <template #footer>
36
+ <slot name="footerContent" :datas="details"></slot>
37
+ </template>
38
+ </a-page-header>
39
+ </a-spin>
40
+ </a-drawer>
41
+ </template>
42
+
43
+ <script>
44
+ import { mapState } from 'vuex'
45
+ import XBadge from '@vue2-client/base-client/components/common/XBadge/XBadge'
46
+
47
+ export default {
48
+ name: 'InstructDetailsView',
49
+ components: {
50
+ XBadge
51
+ },
52
+ data () {
53
+ return {
54
+ // 页面宽度
55
+ screenWidth: document.documentElement.clientWidth,
56
+ // Tab页签
57
+ tabActiveKey: '1',
58
+ // 数据详情
59
+ details: {},
60
+ // 加载状态
61
+ loading: true
62
+ }
63
+ },
64
+ mounted () {
65
+ this.initView('1')
66
+ },
67
+ computed: {
68
+ ...mapState('account', { currUser: 'user' }),
69
+ ...mapState('setting', ['isMobile'])
70
+ },
71
+ props: {
72
+ title: {
73
+ type: String,
74
+ required: true
75
+ },
76
+ extraStatusList: {
77
+ type: Array,
78
+ default: () => {
79
+ return []
80
+ }
81
+ },
82
+ visible: {
83
+ type: Boolean,
84
+ default: false
85
+ }
86
+ },
87
+ methods: {
88
+ // 初始化组件
89
+ initView (tabActiveKey) {
90
+ this.tabActiveKey = tabActiveKey || '1'
91
+ this.getDatas()
92
+ },
93
+ // 获取详情信息
94
+ getDatas () {
95
+ this.loading = true
96
+ this.$emit('load').then(res => {
97
+ this.details = res
98
+ }, err => {
99
+ console.error(err)
100
+ }).finally(() => {
101
+ this.loading = false
102
+ })
103
+ },
104
+ // 获取页头标题
105
+ getPageHeaderTitle () {
106
+ this.$emit('getPageHeaderTitle', this.details)
107
+ },
108
+ // 关闭抽屉时回调
109
+ onClose () {
110
+ this.$emit('update:visible', false)
111
+ }
112
+ },
113
+ watch: {
114
+ 'visible' (val) {
115
+ if (val) {
116
+ this.initView('1')
117
+ }
118
+ }
119
+ }
120
+ }
121
+ </script>
122
+
123
+ <style lang="less" scoped>
124
+ .detail-layout {
125
+ margin-left: 44px;
126
+ }
127
+ .text {
128
+ color: rgba(0, 0, 0, .45);
129
+ }
130
+
131
+ .heading {
132
+ color: rgba(0, 0, 0, .85);
133
+ font-size: 20px;
134
+ }
135
+
136
+ .no-data {
137
+ color: rgba(0, 0, 0, .25);
138
+ text-align: center;
139
+ line-height: 64px;
140
+ font-size: 16px;
141
+
142
+ i {
143
+ font-size: 24px;
144
+ margin-right: 16px;
145
+ position: relative;
146
+ top: 3px;
147
+ }
148
+ }
149
+
150
+ .mobile {
151
+ .detail-layout {
152
+ margin-left: unset;
153
+ }
154
+ .text {
155
+
156
+ }
157
+ .status-list {
158
+ text-align: left;
159
+ }
160
+ }
161
+
162
+ .row {
163
+ display: flex;
164
+
165
+ .content {
166
+ -webkit-box-flex: 1;
167
+ flex: auto;
168
+ -ms-flex: auto;
169
+ }
170
+
171
+ .extra {
172
+ flex: 0 1 auto;
173
+ -webkit-box-flex: 0;
174
+ -ms-flex: 0 1 auto;
175
+ min-width: 242px;
176
+ margin-left: 88px;
177
+ text-align: right;
178
+ }
179
+ }
180
+ </style>
@@ -1,3 +1,3 @@
1
- import XDataDrawer from './XDataDrawer'
2
-
3
- export default XDataDrawer
1
+ import XDataDrawer from './XDataDrawer'
2
+
3
+ export default XDataDrawer
@@ -1,41 +1,41 @@
1
- # XForm
2
-
3
- 通用数据抽屉控件,快速制作数据详情抽屉
4
-
5
-
6
- ## 何时使用
7
-
8
- 当需要一个通用数据抽屉时
9
-
10
-
11
- 引用方式:
12
-
13
- ```javascript
14
- import XDataDrawer from '@vue2-client/base-client/components/XDataDrawer/XDataDrawer'
15
-
16
- export default {
17
- components: {
18
- XDataDrawer
19
- }
20
- }
21
- ```
22
-
23
-
24
-
25
- ## 代码演示
26
-
27
- ```html
28
- <x-data-drawer
29
- :isExports="true"
30
- @onSubmit="onSubmit">
31
- </x-data-drawer>
32
- ```
33
-
34
- ## API
35
-
36
- | 参数 | 说明 | 类型 | 默认值 |
37
- |-----------|--------------------------|---------|------|
38
- | jsonData | JSON配置,根据[工具>查询配置生成]功能生成 | Object | {} |
39
- | isExports | 是否显示导出按钮 | Boolean | true |
40
- | getDataParams | 调用logic获取数据源的追加参数 | Object | - |
41
- | @onSubmit | 表单的提交事件 | event | - |
1
+ # XForm
2
+
3
+ 通用数据抽屉控件,快速制作数据详情抽屉
4
+
5
+
6
+ ## 何时使用
7
+
8
+ 当需要一个通用数据抽屉时
9
+
10
+
11
+ 引用方式:
12
+
13
+ ```javascript
14
+ import XDataDrawer from '@vue2-client/base-client/components/XDataDrawer/XDataDrawer'
15
+
16
+ export default {
17
+ components: {
18
+ XDataDrawer
19
+ }
20
+ }
21
+ ```
22
+
23
+
24
+
25
+ ## 代码演示
26
+
27
+ ```html
28
+ <x-data-drawer
29
+ :isExports="true"
30
+ @onSubmit="onSubmit">
31
+ </x-data-drawer>
32
+ ```
33
+
34
+ ## API
35
+
36
+ | 参数 | 说明 | 类型 | 默认值 |
37
+ |-----------|--------------------------|---------|------|
38
+ | jsonData | JSON配置,根据[工具>查询配置生成]功能生成 | Object | {} |
39
+ | isExports | 是否显示导出按钮 | Boolean | true |
40
+ | getDataParams | 调用logic获取数据源的追加参数 | Object | - |
41
+ | @onSubmit | 表单的提交事件 | event | - |
@@ -1,3 +1,3 @@
1
- import XDescriptions from './XDescriptions.vue'
2
-
3
- export default XDescriptions
1
+ import XDescriptions from './XDescriptions.vue'
2
+
3
+ export default XDescriptions