manage-client 3.3.208 → 3.3.210

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 (33) hide show
  1. package/package.json +111 -111
  2. package/src/components/sale/businessquery/ChargeQuery.vue +21 -21
  3. package/src/components/webmeter/gasStatistics/GasStatistics.vue +526 -526
  4. package/src/components/webmeter/gasStatistics/NewGasStatistics.vue +542 -542
  5. package/src/filiale/dingcheng/DefaultPrint.js +6 -0
  6. package/src/filiale/dingcheng/businessquery/ChangeMeterQuery.vue +798 -0
  7. package/src/filiale/dingcheng/exportConfig.js +2765 -0
  8. package/src/filiale/dingcheng/sale.js +9 -0
  9. package/src/filiale/kelai/NewAccountQuery.vue +417 -417
  10. package/src/filiale/macheng/ArrearsQuery.vue +11 -3
  11. package/src/filiale/macheng/config/exportConfig.js +5 -5
  12. package/src/filiale/meihekou/UserSellHeadDetail.vue +516 -516
  13. package/src/filiale/meihekou/YingShouMingXi.vue +556 -556
  14. package/src/filiale/meihekou/config/exportConfig.js +829 -829
  15. package/src/filiale/rizhao/BusinessManage.vue +212 -212
  16. package/src/filiale/rizhao/sale.js +13 -13
  17. package/src/filiale/shexian/ChangeMeterQuery.vue +1 -1
  18. package/src/filiale/xinjiangdexin/ChargeQuery.vue +1435 -1435
  19. package/src/filiale/xinjiangdexin/config/exportConfig.js +2770 -2770
  20. package/src/filiale/xinjiangdexin/sale.js +7 -7
  21. package/src/main.js +68 -68
  22. package/.gradle/7.4/checksums/checksums.lock +0 -0
  23. package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
  24. package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
  25. package/.gradle/7.4/executionHistory/executionHistory.bin +0 -0
  26. package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
  27. package/.gradle/7.4/fileChanges/last-build.bin +0 -0
  28. package/.gradle/7.4/fileHashes/fileHashes.bin +0 -0
  29. package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
  30. package/.gradle/7.4/gc.properties +0 -0
  31. package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  32. package/.gradle/file-system.probe +0 -0
  33. package/.gradle/vcs-1/gc.properties +0 -0
