vue2-client 1.2.72 → 1.2.75

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 (46) hide show
  1. package/.env +15 -15
  2. package/.eslintrc.js +82 -82
  3. package/CHANGELOG.md +13 -0
  4. package/package.json +46 -46
  5. package/src/base-client/components/common/AddressSearchCombobox/AddressSearchCombobox.vue +225 -225
  6. package/src/base-client/components/common/AmapMarker/AmapPointRendering.vue +113 -113
  7. package/src/base-client/components/common/CitySelect/CitySelect.vue +244 -244
  8. package/src/base-client/components/common/CitySelect/index.js +3 -3
  9. package/src/base-client/components/common/CitySelect/index.md +109 -109
  10. package/src/base-client/components/common/CreateQuery/CreateQuery.vue +539 -523
  11. package/src/base-client/components/common/CreateQuery/CreateQueryItem.vue +773 -773
  12. package/src/base-client/components/common/CreateSimpleFormQuery/CreateSimpleFormQuery.vue +310 -310
  13. package/src/base-client/components/common/CreateSimpleFormQuery/CreateSimpleFormQueryItem.vue +553 -553
  14. package/src/base-client/components/common/Upload/Upload.vue +151 -151
  15. package/src/base-client/components/common/Upload/index.js +3 -3
  16. package/src/base-client/components/common/XAddForm/XAddForm.vue +345 -345
  17. package/src/base-client/components/common/XAddNativeForm/XAddNativeForm.vue +322 -322
  18. package/src/base-client/components/common/XForm/XForm.vue +268 -268
  19. package/src/base-client/components/common/XForm/XFormItem.vue +358 -358
  20. package/src/base-client/components/common/XFormTable/XFormTable.vue +491 -491
  21. package/src/base-client/components/common/XTable/XTable.vue +269 -271
  22. package/src/base-client/components/iot/DeviceDetailsView/DeviceDetailsView.vue +232 -230
  23. package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsCount.vue +623 -330
  24. package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsException.vue +57 -57
  25. package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsRead.vue +131 -131
  26. package/src/base-client/components/iot/DeviceTypeDetailsView/DeviceTypeDetailsView.vue +300 -300
  27. package/src/base-client/components/iot/WebmeterAnalysisView/WebmeterAnalysisView.vue +647 -647
  28. package/src/base-client/components/ticket/TicketSubmitSuccessView/TicketSubmitSuccessView.vue +532 -532
  29. package/src/base-client/plugins/AppData.js +70 -70
  30. package/src/base-client/plugins/compatible/LoginServiceOA.js +20 -20
  31. package/src/components/Charts/ChartCard.vue +14 -0
  32. package/src/config/CreateQueryConfig.js +301 -301
  33. package/src/pages/resourceManage/orgListManage.vue +98 -98
  34. package/src/router/async/config.async.js +26 -26
  35. package/src/router/async/router.map.js +60 -60
  36. package/src/router/index.js +27 -27
  37. package/src/services/api/common.js +56 -56
  38. package/src/services/api/index.js +39 -39
  39. package/src/services/api/iot/DeviceDetailsView/DeviceDetailsCountApi.js +14 -0
  40. package/src/services/api/manage.js +16 -16
  41. package/src/services/api/restTools.js +24 -24
  42. package/src/theme/default/style.less +47 -47
  43. package/src/utils/map-utils.js +28 -28
  44. package/src/utils/request.js +198 -198
  45. package/src/utils/util.js +222 -222
  46. package/vue.config.js +153 -153
