manage-client 3.2.291 → 3.2.292-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.
Files changed (53) hide show
  1. package/.gradle/4.4/fileHashes/fileHashes.bin +0 -0
  2. package/.gradle/4.4/fileHashes/fileHashes.lock +0 -0
  3. package/AutoTest/BasePage.py +42 -0
  4. package/AutoTest/Config.json +2 -0
  5. package/AutoTest/PublicScript.py +447 -0
  6. package/AutoTest/README.md +12 -0
  7. package/AutoTest/__init__.py +0 -0
  8. package/AutoTest/all_case/__init__.py +0 -0
  9. package/AutoTest/all_case/search/__init__.py +0 -0
  10. package/AutoTest/all_case/search/as_ArchivesQueryScript2.py +155 -0
  11. package/AutoTest/all_case/search/as_AuditQueryScript2.py +113 -0
  12. package/AutoTest/all_case/search/as_Chargequery2.py +96 -0
  13. package/AutoTest/all_case/search/as_FinancialQueryScript2.py +142 -0
  14. package/AutoTest/all_case/search/as_Security_check3.py +99 -0
  15. package/AutoTest/all_case/search/as_ServiceQueryScript2.py +547 -0
  16. package/AutoTest/all_case/search/as_SummaryQueryScript2.py +77 -0
  17. package/AutoTest/all_case/search/as_Wechatmanage2.py +121 -0
  18. package/AutoTest/all_case/search/as_Writemetersearch2.py +114 -0
  19. package/AutoTest/report//346/237/245/350/257/242/351/203/250/345/210/206/346/265/213/350/257/225/346/212/245/345/221/212.html +7322 -0
  20. package/AutoTest/requirements.txt +9 -0
  21. package/AutoTest/search_test_run.py +24 -0
  22. package/build/dev-server.js +3 -3
  23. package/lib/package_2022-12-01-14-30-50.json +109 -0
  24. package/package.json +1 -1
  25. package/src/components/webmeter/DrillData/UserLostContactAnalysis.vue +585 -585
  26. package/src/components/webmeter/gasStatistics/NewGasStatistics.vue +511 -511
  27. package/src/filiale/ancheng/businessquery/ChargeQuery.vue +1344 -1344
  28. package/src/filiale/ancheng/businessquery/FMYGasQuery.vue +785 -0
  29. package/src/filiale/ancheng/exportConfig.js +1111 -0
  30. package/src/filiale/ancheng/sale.js +13 -9
  31. package/src/filiale/huayin/ChargeQuery.vue +1 -1
  32. package/src/filiale/kelai/CollectManage.vue +158 -158
  33. package/src/filiale/kelai/NewAccountQuery.vue +409 -409
  34. package/src/filiale/kelai/sale.js +13 -13
  35. package/src/filiale/shanxian/AreaGeneralQuery.vue +30 -0
  36. package/src/filiale/shanxian/BankManager.vue +1 -1
  37. package/src/filiale/shanxian/ChangeMeterQuery.vue +699 -0
  38. package/src/filiale/shanxian/ChargeQuery.vue +1344 -0
  39. package/src/filiale/shanxian/FillCardQuery.vue +569 -0
  40. package/src/filiale/shanxian/FillGasQuery.vue +588 -0
  41. package/src/filiale/shanxian/LostContactAnalysisList.vue +632 -0
  42. package/src/filiale/shanxian/OtherChargeDetailQuery.vue +74 -0
  43. package/src/filiale/shanxian/OtherChargeQuery.vue +684 -0
  44. package/src/filiale/shanxian/Paymentpie.vue +3 -3
  45. package/src/filiale/shanxian/RecordInfoQuery.vue +10 -5
  46. package/src/filiale/shanxian/SiteManager.vue +2 -2
  47. package/src/filiale/shanxian/UserLostContactAnalysis.vue +583 -0
  48. package/src/filiale/shanxian/UserQuery.vue +959 -0
  49. package/src/filiale/shanxian/config/exportConfig.js +10 -6
  50. package/src/filiale/shanxian/sale.js +12 -0
  51. package/src/filiale/shanxian/webmeterManage.js +8 -0
  52. package/src/filiale/wenxi/GasDeviceQuery.vue +987 -987
  53. package/src/main.js +2 -2
