vue2-client 1.2.52 → 1.2.54-2

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/CHANGELOG.md CHANGED
@@ -3,7 +3,8 @@
3
3
 
4
4
  **1.2.50 - 1.2.51 -2022-05-11 @何文强**
5
5
  - 功能修改:
6
- - 整理地图组件
6
+ - 新增地址搜索框表单项
7
+ - 新增省市区选择框表单项
7
8
 
8
9
  **1.2.50 - 1.2.51 -2022-05-11 @何文强**
9
10
  - 功能修改:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.2.52",
3
+ "version": "1.2.54-2",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -27,7 +27,7 @@ import FormGroupQuery from '@vue2-client/base-client/components/common/FormGroup
27
27
  import FormGroupEdit from '@vue2-client/base-client/components/common/FormGroupEdit'
28
28
  import JSONToTree from '@vue2-client/base-client/components/common/JSONToTree'
29
29
  import Upload from '@vue2-client/base-client/components/common/Upload'
30
- import AddressSearchCombobox from '@/base-client/components/common/AddressSearchCombobox/AddressSearchCombobox'
30
+ import AddressSearchCombobox from '@/base-client/components/common/AddressSearchCombobox'
31
31
  import CitySelect from '@/base-client/components/common/CitySelect'
32
32
  // 插件
33
33
  import Plugins from '@vue2-client/base-client/plugins'
@@ -0,0 +1,3 @@
1
+ import AddressSearchCombobox from './AddressSearchCombobox'
2
+
3
+ export default AddressSearchCombobox
@@ -235,11 +235,9 @@
235
235
 
236
236
  import { post } from '@vue2-client/services/api'
237
237
  import { debounce } from 'ant-design-vue/lib/vc-table/src/utils'
238
- import AddressSearchCombobox from '@/base-client/components/common/AddressSearchCombobox/AddressSearchCombobox'
239
238
 
240
239
  export default {
241
240
  name: 'XFormItem',
242
- components: { AddressSearchCombobox },
243
241
  data () {
244
242
  // 检索去抖
245
243
  this.fetchFunction = debounce(this.fetchFunction, 800)