package/.env CHANGED
@@ -1,15 +1,15 @@
1
- VUE_APP_PUBLIC_PATH=/
2
- VUE_APP_NAME=Admin
3
- VUE_APP_ROUTES_KEY=admin.routes
4
- VUE_APP_PERMISSIONS_KEY=admin.permissions
5
- VUE_APP_ROLES_KEY=admin.roles
6
- VUE_APP_USER_KEY=admin.user
7
- VUE_APP_LOGIN_KEY=admin.login
8
- VUE_APP_SETTING_KEY=admin.setting
9
- VUE_APP_TBAS_KEY=admin.tabs
10
- VUE_APP_TBAS_TITLES_KEY=admin.tabs.titles
11
- VUE_APP_DICTIONARY_KEY=admin.dictionary
12
- VUE_APP_BADGE_KEY=admin.badge
13
- VUE_APP_SINGLEVALUE_KEY=admin.singlevalue
14
- VUE_APP_DIVISIONSOHCHINA=admin.divisionsohchina
15
- VUE_APP_API_BASE_URL=http://123.60.214.109:8405
1
+ VUE_APP_PUBLIC_PATH=/
2
+ VUE_APP_NAME=Admin
3
+ VUE_APP_ROUTES_KEY=admin.routes
4
+ VUE_APP_PERMISSIONS_KEY=admin.permissions
5
+ VUE_APP_ROLES_KEY=admin.roles
6
+ VUE_APP_USER_KEY=admin.user
7
+ VUE_APP_LOGIN_KEY=admin.login
8
+ VUE_APP_SETTING_KEY=admin.setting
9
+ VUE_APP_TBAS_KEY=admin.tabs
10
+ VUE_APP_TBAS_TITLES_KEY=admin.tabs.titles
11
+ VUE_APP_DICTIONARY_KEY=admin.dictionary
12
+ VUE_APP_BADGE_KEY=admin.badge
13
+ VUE_APP_SINGLEVALUE_KEY=admin.singlevalue
14
+ VUE_APP_DIVISIONSOHCHINA=admin.divisionsohchina
15
+ VUE_APP_API_BASE_URL=http://123.60.214.109:8405
package/.eslintrc.js CHANGED
@@ -1,82 +1,82 @@
1
- module.exports = {
2
- root: true,
3
- env: {
4
- node: true
5
- },
6
- 'extends': [
7
- 'plugin:vue/essential',
8
- 'plugin:vue/strongly-recommended',
9
- '@vue/standard'
10
- ],
11
- rules: {
12
- 'comma-dangle': 'off',
13
- 'no-console': 'off',
14
- 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
15
- 'generator-star-spacing': 'off',
16
- 'no-mixed-operators': 0,
17
- 'vue/max-attributes-per-line': [
18
- 2,
19
- {
20
- 'singleline': 5,
21
- 'multiline': {
22
- 'max': 1,
23
- 'allowFirstLine': false
24
- }
25
- }
26
- ],
27
- 'vue/attribute-hyphenation': 0,
28
- 'vue/html-self-closing': 0,
29
- 'vue/component-name-in-template-casing': 0,
30
- 'vue/html-closing-bracket-spacing': 0,
31
- 'vue/singleline-html-element-content-newline': 0,
32
- 'vue/no-unused-components': 0,
33
- 'vue/multiline-html-element-content-newline': 0,
34
- 'vue/no-use-v-if-with-v-for': 0,
35
- 'vue/html-closing-bracket-newline': 0,
36
- 'vue/no-parsing-error': 0,
37
- 'vue/name-property-casing': 0,
38
- 'no-tabs': 0,
39
- 'quotes': [
40
- 2,
41
- 'single',
42
- {
43
- 'avoidEscape': true,
44
- 'allowTemplateLiterals': true
45
- }
46
- ],
47
- 'semi': [
48
- 2,
49
- 'never',
50
- {
51
- 'beforeStatementContinuationChars': 'never'
52
- }
53
- ],
54
- 'no-delete-var': 2,
55
- 'prefer-const': [
56
- 2,
57
- {
58
- 'ignoreReadBeforeAssign': false
59
- }
60
- ],
61
- 'template-curly-spacing': 'off',
62
- 'indent': 'off',
63
- // 必须使用全等: false
64
- 'eqeqeq': 0,
65
- // 可以使用!! 双重否定
66
- 'no-extra-boolean-cast': 'off'
67
- },
68
- parserOptions: {
69
- parser: 'babel-eslint'
70
- },
71
- overrides: [
72
- {
73
- files: [
74
- '**/__tests__/*.{j,t}s?(x)',
75
- '**/tests/unit/**/*.spec.{j,t}s?(x)'
76
- ],
77
- env: {
78
- jest: true
79
- }
80
- }
81
- ]
82
- }
1
+ module.exports = {
2
+ root: true,
3
+ env: {
4
+ node: true
5
+ },
6
+ 'extends': [
7
+ 'plugin:vue/essential',
8
+ 'plugin:vue/strongly-recommended',
9
+ '@vue/standard'
10
+ ],
11
+ rules: {
12
+ 'comma-dangle': 'off',
13
+ 'no-console': 'off',
14
+ 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
15
+ 'generator-star-spacing': 'off',
16
+ 'no-mixed-operators': 0,
17
+ 'vue/max-attributes-per-line': [
18
+ 2,
19
+ {
20
+ 'singleline': 5,
21
+ 'multiline': {
22
+ 'max': 1,
23
+ 'allowFirstLine': false
24
+ }
25
+ }
26
+ ],
27
+ 'vue/attribute-hyphenation': 0,
28
+ 'vue/html-self-closing': 0,
29
+ 'vue/component-name-in-template-casing': 0,
30
+ 'vue/html-closing-bracket-spacing': 0,
31
+ 'vue/singleline-html-element-content-newline': 0,
32
+ 'vue/no-unused-components': 0,
33
+ 'vue/multiline-html-element-content-newline': 0,
34
+ 'vue/no-use-v-if-with-v-for': 0,
35
+ 'vue/html-closing-bracket-newline': 0,
36
+ 'vue/no-parsing-error': 0,
37
+ 'vue/name-property-casing': 0,
38
+ 'no-tabs': 0,
39
+ 'quotes': [
40
+ 2,
41
+ 'single',
42
+ {
43
+ 'avoidEscape': true,
44
+ 'allowTemplateLiterals': true
45
+ }
46
+ ],
47
+ 'semi': [
48
+ 2,
49
+ 'never',
50
+ {
51
+ 'beforeStatementContinuationChars': 'never'
52
+ }
53
+ ],
54
+ 'no-delete-var': 2,
55
+ 'prefer-const': [
56
+ 2,
57
+ {
58
+ 'ignoreReadBeforeAssign': false
59
+ }
60
+ ],
61
+ 'template-curly-spacing': 'off',
62
+ 'indent': 'off',
63
+ // 必须使用全等: false
64
+ 'eqeqeq': 0,
65
+ // 可以使用!! 双重否定
66
+ 'no-extra-boolean-cast': 'off'
67
+ },
68
+ parserOptions: {
69
+ parser: 'babel-eslint'
70
+ },
71
+ overrides: [
72
+ {
73
+ files: [
74
+ '**/__tests__/*.{j,t}s?(x)',
75
+ '**/tests/unit/**/*.spec.{j,t}s?(x)'
76
+ ],
77
+ env: {
78
+ jest: true
79
+ }
80
+ }
81
+ ]
82
+ }
package/CHANGELOG.md CHANGED
@@ -1,6 +1,19 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
+ **1.2.75 -2022-06-18 @江超**
5
+ - 功能修改:
6
+ - 依赖更新
7
+ - 提交物联网设备统计(完成60%)
8
+
9
+ **1.2.74 -2022-06-17 @张振宇**
10
+ - 功能修改:
11
+ - 拖拽样式修改
12
+
13
+ **1.2.73 -2022-06-16 @江超**
14
+ - 功能修改:
15
+ - 现在表格列排序不再通过前端判断,而是从后端生成了
16
+
4
17
  **1.2.71 - 1.2.72 2022-06-16 @张振宇**