@@ -0,0 +1,9 @@
1
+ BeautifulReport==0.0.7
2
+ selenium==3.141.0
3
+ robotframework==3.2.2
4
+ robotframework-pythonlibcore==2.2.1
5
+ robotframework-ride==1.7.4.2
6
+ robotframework-seleniumlibrary==5.1.0
7
+ Pillow==8.1.1
8
+ common==0.1.2
9
+
@@ -0,0 +1,24 @@
1
+ import os
2
+ import unittest
3
+ import time
4
+ from BeautifulReport import BeautifulReport
5
+
6
+
7
+ # 方法:执行用例的方法,并且把用例的执行结果写入到测试报告文件中(html文件中)
8
+ def zhixing_yongli():
9
+ # 1. 准备测试套件: 把用例放入到测试套件中。 discover套件
10
+ dangqian_lujing = os.path.dirname(__file__)
11
+ case_path = os.path.join(dangqian_lujing, "." , "all_case/search")
12
+ taojian = unittest.defaultTestLoader.discover(case_path, pattern='as_SummaryQueryScript2.py')
13
+ # 2. 准备测试报告。(准备测试报告的路径 + 测试报告的文件名 xxxxx.html 系统时间+项目名.html)r
14
+ baogao_lujing = os.path.join(dangqian_lujing, ".", "report")
15
+ sys_time = time.strftime("%Y%m%d%H%M%S")
16
+ baogao_wenjianming = sys_time + "ranqikefu.html"
17
+
18
+ # 3. 执行测试套件中的用例,并且把执行结果写入到测试报告文件。(采用开源的beautifulreport来执行用例生成报告)
19
+ jieguo = BeautifulReport(taojian)
20
+ jieguo.report(description="燃气客服的自动化测试", filename="查询部分测试报告", report_dir=baogao_lujing)
21
+
22
+
23
+ if __name__ == '__main__':
24
+ zhixing_yongli()
@@ -19,9 +19,9 @@ var qtx= 'http://36.103.222.144:6300/'
19
19
  // var bendi = 'http://203.57.101.233:8400/'
20
20
  // var bendi = 'http://121.36.106.17:8400/'
21
21
  // var fuwu = 'http://203.57.101.233:9001'
22
- var bendi = 'http://192.168.50.4:8400'
22
+ var bendi = 'http://36.133.130.220:8400/'
23
23
  // var bendi = 'http://119.187.112.234:8400/'
24
- var wode = 'http://127.0.0.1:8084'
24
+ var wode = 'http://127.0.0.1:8080'
25
25
  // 192.168.
26
26
  // var str = 'http://127.0.0.1:8080/manage', str2 = 'http://192.168.50.199:8300'
27
27
  // var str = 'http://192.168.10.233:8300', str2 = 'http://192.168.10.14:8300'
@@ -73,7 +73,7 @@ var proxyTable = {
73
73
  target: bendi
74
74
  },
75
75
  '/rs/report': {
76
- target: wode
76
+ target: bendi
77
77
  },