@@ -1,7 +1,7 @@
1
- // 分公司特殊组件页面注册
2
- import Vue from 'vue'
3
-
4
- export default function () {
5
-
6
- Vue.component('charge-query', (resolve) => { require(['./ChargeQuery'], resolve) })
7
- }
1
+ // 分公司特殊组件页面注册
2
+ import Vue from 'vue'
3
+
4
+ export default function () {
5
+
6
+ Vue.component('charge-query', (resolve) => { require(['./ChargeQuery'], resolve) })
7
+ }
package/src/main.js CHANGED
@@ -1,68 +1,68 @@
1
- import Vue from 'vue'
2
- import App from './App'
3
- import { all } from 'vue-client'
4
-
5
- // import { sale } from 'sale-client'
6
- import { system } from 'system-clients'
7
- import { ldap } from 'ldap-clients'
8
- import saleManage from './saleManage'
9
- import ShanXianSaleManage from './filiale/meihekou/sale'
10
- import webmeterManage from './webmeterManage'
11
- import reportManage from './reportManage'
12
- import newmanage from './newmanage'
13
- import ManageHome from './ManageHome'
14
- import echarts from 'echarts'
15
- import AMap from 'vue-amap'
16
-
17
- Vue.config.silent = true
18
- // Vue.mmType = 'AES'
19
-
20
- Vue.use(AMap);
21
-
22
- // 初始化vue-amap
23
- AMap.initAMapApiLoader({
24
- // 高德key
25
- key: '3cec9ae8e2349207f7ac29279e3f4abe',
26
- // 插件集合 (插件按需引入)
27
- plugin: [
28
- "AMap.Autocomplete", //输入提示插件
29
- "AMap.PlaceSearch", //POI搜索插件
30
- "AMap.Scale", //右下角缩略图插件 比例尺
31
- "AMap.OverView", //地图鹰眼插件
32
- "AMap.ToolBar", //地图工具条0
33
- "AMap.MapType", //类别切换控件,实现默认图层与卫星图、实施交通图层之间切换的控制
34
- "AMap.PolyEditor", //编辑 折线多,边形
35
- "AMap.CircleEditor", //圆形编辑器插件
36
- "AMap.Geolocation" //定位控件,用来获取和展示用户主机所在的经纬度位置
37
- ],
38
- uiVersion: "1.0"
39
- });
40
- /** **************************通用组件******************************/
41
-
42
- Vue.prototype.$echarts = echarts
43
- all()
44
- // sale()
45
- ldap()
46
- system(false)
47
-
48
- saleManage()
49
- ShanXianSaleManage()
50
- webmeterManage()
51
- ManageHome()
52
- newmanage()
53
- reportManage()
54
- require('system-clients/src/styles/less/bootstrap.less')
55
- require('./components/qinhua/Style/qinhuaStyle.less')
56
- // require('./bootstrap/less/manageStyle/manageChile.less')
57
- // require('./bootstrap/less/manageStyle/safeStyle.less')
58
-
59
- //大屏展示要放开的样式
60
- // require('system-clients/src/styles/less/manageStyle/manageChile.less')
61
- // require('system-clients/src/styles/less/manageStyle/safeStyle.less')
62
- // require('system-clients/src/styles/less/manageStyle/manageStyle.less')
63
-
64
- new Vue({
65
- el: 'body',
66
- components: { App }
67
- })
68
-
1
+ import Vue from 'vue'
2
+ import App from './App'
3
+ import { all } from 'vue-client'
4
+
5
+ // import { sale } from 'sale-client'
6
+ import { system } from 'system-clients'
7
+ import { ldap } from 'ldap-clients'
8
+ import saleManage from './saleManage'
9
+ import ShanXianSaleManage from './filiale/meihekou/sale'
10
+ import webmeterManage from './webmeterManage'
11
+ import reportManage from './reportManage'
12
+ import newmanage from './newmanage'
13
+ import ManageHome from './ManageHome'
14
+ import echarts from 'echarts'
15
+ import AMap from 'vue-amap'
16
+
17
+ Vue.config.silent = true
18
+ // Vue.mmType = 'AES'
19
+
20
+ Vue.use(AMap);
21
+
22
+ // 初始化vue-amap
23
+ AMap.initAMapApiLoader({
24
+ // 高德key
25
+ key: '3cec9ae8e2349207f7ac29279e3f4abe',
26
+ // 插件集合 (插件按需引入)
27
+ plugin: [
28
+ "AMap.Autocomplete", //输入提示插件
29
+ "AMap.PlaceSearch", //POI搜索插件
30
+ "AMap.Scale", //右下角缩略图插件 比例尺
31
+ "AMap.OverView", //地图鹰眼插件
32
+ "AMap.ToolBar", //地图工具条0
33
+ "AMap.MapType", //类别切换控件,实现默认图层与卫星图、实施交通图层之间切换的控制
34
+ "AMap.PolyEditor", //编辑 折线多,边形
35
+ "AMap.CircleEditor", //圆形编辑器插件
36
+ "AMap.Geolocation" //定位控件,用来获取和展示用户主机所在的经纬度位置
37
+ ],
38
+ uiVersion: "1.0"
39
+ });
40
+ /** **************************通用组件******************************/
41
+
42
+ Vue.prototype.$echarts = echarts
43
+ all()
44
+ // sale()
45
+ ldap()
46
+ system(false)
47
+
48
+ saleManage()
49
+ ShanXianSaleManage()
50
+ webmeterManage()
51
+ ManageHome()
52
+ newmanage()
53
+ reportManage()
54
+ require('system-clients/src/styles/less/bootstrap.less')
55
+ require('./components/qinhua/Style/qinhuaStyle.less')
56
+ // require('./bootstrap/less/manageStyle/manageChile.less')
57
+ // require('./bootstrap/less/manageStyle/safeStyle.less')
58
+
59
+ //大屏展示要放开的样式
60
+ // require('system-clients/src/styles/less/manageStyle/manageChile.less')
61
+ // require('system-clients/src/styles/less/manageStyle/safeStyle.less')
62
+ // require('system-clients/src/styles/less/manageStyle/manageStyle.less')
63
+
64
+ new Vue({
65
+ el: 'body',
66
+ components: { App }
67
+ })
68
+
File without changes
File without changes
Binary file
File without changes