5
18
  - 功能修改:
6
19
  - 基础表单bug修改
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.2.72",
3
+ "version": "1.2.75",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -11,77 +11,77 @@
11
11
  "dependencies": {
12
12
  "@amap/amap-jsapi-loader": "^1.0.1",
13
13
  "@antv/data-set": "^0.11.4",
14
- "@antv/f2": "^3.6.4",
15
- "@antv/g2plot": "^2.3.33",
16
- "@logicflow/core": "^1.1.7",
17
- "@logicflow/extension": "^1.1.7",
14
+ "@antv/f2": "^3.8.11",
15
+ "@antv/g2plot": "^2.4.19",
16
+ "@logicflow/core": "^1.1.20",
17
+ "@logicflow/extension": "^1.1.20",
18
18
  "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
19
19
  "@vue/babel-preset-jsx": "^1.2.4",
20
- "animate.css": "^4.1.0",
20
+ "animate.css": "^4.1.1",
21
21
  "ant-design-vue": "1.7.8",
22
- "axios": "^0.19.2",
23
- "clipboard": "^2.0.6",
24
- "core-js": "^3.6.5",
25
- "date-fns": "^2.14.0",
22
+ "axios": "^0.27.2",
23
+ "clipboard": "^2.0.11",
24
+ "core-js": "^3.23.1",
25
+ "date-fns": "^2.28.0",
26
26
  "default-passive-events": "^2.0.0",
27
27
  "enquire.js": "^2.1.6",
28
28
  "file-saver": "^2.0.5",
29
- "highlight.js": "^10.2.1",
29
+ "highlight.js": "^10.7.3",
30
30
  "js-cookie": "^2.2.1",
31
- "jsencrypt": "^3.0.0-rc.1",
31
+ "jsencrypt": "^3.2.1",
32
32
  "lodash.get": "^4.4.2",
33
33
  "mockjs": "^1.1.0",
34
34
  "nprogress": "^0.2.0",
35
35
  "viser-vue": "^2.4.8",
36
- "vue": "^2.6.11",
37
- "vue-i18n": "^8.18.2",
38
- "vue-json-viewer": "^2.2.15",
36
+ "vue": "^2.6.14",
37
+ "vue-i18n": "^8.27.1",
39
38
  "vue-infinite-scroll": "^2.0.2",
40
- "vue-router": "^3.3.4",
41
- "vuedraggable": "^2.23.2",
42
- "vuex": "^3.4.0",
43
- "xlsx": "0.17.5"
39
+ "vue-json-viewer": "^2.2.22",
40
+ "vue-router": "^3.5.4",
41
+ "vuedraggable": "^2.24.3",
42
+ "vuex": "^3.6.2",
43
+ "xlsx": "0.18.5"
44
44
  },