78
78
  '/rs/vue': {
79
79
  target: bendi
@@ -0,0 +1,109 @@
1
+ {
2
+ "name": "manage-client",
3
+ "version": "3.2.174",
4
+ "description": "经营管控模块前台组件",
5
+ "main": "src/index.js",
6
+ "directories": {
7
+ "test": "test"
8
+ },
9
+ "dependencies": {
10
+ "swiper": "^5.4.5"
11
+ },
12
+ "devDependencies": {
13
+ "axios": "0.15.3",
14
+ "babel-core": "^6.0.0",
15
+ "babel-loader": "^6.0.0",
16
+ "babel-plugin-transform-runtime": "^6.0.0",
17
+ "babel-preset-es2015": "^6.0.0",
18
+ "babel-preset-stage-2": "^6.0.0",
19
+ "chai": "^3.5.0",
20
+ "co": "^4.6.0",
21
+ "connect-history-api-fallback": "^1.1.0",
22
+ "cross-env": "^1.0.7",
23
+ "cross-spawn": "^2.1.5",
24
+ "css-loader": "^0.23.0",
25
+ "echarts": "^4.1.0",
26
+ "eslint": "^2.0.0",
27
+ "eslint-config-standard": "^5.1.0",
28
+ "eslint-friendly-formatter": "^1.2.2",
29
+ "eslint-loader": "^1.3.0",
30
+ "eslint-plugin-html": "^1.3.0",
31
+ "eslint-plugin-promise": "^1.0.8",
32
+ "eslint-plugin-standard": "^1.3.2",
33
+ "eslint-plugin-vue": "^0.1.1",
34
+ "eventsource-polyfill": "^0.9.6",
35
+ "express": "^4.13.3",
36
+ "extract-text-webpack-plugin": "^1.0.1",
37
+ "filemanager-webpack-plugin": "^2.0.5",
38
+ "file-loader": "^0.8.4",
39
+ "function-bind": "^1.0.2",
40
+ "html-webpack-plugin": "^2.8.1",
41
+ "http-proxy-middleware": "^0.11.0",
42
+ "inject-loader": "^2.0.1",
43
+ "isparta-loader": "^2.0.0",
44
+ "jasmine-core": "^2.4.1",
45
+ "jquery": "^3.3.1",
46
+ "jsencrypt": "3.0.0-rc.1",
47
+ "json-loader": "^0.5.4",
48
+ "karma": "^1.4.1",
49
+ "karma-chrome-launcher": "^2.2.0",
50
+ "karma-coverage": "^1.1.1",
51
+ "karma-mocha": "^1.3.0",
52
+ "karma-sinon-chai": "^1.3.1",
53
+ "karma-sourcemap-loader": "^0.3.7",
54
+ "karma-spec-reporter": "0.0.31",
55
+ "karma-webpack": "^2.0.2",
56
+ "ldap-clients": "3.0.28",
57
+ "less": "^2.7.3",
58
+ "mkdirp": "^0.5.1",
59
+ "mocha": "^3.2.0",
60
+ "moment": "2.24.0",
61
+ "ncp": "^2.0.0",
62
+ "rimraf": "^2.5.0",
63
+ "sale-client": "3.4.14",
64
+ "selenium-server": "2.52.0",
65
+ "sinon": "^2.1.0",
66
+ "sinon-chai": "^2.8.0",
67
+ "style": "0.0.3",
68
+ "style-loader": "^0.20.3",
69
+ "swiper": "^5.4.5",
70
+ "system-clients": "3.1.89-20",
71
+ "url-loader": "^0.5.7",
72
+ "vue-amap": "0.5.10",
73
+ "vue-client": "1.24.51",
74
+ "vue-hot-reload-api": "^1.2.0",
75
+ "vue-html-loader": "^1.0.0",
76
+ "vue-loader": "8.2.1",
77
+ "vue-resource": "^1.5.0",
78
+ "vue-router": "^0.7.13",
79
+ "vue-strap": "^1.0.9",
80
+ "vue-style-loader": "^1.0.0",
81
+ "vue-validator": "2.1.7",
82
+ "webpack": "1.12.2",
83
+ "webpack-dev-middleware": "^1.4.0",
84
+ "webpack-hot-middleware": "^2.6.0",
85
+ "webpack-merge": "^0.8.3",
86
+ "webpack-parallel-uglify-plugin": "^1.0.0"
87
+ },
88
+ "scripts": {
89
+ "unit": "karma start test/unit/karma.conf.js --single-run",
90
+ "example": "node build/example-server.js",
91
+ "dev": "node build/dev-server.js",
92
+ "lint": "eslint src/**.js test/e2e/**.js test/unit/specs/** build/**.js",
93
+ "build": "rimraf lib && mkdirp lib && cross-env VUE_APP_ENTRY=saleManage webpack --progress --hide-modules --config build/webpack.prod.conf.js && cross-env VUE_APP_ENTRY=reportManage webpack --progress --hide-modules --config build/webpack.prod.conf.js && cross-env VUE_APP_BUILDEND=true VUE_APP_ENTRY=webmeterManage webpack --progress --hide-modules --config build/webpack.prod.conf.js",
94
+ "buildSaleManage": "rimraf lib && mkdirp lib && cross-env VUE_APP_ENTRY=saleManage VUE_APP_SINGLE=true webpack --progress --hide-modules --config build/webpack.prod.conf.js",
95
+ "buildReportManage": "rimraf lib && mkdirp lib && cross-env VUE_APP_ENTRY=reportManage VUE_APP_SINGLE=true webpack --progress --hide-modules --config build/webpack.prod.conf.js",
96
+ "buildWebmeterManage": "rimraf lib && mkdirp lib && cross-env VUE_APP_ENTRY=webmeterManage VUE_APP_SINGLE=true webpack --progress --hide-modules --config build/webpack.prod.conf.js",
97
+ "e2e": "node test/e2e/runner.js",
98
+ "release": "bash build/release.sh"
99
+ },
100
+ "repository": {
101
+ "type": "git",
102
+ "url": "https://gitee.com/aote/management_modules.git"
103
+ },
104
+ "keywords": [
105
+ "manage"
106
+ ],
107
+ "author": "liuxudong",
108
+ "license": "ISC"
109
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manage-client",
3
- "version": "3.2.291",
3
+ "version": "3.2.292-2",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {