vue2-client 1.18.38 → 1.18.39

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 (98) 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/base-client/components/common/AmapMarker/AmapPointRendering.vue +120 -120
  10. package/src/base-client/components/common/CitySelect/index.js +3 -3
  11. package/src/base-client/components/common/CitySelect/index.md +109 -109
  12. package/src/base-client/components/common/CreateQuery/CreateQuery.vue +669 -669
  13. package/src/base-client/components/common/CreateQuery/index.js +3 -3
  14. package/src/base-client/components/common/CreateQuery/index.md +42 -42
  15. package/src/base-client/components/common/CreateSimpleFormQuery/index.js +3 -3
  16. package/src/base-client/components/common/CreateSimpleFormQuery/index.md +42 -42
  17. package/src/base-client/components/common/FormGroupEdit/index.js +3 -3
  18. package/src/base-client/components/common/FormGroupEdit/index.md +43 -43
  19. package/src/base-client/components/common/FormGroupQuery/FormGroupQuery.vue +166 -166
  20. package/src/base-client/components/common/FormGroupQuery/index.js +3 -3
  21. package/src/base-client/components/common/FormGroupQuery/index.md +43 -43
  22. package/src/base-client/components/common/JSONToTree/jsontotree.vue +271 -271
  23. package/src/base-client/components/common/PersonSetting/PersonSetting.vue +208 -208
  24. package/src/base-client/components/common/PersonSetting/index.js +3 -3
  25. package/src/base-client/components/common/Tree/Tree.vue +149 -149
  26. package/src/base-client/components/common/Tree/index.js +2 -2
  27. package/src/base-client/components/common/Upload/index.js +3 -3
  28. package/src/base-client/components/common/XAddNativeForm/index.md +146 -146
  29. package/src/base-client/components/common/XCard/XCard.vue +64 -64
  30. package/src/base-client/components/common/XDataDrawer/XDataDrawer.vue +180 -180
  31. package/src/base-client/components/common/XDataDrawer/index.js +3 -3
  32. package/src/base-client/components/common/XDataDrawer/index.md +41 -41
  33. package/src/base-client/components/common/XDatePicker/demo.vue +31 -0
  34. package/src/base-client/components/common/XDatePicker/index.vue +61 -0
  35. package/src/base-client/components/common/XDescriptions/index.js +3 -3
  36. package/src/base-client/components/common/XDescriptions/index.md +322 -322
  37. package/src/base-client/components/common/XForm/XForm.vue +5 -3
  38. package/src/base-client/components/common/XForm/XFormItem.vue +1 -1
  39. package/src/base-client/components/common/XForm/index.md +178 -178
  40. package/src/base-client/components/common/XFormTable/demo.vue +125 -125
  41. package/src/base-client/components/common/XReport/print.js +186 -186
  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 +769 -769
  47. package/src/base-client/components/common/XTable/index.md +255 -255
  48. package/src/base-client/components/system/DictionaryDetailsView/DictionaryDetailsView.vue +232 -232
  49. package/src/base-client/plugins/Config.js +19 -19
  50. package/src/base-client/plugins/tabs-page-plugin.js +39 -39
  51. package/src/components/Charts/Bar.vue +62 -62
  52. package/src/components/Charts/ChartCard.vue +134 -134
  53. package/src/components/Charts/Liquid.vue +67 -67
  54. package/src/components/Charts/MiniArea.vue +39 -39
  55. package/src/components/Charts/MiniBar.vue +39 -39
  56. package/src/components/Charts/MiniProgress.vue +75 -75
  57. package/src/components/Charts/MiniSmoothArea.vue +40 -40
  58. package/src/components/Charts/Radar.vue +68 -68
  59. package/src/components/Charts/RankList.vue +77 -77
  60. package/src/components/Charts/TagCloud.vue +113 -113
  61. package/src/components/Charts/TransferBar.vue +64 -64
  62. package/src/components/Charts/Trend.vue +82 -82
  63. package/src/components/Charts/chart.less +12 -12
  64. package/src/components/Charts/smooth.area.less +13 -13
  65. package/src/components/NumberInfo/NumberInfo.vue +54 -54
  66. package/src/components/NumberInfo/index.js +3 -3
  67. package/src/components/NumberInfo/index.less +54 -54
  68. package/src/components/NumberInfo/index.md +43 -43
  69. package/src/components/card/ChartCard.vue +79 -79
  70. package/src/components/chart/Bar.vue +60 -60
  71. package/src/components/chart/MiniArea.vue +67 -67
  72. package/src/components/chart/MiniBar.vue +59 -59
  73. package/src/components/chart/MiniProgress.vue +57 -57
  74. package/src/components/chart/Radar.vue +80 -80
  75. package/src/components/chart/RankingList.vue +60 -60
  76. package/src/components/chart/Trend.vue +79 -79
  77. package/src/components/chart/index.less +9 -9
  78. package/src/components/checkbox/ColorCheckbox.vue +157 -157
  79. package/src/components/input/IInput.vue +66 -66
  80. package/src/components/menu/SideMenu.vue +75 -75
  81. package/src/components/menu/menu.js +273 -273
  82. package/src/components/tool/AStepItem.vue +60 -60
  83. package/src/layouts/CommonLayout.vue +56 -56
  84. package/src/layouts/header/HeaderNotice.vue +177 -177
  85. package/src/lib.js +1 -1
  86. package/src/mock/extend/index.js +84 -84
  87. package/src/mock/goods/index.js +108 -108
  88. package/src/pages/dashboard/workplace/WorkPlace.vue +141 -141
  89. package/src/pages/system/dictionary/index.vue +44 -44
  90. package/src/pages/system/monitor/loginInfor/index.vue +37 -37
  91. package/src/pages/system/monitor/operLog/index.vue +37 -37
  92. package/src/services/api/cas.js +79 -79
  93. package/src/store/modules/setting.js +119 -119
  94. package/src/utils/authority-utils.js +85 -85
  95. package/src/utils/errorCode.js +6 -6
  96. package/src/utils/map-utils.js +47 -47
  97. package/vue.config.js +4 -4
  98. package//350/277/201/347/247/273/346/227/245/345/277/227.md +15 -15