45
45
  "devDependencies": {
46
- "@ant-design/colors": "^4.0.1",
47
- "@vue/cli-plugin-babel": "^4.4.0",
48
- "@vue/cli-plugin-eslint": "^4.4.0",
49
- "@vue/cli-plugin-router": "^4.4.0",
50
- "@vue/cli-plugin-unit-jest": "~5.0.0",
51
- "@vue/cli-plugin-vuex": "^4.4.0",
52
- "@vue/cli-service": "^4.4.0",
46
+ "@ant-design/colors": "^4.0.5",
47
+ "@vue/cli-plugin-babel": "^4.5.18",
48
+ "@vue/cli-plugin-eslint": "^4.5.18",
49
+ "@vue/cli-plugin-router": "^4.5.18",
50
+ "@vue/cli-plugin-unit-jest": "~5.0.6",
51
+ "@vue/cli-plugin-vuex": "^4.5.18",
52
+ "@vue/cli-service": "^4.5.18",
53
53
  "@vue/eslint-config-standard": "^4.0.0",
54
- "@vue/test-utils": "^1.1.3",
55
- "@vue/vue2-jest": "^27.0.0-alpha.2",
56
- "@vuepress/plugin-back-to-top": "^1.5.2",
54
+ "@vue/test-utils": "^1.3.0",
55
+ "@vue/vue2-jest": "^28.0.0",
56
+ "@vuepress/plugin-back-to-top": "^1.9.7",
57
57
  "babel-eslint": "^10.1.0",
58
- "babel-jest": "^27.0.6",
58
+ "babel-jest": "^28.1.1",
59
59
  "babel-plugin-transform-remove-console": "^6.9.4",
60
60
  "babel-polyfill": "^6.26.0",
61
- "compression-webpack-plugin": "^2.0.0",
61
+ "compression-webpack-plugin": "^4.0.1",
62
62
  "deepmerge": "^4.2.2",
63
- "echarts": "^4.9.0",
64
- "eslint": "^6.7.2",
65
- "eslint-plugin-import": "^2.25.3",
63
+ "echarts": "^5.3.3",
64
+ "eslint": "^6.8.0",
65
+ "eslint-plugin-import": "^2.26.0",
66
66
  "eslint-plugin-node": "^11.1.0",
67
67
  "eslint-plugin-standard": "^5.0.0",
68
68
  "eslint-plugin-vue": "^6.2.2",
69
69
  "fast-deep-equal": "^3.1.3",
70
- "gh-pages": "^3.1.0",
71
- "jest": "^27.0.5",
72
- "less-loader": "^6.1.1",
73
- "react-bmap": "^1.0.121",
70
+ "gh-pages": "^3.2.3",
71
+ "jest": "^28.1.1",
72
+ "less-loader": "^6.2.0",
73
+ "react-bmap": "^1.0.130",
74
74
  "script-loader": "^0.7.2",
75
- "style-resources-loader": "^1.3.2",
75
+ "style-resources-loader": "^1.5.0",
76
76
  "vue-amap": "^0.5.10",
77
77
  "vue-baidu-map": "^0.21.22",
78
- "vue-bmap-gl": "0.0.29",
79
- "vue-cli-plugin-style-resources-loader": "^0.1.4",
80
- "vue-mapvgl": "0.0.28",
81
- "vue-template-compiler": "^2.6.11",
82
- "vuepress": "^1.5.2",
83
- "webpack-theme-color-replacer": "1.3.18",
84
- "whatwg-fetch": "^3.0.0"
78
+ "vue-bmap-gl": "0.0.30",
79
+ "vue-cli-plugin-style-resources-loader": "^0.1.5",
80
+ "vue-mapvgl": "0.0.34",
81
+ "vue-template-compiler": "^2.6.14",
82
+ "vuepress": "^1.9.7",
83
+ "webpack-theme-color-replacer": "1.4.1",
84
+ "whatwg-fetch": "^3.6.2"
85
85
  },
86
86
  "browserslist": [
87
87
  "> 1%",