sale-client 4.0.164 → 4.0.166
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/fileHashes/fileHashes.lock +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +1 -1
- package/build/dev-server.js +14 -8
- package/package.json +1 -1
- package/src/components/charge/business/IOTMeterCenter.vue +0 -7
- package/src/main.js +1 -1
|
Binary file
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#Thu
|
|
1
|
+
#Thu Feb 27 12:01:45 CST 2025
|
|
2
2
|
gradle.version=5.2.1
|
package/build/dev-server.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var path = require('path')
|
|
2
2
|
var checkVersion = require('./versionCheck.js')
|
|
3
3
|
checkVersion()
|
|
4
|
-
const [ serverRul, localUrl ] = ['http://
|
|
4
|
+
const [ serverRul, localUrl ] = ['http://192.168.50.67:31467/', 'http://localhost:9026/']
|
|
5
5
|
var merge = require('webpack-merge')
|
|
6
6
|
var baseConfig = require('./webpack.dev.conf')
|
|
7
7
|
var devConfig = {
|
|
@@ -19,10 +19,16 @@ var devConfig = {
|
|
|
19
19
|
children: false // 不输出子模块构建信息
|
|
20
20
|
},
|
|
21
21
|
proxy: {
|
|
22
|
+
'/api/af-revenue/batchdeduction/all': {
|
|
23
|
+
pathRewrite: {
|
|
24
|
+
'/api/af-revenue/batchdeduction/all': '/batchdeduction/all'
|
|
25
|
+
},
|
|
26
|
+
target: localUrl
|
|
27
|
+
},
|
|
22
28
|
'/api/af-revenue/logic': {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
29
|
+
pathRewrite: {
|
|
30
|
+
'/api/af-revenue/logic': '/logic'
|
|
31
|
+
},
|
|
26
32
|
target: localUrl
|
|
27
33
|
},
|
|
28
34
|
'/api/af-revenue/file': {
|
|
@@ -31,14 +37,14 @@ var devConfig = {
|
|
|
31
37
|
// },
|
|
32
38
|
target: localUrl
|
|
33
39
|
},
|
|
34
|
-
'/weixin2/rs':
|
|
40
|
+
'/weixin2/rs':{
|
|
35
41
|
|
|
36
42
|
target: 'http://410663id1ia4.vicp.fun'
|
|
37
43
|
},
|
|
38
44
|
'/api/af-revenue/sql': {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
45
|
+
pathRewrite: {
|
|
46
|
+
'/api/af-revenue/sql': '/sql'
|
|
47
|
+
},
|
|
42
48
|
target: localUrl
|
|
43
49
|
},
|
|
44
50
|
'/rs/pay': {
|
package/package.json
CHANGED
|
@@ -773,13 +773,6 @@
|
|
|
773
773
|
})
|
|
774
774
|
str = str.slice(0, str.length - 1)
|
|
775
775
|
this.calculatedetail = str
|
|
776
|
-
if (num > 1) {
|
|
777
|
-
if (this.$login.r.find(item => item == '阶梯提示无按钮')) {
|
|
778
|
-
this.$showAlert('友好提示:本次购气已跨阶梯', 'warning', 3000)
|
|
779
|
-
} else {
|
|
780
|
-
this.$showMessage('友好提示:本次购气已跨阶梯', ['confirm', 'cancel'])
|
|
781
|
-
}
|
|
782
|
-
}
|
|
783
776
|
},
|
|
784
777
|
close () {
|
|
785
778
|
this.print = false
|
package/src/main.js
CHANGED
|
@@ -3,7 +3,7 @@ import all from 'vue-client/src/all'
|
|
|
3
3
|
import App from './App'
|
|
4
4
|
import system from 'system-clients/src/system'
|
|
5
5
|
import sale from './sale'
|
|
6
|
-
import FilialeSale from './filiale/
|
|
6
|
+
import FilialeSale from './filiale/ronghao/sale'
|
|
7
7
|
// import address from 'address-client/src/address'
|
|
8
8
|
import ldap from 'ldap-clients/src/ldap'
|
|
9
9
|
import VueClipboard from 'vue-clipboard2'
|