manage-client 3.3.39 → 3.3.42-1
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/build/dev-server.js +5 -5
- package/client.iml +15 -0
- package/package.json +1 -1
- package/src/components/sale/businessquery/WebHandplanQuery.vue +975 -975
- package/src/components/sale/config/exportConfig.js +8 -0
- package/src/components/sale/enterprisequery/enterpriseChargeQuery.vue +310 -0
- package/src/components/sale/enterprisequery/enterpriseGasQuery.vue +309 -0
- package/src/components/sale/enterprisequery/enterpriseManage.vue +40 -0
- package/src/components/sale/filesquery/UserQuery.vue +1 -1
- package/src/components/webmeter/instruction/NewQueryInstruct.vue +10 -10
- package/src/filiale/haile/exportConfig.js +1 -1
- package/src/filiale/haile/sale/businessquery/ChargeQuery.vue +6 -0
- package/src/filiale/jingwei/RecordInfoQuery.vue +2 -2
- package/src/filiale/jingwei/config/DefaultPrint.js +6 -0
- package/src/filiale/jingwei/config/exportConfig.js +1109 -0
- package/src/filiale/jingwei/config/tableConfig.js +54 -0
- package/src/filiale/kelai/UserQuery.vue +976 -976
- package/src/filiale/qianneng/QnAqzz.vue +6 -0
- package/src/filiale/qianneng/QnAqzzYsbb.vue +604 -0
- package/src/filiale/qianneng/QnAqzzYsmx.vue +653 -0
- package/src/filiale/qianneng/QnChaobiaomingxi.vue +13 -4
- package/src/filiale/qianneng/QnChaobiaoyhhz.vue +10 -2
- package/src/filiale/qianneng/QnChaobiaoyqxzhz.vue +10 -2
- package/src/filiale/qianneng/RecordInfoQuery.vue +1310 -1310
- package/src/filiale/qianneng/exportConfig.js +9 -0
- package/src/filiale/qianneng/reportManage.js +4 -0
- package/src/filiale/shanxian/FmyGasDeviceQuery.vue +1 -1
- package/src/filiale/shanxian/GasDeviceQuery.vue +2 -2
- package/src/filiale/shanxian/RecordInfoQuery.vue +1384 -1384
- package/src/filiale/shexian/ChangeMeterQuery.vue +12 -0
- package/src/filiale/shexian/config/exportConfig.js +2 -0
- package/src/main.js +6 -2
- package/src/saleManage.js +12 -0
package/build/dev-server.js
CHANGED
|
@@ -11,17 +11,17 @@ var compiler = webpack(config)
|
|
|
11
11
|
// Define HTTP proxies to your custom API backend
|
|
12
12
|
// https://github.com/chimurai/http-proxy-middleware
|
|
13
13
|
// var bendi = 'http://127.0.0.1:8089/manage', fuwu = 'http://36.103.224.217:6300/'
|
|
14
|
-
var shaoguan = '
|
|
15
|
-
var qtx= '
|
|
14
|
+
var shaoguan = 'https://qnjtkf.cn:7400'
|
|
15
|
+
var qtx= 'https://qnjtkf.cn:7400'
|
|
16
16
|
// var bendi = 'http://220.194.141.253:8600/'
|
|
17
17
|
// var bendi = 'http://203.57.101.233:9001'
|
|
18
18
|
// var bendi = 'http://172.168.1.11:9001/'
|
|
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 = '
|
|
22
|
+
var bendi = 'https://qnjtkf.cn:7400'
|
|
23
23
|
// var bendi = 'http://119.187.112.234:8400/'
|
|
24
|
-
var wode = '
|
|
24
|
+
var wode = 'https://qnjtkf.cn:7400'
|
|
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:
|
|
76
|
+
target: bendi
|
|
77
77
|
},
|
|
78
78
|
'/rs/vue': {
|
|
79
79
|
target: bendi
|
package/client.iml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="JAVA_MODULE" version="4">
|
|
3
|
+
<component name="EclipseModuleManager">
|
|
4
|
+
<conelement value="org.eclipse.buildship.core.gradleclasspathcontainer" />
|
|
5
|
+
<src_description expected_position="0" />
|
|
6
|
+
</component>
|
|
7
|
+
<component name="NewModuleRootManager">
|
|
8
|
+
<output url="file://$MODULE_DIR$/bin/default" />
|
|
9
|
+
<exclude-output />
|
|
10
|
+
<content url="file://$MODULE_DIR$" />
|
|
11
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
12
|
+
<orderEntry type="inheritedJdk" />
|
|
13
|
+
<orderEntry type="library" name="org.eclipse.buildship.core.gradleclasspathcontainer" level="application" />
|
|
14
|
+
</component>
|
|
15
|
+
</module>
|