sale-client 4.2.45 → 4.2.47
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/8.10/checksums/checksums.lock +0 -0
- package/.gradle/8.10/dependencies-accessors/gc.properties +0 -0
- package/.gradle/8.10/executionHistory/executionHistory.bin +0 -0
- package/.gradle/8.10/executionHistory/executionHistory.lock +0 -0
- package/.gradle/8.10/fileChanges/last-build.bin +0 -0
- package/.gradle/8.10/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.10/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.10/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/file-system.probe +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/build/dev-server.js +11 -8
- package/package.json +1 -1
- package/src/filiale/qingjian/FileUserFiles.vue +5 -2
- package/src/main.js +1 -1
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
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://123.57.3.66:31467/', 'http://123.57.3.66:31467/']
|
|
5
5
|
var merge = require('webpack-merge')
|
|
6
6
|
var baseConfig = require('./webpack.dev.conf')
|
|
7
7
|
var devConfig = {
|
|
@@ -50,14 +50,17 @@ var devConfig = {
|
|
|
50
50
|
'/rs/pay': {
|
|
51
51
|
target: 'http://localhost:8080'
|
|
52
52
|
},
|
|
53
|
-
'/api/af-revenue': {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
},
|
|
53
|
+
// '/api/af-revenue': {
|
|
54
|
+
// pathRewrite: {
|
|
55
|
+
// '/api/af-revenue': '/af-revenue'
|
|
56
|
+
// },
|
|
57
|
+
// target: "http://localhost:8080"
|
|
58
|
+
// },
|
|
59
59
|
'/api': {
|
|
60
|
-
target: serverRul
|
|
60
|
+
target: serverRul,
|
|
61
|
+
pathRewrite: {
|
|
62
|
+
'/api/af-revenue': '/singlepage/rs'
|
|
63
|
+
}
|
|
61
64
|
},
|
|
62
65
|
'/rs': {
|
|
63
66
|
target: serverRul
|
package/package.json
CHANGED
|
@@ -657,8 +657,7 @@ let loadParamGem = async function (self) {
|
|
|
657
657
|
async openBatchModal() {
|
|
658
658
|
let rowdata = this.$refs.paged.$refs.grid.getRowData()
|
|
659
659
|
if (rowdata.length <= 0) {
|
|
660
|
-
this.$showMessage('
|
|
661
|
-
return
|
|
660
|
+
this.$showMessage('不选择具体档案将批量修改所有满足条件的档案!')
|
|
662
661
|
}
|
|
663
662
|
const getAdjustables = await this.$resetpost('api/af-revenue/sql/singleTable_OrderBy',{
|
|
664
663
|
data: {
|
|
@@ -681,6 +680,10 @@ let loadParamGem = async function (self) {
|
|
|
681
680
|
f_adjustable_id: this.f_adjustable_id,
|
|
682
681
|
f_userfiles_ids: userfilesIds
|
|
683
682
|
}
|
|
683
|
+
if (rowdata.length <= 0) {
|
|
684
|
+
console.log('查看条件', this.model.condition)
|
|
685
|
+
model.condition = this.model.condition
|
|
686
|
+
}
|
|
684
687
|
await this.$resetpost('api/af-revenue/logic/batchModifyAdjustables', model, {
|
|
685
688
|
resolveMsg: null,
|
|
686
689
|
rejectMsg: '批量修改调压箱失败'
|
package/src/main.js
CHANGED
|
@@ -2,7 +2,7 @@ import Vue from 'vue'
|
|
|
2
2
|
import all from 'vue-client/src/all'
|
|
3
3
|
import App from './App'
|
|
4
4
|
import system from 'system-clients/src/system'
|
|
5
|
-
import FilialeSale from './filiale/
|
|
5
|
+
import FilialeSale from './filiale/qingjian/sale'
|
|
6
6
|
import sale from './sale'
|
|
7
7
|
import address from 'address-client/src/address'
|
|
8
8
|
import ldap from 'ldap-clients/src/ldap'
|