manage-client 3.2.264 → 3.2.266
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 +2 -2
- package/package.json +1 -1
- package/src/components/webmeter/DrillData/UserGasAll.vue +1 -1
- package/src/components/webmeter/gasStatistics/GasStatistics.vue +1 -1
- package/src/filiale/kelai/ChargeQuery.vue +1341 -0
- package/src/filiale/kelai/sale.js +2 -1
- package/src/filiale/wenxi/GasDeviceQuery.vue +12 -0
- package/src/filiale/wenxi/GasStatistics.vue +512 -0
- package/src/filiale/wenxi/NewGasStatistics.vue +520 -0
- package/src/filiale/wenxi/webmeterManage.js +4 -0
- package/src/main.js +66 -66
package/build/dev-server.js
CHANGED
|
@@ -21,7 +21,7 @@ var qtx= 'http://36.103.222.144:6300/'
|
|
|
21
21
|
// var fuwu = 'http://203.57.101.233:9001'
|
|
22
22
|
var bendi = 'http://192.168.50.4:8400'
|
|
23
23
|
// var bendi = 'http://119.187.112.234:8400/'
|
|
24
|
-
var wode =
|
|
24
|
+
var wode = 'http://127.0.0.1:8084'
|
|
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: wode
|
|
77
77
|
},
|
|
78
78
|
'/rs/vue': {
|
|
79
79
|
target: bendi
|
package/package.json
CHANGED
|
@@ -434,7 +434,7 @@ import {HttpResetClass, PagedList} from 'vue-client'
|
|
|
434
434
|
console.log('444444444', Util.addDate(new Date(),-6).substring(0,10))
|
|
435
435
|
this.$refs.paged.$refs.cri.model.startDate = Util.addDate(new Date(),-4).substring(0,10) + ' 00:00:00'
|
|
436
436
|
this.$refs.paged.$refs.cri.model.endDate = Util.toStandardDateString() + ' 23:59:59'
|
|
437
|
-
this.$refs.paged.$refs.cri.search()
|
|
437
|
+
// this.$refs.paged.$refs.cri.search()
|
|
438
438
|
this.getfield = this.config.excelHeaders
|
|
439
439
|
},
|
|
440
440
|
methods: {
|
|
@@ -336,7 +336,7 @@
|
|
|
336
336
|
this.$refs.paged.$refs.criteria.model.endDate = Util.addDate(new Date(),-1).substring(0,10) + ' 23:59:59'
|
|
337
337
|
this.$refs.paged.$refs.criteria.model.inputStartDate = Util.addDate(new Date(),-1).substring(0,10) + ' 00:00:00'
|
|
338
338
|
this.$refs.paged.$refs.criteria.model.inputEndDate = Util.addDate(new Date(),-1).substring(0,10) + ' 23:59:59'
|
|
339
|
-
this.$refs.paged.$refs.criteria.search()
|
|
339
|
+
// this.$refs.paged.$refs.criteria.search()
|
|
340
340
|
},
|
|
341
341
|
methods: {
|
|
342
342
|
initParams() {
|