vue2-client 1.2.54-2 → 1.2.54-5
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/package.json +1 -1
- package/src/base-client/all.js +2 -2
- package/src/base-client/components/common/AddressSearchCombobox/AddressSearchCombobox.vue +1 -1
- package/src/base-client/components/common/CreateQuery/CreateQuery.vue +1 -1
- package/src/base-client/components/common/CreateQuery/CreateQueryItem.vue +1 -1
package/package.json
CHANGED
package/src/base-client/all.js
CHANGED
|
@@ -27,8 +27,8 @@ 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 '
|
|
31
|
-
import CitySelect from '
|
|
30
|
+
import AddressSearchCombobox from '@vue2-client/base-client/components/common/AddressSearchCombobox'
|
|
31
|
+
import CitySelect from '@vue2-client/base-client/components/common/CitySelect'
|
|
32
32
|
// 插件
|
|
33
33
|
import Plugins from '@vue2-client/base-client/plugins'
|
|
34
34
|
Vue.use(Plugins)
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
<script>
|
|
36
36
|
|
|
37
37
|
import { post } from '@vue2-client/services/api'
|
|
38
|
-
import { GetGDMap } from '
|
|
38
|
+
import { GetGDMap } from '@vue2-client/utils/map-utils'
|
|
39
39
|
import { debounce } from 'ant-design-vue/lib/vc-table/src/utils'
|
|
40
40
|
|
|
41
41
|
export default {
|
|
@@ -131,7 +131,7 @@ import XFormTable from '@vue2-client/base-client/components/common/XFormTable/XF
|
|
|
131
131
|
import JsonViewer from 'vue-json-viewer'
|
|
132
132
|
import FileSaver from 'file-saver'
|
|
133
133
|
import { mapState } from 'vuex'
|
|
134
|
-
import CreateQueryItem from '
|
|
134
|
+
import CreateQueryItem from '@vue2-client/base-client/components/common/CreateQuery/CreateQueryItem'
|
|
135
135
|
|
|
136
136
|
export default {
|
|
137
137
|
name: 'CreateQuery',
|
|
@@ -358,7 +358,7 @@ import {
|
|
|
358
358
|
addOrEditType,
|
|
359
359
|
selectDataType
|
|
360
360
|
} from '@vue2-client/config/CreateQueryConfig'
|
|
361
|
-
import { commonApi, post } from '
|
|
361
|
+
import { commonApi, post } from '@vue2-client/services/api'
|
|
362
362
|
import JsonViewer from 'vue-json-viewer'
|
|
363
363
|
|
|
364
364
|
const DemoJson = [{
|