@@ -1,64 +1,64 @@
1
- <template>
2
- <div>
3
- <a-card :body-style="{ margin: 0, padding: 0 }" :bordered="false">
4
- <a-skeleton v-show="loadState === 'loading'" active style="padding: 16px"/>
5
- <a-empty v-show="loadState === 'empty'">
6
- <a-button type="dashed" @click="retry">
7
- 重新加载
8
- </a-button>
9
- </a-empty>
10
- <a-card
11
- v-show="loadState === 'error'"
12
- :body-style="{ margin: '0 auto' }"
13
- :bordered="false"
14
- :hoverable="true"
15
- class="retryCard"
16
- @click="retry" >
17
- <a-icon :style="{ fontSize: '28px' }" type="global"/>
18
- <p class="noSelect" style="margin-top: 20px">网络好像开小差了,点击重新加载...</p>
19
- </a-card>
20
- <div v-show="loadState === 'success'">
21
- <slot></slot>
22
- </div>
23
- </a-card>
24
- </div>
25
- </template>
26
-
27
- <script>
28
-
29
- export default {
30
- name: 'XCard',
31
- props: {
32
- loadState: {
33
- type: String,
34
- default: 'success'
35
- },
36
- retry: {
37
- type: Function,
38
- default: () => {
39
- console.error('未实现重新加载')
40
- }
41
- }
42
- },
43
- data () {
44
- return {
45
-
46
- }
47
- }
48
- }
49
- </script>
50
-
51
- <style scoped>
52
- .retryCard {
53
- text-align: center;
54
- }
55
- .noSelect {
56
- -webkit-touch-callout: none; /* iOS Safari */
57
- -webkit-user-select: none; /* Chrome/Safari/Opera */
58
- -khtml-user-select: none; /* Konqueror */
59
- -moz-user-select: none; /* Firefox */
60
- -ms-user-select: none; /* Internet Explorer/Edge */
61
- user-select: none; /* Non-prefixed version, currently
62
- not supported by any browser */
63
- }
64
- </style>
1
+ <template>
2
+ <div>
3
+ <a-card :body-style="{ margin: 0, padding: 0 }" :bordered="false">
4
+ <a-skeleton v-show="loadState === 'loading'" active style="padding: 16px"/>
5
+ <a-empty v-show="loadState === 'empty'">
6
+ <a-button type="dashed" @click="retry">
7
+ 重新加载
8
+ </a-button>
9
+ </a-empty>
10
+ <a-card
11
+ v-show="loadState === 'error'"
12
+ :body-style="{ margin: '0 auto' }"
13
+ :bordered="false"
14
+ :hoverable="true"
15
+ class="retryCard"
16
+ @click="retry" >
17
+ <a-icon :style="{ fontSize: '28px' }" type="global"/>
18
+ <p class="noSelect" style="margin-top: 20px">网络好像开小差了,点击重新加载...</p>
19
+ </a-card>
20
+ <div v-show="loadState === 'success'">
21
+ <slot></slot>
22
+ </div>
23
+ </a-card>
24
+ </div>
25
+ </template>
26
+
27
+ <script>
28
+
29
+ export default {
30
+ name: 'XCard',
31
+ props: {
32
+ loadState: {
33
+ type: String,
34
+ default: 'success'
35
+ },
36
+ retry: {
37
+ type: Function,
38
+ default: () => {
39
+ console.error('未实现重新加载')
40
+ }
41
+ }
42
+ },
43
+ data () {
44
+ return {
45
+
46
+ }
47
+ }
48
+ }
49
+ </script>
50
+
51
+ <style scoped>
52
+ .retryCard {
53
+ text-align: center;
54
+ }
55
+ .noSelect {
56
+ -webkit-touch-callout: none; /* iOS Safari */
57
+ -webkit-user-select: none; /* Chrome/Safari/Opera */
58
+ -khtml-user-select: none; /* Konqueror */
59
+ -moz-user-select: none; /* Firefox */
60
+ -ms-user-select: none; /* Internet Explorer/Edge */
61
+ user-select: none; /* Non-prefixed version, currently
62
+ not supported by any browser */
63
+ }
64
+ </style>
@@ -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 | - |
@@ -23,6 +23,12 @@ export default defineComponent({
23
23
  components: { XFormDatePicker },
24
24
  setup () {
25
25
  const formValues = reactive({
26
+ '时间选择器-新增模式': null,
27
+ '时间选择器-查询EQUALS': null,
28
+ '时间选择器-查询BETWEEN': null,
29
+ '时间范围选择器-新增模式': null,
30
+ '时间范围选择器-查询BETWEEN': null,
31
+
26
32
  '单日选择器-新增模式': null,
27
33
  '单日选择器-查询EQUALS': null,
28
34
  '单日选择器-查询BETWEEN': null,
@@ -49,6 +55,31 @@ export default defineComponent({
49
55
  }])
50
56
 
51
57
  const all = reactive([
58
+ {
59
+ title: '时间选择器-新增模式',
60
+ attr: { type: 'timePicker' },
61
+ mode: '新增'
62
+ },
63
+ {
64
+ title: '时间选择器-查询EQUALS',
65
+ attr: { type: 'timePicker', queryType: 'EQUALS' },
66
+ mode: '查询'
67
+ },
68
+ {
69
+ title: '时间选择器-查询BETWEEN',
70
+ attr: { type: 'timePicker', queryType: 'BETWEEN' },
71
+ mode: '查询'
72
+ },
73
+ {
74
+ title: '时间范围选择器-新增模式',
75
+ attr: { type: 'timeRangePicker' },
76
+ mode: '新增'
77
+ },
78
+ {
79
+ title: '时间范围选择器-查询BETWEEN',
80
+ attr: { type: 'timeRangePicker', queryType: 'BETWEEN' },
81
+ mode: '查询'
82
+ },
52
83
  {
53
84
  title: '单日选择器-新增模式',
54
85
  attr: { type: 'datePicker' },