sale-client 3.5.123 → 3.5.125
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/.gradle/5.2.1/fileChanges/last-build.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/5.2.1/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/build/dev-server.js +9 -6
- package/package.json +1 -1
- package/src/components/FilesManage/UserGeneralInfoTest.vue +706 -706
- package/src/components/revenue/machineHandManage/machineHandAudit.vue +9 -21
- package/src/filiale/alashan/MeterinfoTest.vue +618 -618
- package/src/filiale/gehua/CardChangeFill.vue +605 -605
- package/src/filiale/gehua/ChangeMeter.vue +968 -968
- package/src/filiale/gehua/sale.js +30 -30
- package/src/filiale/guangxi/CardHand.vue +885 -885
- package/src/filiale/guangxi/sale.js +51 -49
- package/src/filiale/meihekou/batch/batchEditManage.vue +132 -132
- package/src/filiale/meihekou/batch/batchUserList.vue +456 -456
- package/src/filiale/meihekou/sale.js +45 -45
- package/src/filiale/qianneng/eticket/EticketPrint.vue +6 -8
- package/src/filiale/xinkang/WebMeterBatchOperationValve.vue +783 -783
- package/src/filiale/zhongyi/MeterReadAudit.vue +347 -347
- package/src/main.js +22 -22
- package/yarn-error.log +0 -9224
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
File without changes
|
package/build/dev-server.js
CHANGED
|
@@ -12,8 +12,8 @@ var compiler = webpack(config)
|
|
|
12
12
|
// https://github.com/chimurai/http-proxy-middleware
|
|
13
13
|
var bendi = 'http://121.36.106.17:8400', bendi1 = 'http://121.36.106.17:8400/'
|
|
14
14
|
// 公司测试服务
|
|
15
|
-
|
|
16
|
-
var fuwu = 'http://
|
|
15
|
+
var fuwu = 'https://qnjtkf.cn:7400/'
|
|
16
|
+
//var fuwu = 'http://39.99.85.14:8400'
|
|
17
17
|
// var fuwu = 'http://121.36.106.17:8400/'
|
|
18
18
|
// 铜川正式
|
|
19
19
|
// var fuwu = 'http://61.134.55.234:9999/'
|
|
@@ -68,6 +68,9 @@ var proxyTable = {
|
|
|
68
68
|
'/rs/file': {
|
|
69
69
|
target: fuwu
|
|
70
70
|
},
|
|
71
|
+
'/afServer': {
|
|
72
|
+
target: fuwu
|
|
73
|
+
},
|
|
71
74
|
'/files': {
|
|
72
75
|
target: fuwu
|
|
73
76
|
},
|
|
@@ -121,13 +124,13 @@ var proxyTable = {
|
|
|
121
124
|
target: fuwu
|
|
122
125
|
},
|
|
123
126
|
'/rs/report': {
|
|
124
|
-
target: 'http://
|
|
127
|
+
target: 'http://localhost:8083'
|
|
125
128
|
},
|
|
126
129
|
'/rs/vue': {
|
|
127
130
|
target: fuwu
|
|
128
131
|
},
|
|
129
132
|
'/webmeter': {
|
|
130
|
-
target:
|
|
133
|
+
target: fuwu
|
|
131
134
|
},
|
|
132
135
|
'/rs': {
|
|
133
136
|
// target: 'http://192.168.30.63:8081/'
|
|
@@ -184,10 +187,10 @@ app.use(hotMiddleware)
|
|
|
184
187
|
// serve pure static assets
|
|
185
188
|
app.use('/static', express.static('./static'))
|
|
186
189
|
|
|
187
|
-
module.exports = app.listen(
|
|
190
|
+
module.exports = app.listen(8085, function (err) {
|
|
188
191
|
if (err) {
|
|
189
192
|
console.log(err)
|
|
190
193
|
return
|
|
191
194
|
}
|
|
192
|
-
console.log('Listening at http://localhost:
|
|
195
|
+
console.log('Listening at http://localhost:8085')
|
|
193
196
|
})
|