sale-client 4.0.26-preview → 4.0.27-preview
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 +5 -11
- package/package.json +1 -1
- package/src/filiale/fugou/components/FileUserAddress.vue +3 -3
- package/.gradle/5.2.1/executionHistory/executionHistory.bin +0 -0
- package/.gradle/5.2.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/5.2.1/fileContent/fileContent.lock +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.bin +0 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/build/libs/SaleClient-V3-3.1.1-11.jar +0 -0
- package/build/tmp/jar/MANIFEST.MF +0 -2
|
Binary file
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#
|
|
1
|
+
#Fri Oct 18 14:34:07 CST 2024
|
|
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, v4Url ] = ['http://
|
|
4
|
+
const [ serverRul, localUrl, v4Url ] = ['http://192.168.50.4:8400/', 'http://localhost:8080', 'http://localhost:9026/']
|
|
5
5
|
var merge = require('webpack-merge')
|
|
6
6
|
var baseConfig = require('./webpack.dev.conf')
|
|
7
7
|
var devConfig = {
|
|
@@ -20,16 +20,10 @@ var devConfig = {
|
|
|
20
20
|
},
|
|
21
21
|
proxy: {
|
|
22
22
|
'/api/af-revenue/logic': {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
},
|
|
28
|
-
'/api/af-revenue/sql': {
|
|
29
|
-
target: localUrl,
|
|
30
|
-
pathRewrite:{
|
|
31
|
-
'/api/af-revenue/sql':'/rs/sql'
|
|
32
|
-
}
|
|
23
|
+
pathRewrite: {
|
|
24
|
+
'/api/af-revenue/logic': '/logic'
|
|
25
|
+
},
|
|
26
|
+
target: 'http://localhost:9026/'
|
|
33
27
|
},
|
|
34
28
|
'/api/af-revenue/file': {
|
|
35
29
|
pathRewrite: {
|
package/package.json
CHANGED
|
@@ -483,7 +483,7 @@ export default {
|
|
|
483
483
|
if(this.model.f_iscity) {
|
|
484
484
|
condition = condition + ` and f_iscity = '${this.model.f_iscity}'`
|
|
485
485
|
}
|
|
486
|
-
let req = await this.$resetpost('api/af-revenue/sql/address_getresidential', {
|
|
486
|
+
let req = await this.$resetpost('api/af-revenue/sql/address_getresidential?pageNo=1&pageSize=9999999', {
|
|
487
487
|
data: {
|
|
488
488
|
condition: condition
|
|
489
489
|
}
|
|
@@ -551,7 +551,7 @@ export default {
|
|
|
551
551
|
async initstreets(pconditon){
|
|
552
552
|
this.streetslist = []
|
|
553
553
|
let HttpReset = new HttpResetClass()
|
|
554
|
-
let req = await HttpReset.load('POST', 'api/af-revenue/sql/address_singleTableOrderBy', {
|
|
554
|
+
let req = await HttpReset.load('POST', 'api/af-revenue/sql/address_singleTableOrderBy?pageNo=1&pageSize=9999999', {
|
|
555
555
|
data: {
|
|
556
556
|
items: '*',
|
|
557
557
|
tablename: 't_street',
|
|
@@ -688,7 +688,7 @@ export default {
|
|
|
688
688
|
async initcommunity(pconditon){
|
|
689
689
|
this.communitylist = []
|
|
690
690
|
let HttpReset = new HttpResetClass()
|
|
691
|
-
let req = await HttpReset.load('POST', 'api/af-revenue/sql/address_singleTableOrderBy', {
|
|
691
|
+
let req = await HttpReset.load('POST', 'api/af-revenue/sql/address_singleTableOrderBy?pageNo=1&pageSize=9999999', {
|
|
692
692
|
data: {
|
|
693
693
|
items: '*',
|
|
694
694
|
tablename: 't_community',
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|