sale-client 4.0.2-preview → 4.0.4-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/build/dev-server.js +12 -0
- package/package.json +1 -1
- package/src/components/FilesManage/FileUserFiles.vue +5 -2
- package/src/components/revenue/base/rightview/CardList.vue +566 -558
- package/src/filiale/fugou/components/revenue/comprehen/ComprehenOperation/FeeDeduction/feeMachine.vue +194 -171
- package/src/filiale/fugou/components/revenue/comprehen/ComprehenOperation/GiftFee/icTable.vue +281 -256
- package/src/filiale/fugou/components/revenue/comprehen/ComprehenOperation/GiftFee/iotTable.vue +191 -163
package/build/dev-server.js
CHANGED
|
@@ -25,6 +25,18 @@ var devConfig = {
|
|
|
25
25
|
},
|
|
26
26
|
target: 'http://localhost:9026/'
|
|
27
27
|
},
|
|
28
|
+
'/api/af-revenue/file': {
|
|
29
|
+
pathRewrite: {
|
|
30
|
+
'/api/af-revenue/file': '/file'
|
|
31
|
+
},
|
|
32
|
+
target: 'http://localhost:9026/'
|
|
33
|
+
},
|
|
34
|
+
'/api/af-revenue/sql': {
|
|
35
|
+
pathRewrite: {
|
|
36
|
+
'/api/af-revenue/sql': '/sql'
|
|
37
|
+
},
|
|
38
|
+
target: 'http://localhost:9026/'
|
|
39
|
+
},
|
|
28
40
|
'/api': {
|
|
29
41
|
target: 'http://192.168.50.67:31567'
|
|
30
42
|
},
|
package/package.json
CHANGED
|
@@ -1005,8 +1005,11 @@ let loadParamGem = async function (self) {
|
|
|
1005
1005
|
try {
|
|
1006
1006
|
await axios.post('api/af-revenue/logic/newSettleFileImport',
|
|
1007
1007
|
{data: param}, {timeout: 10 * 60 * 1000, headers: {token: Vue.$login.jwt, Authorization: 'Bearer ' + Vue.$login.jwtNew}}).then((res) => {
|
|
1008
|
-
if (res.data) {
|
|
1009
|
-
|
|
1008
|
+
if (res.data.data) {
|
|
1009
|
+
let resultData = res.data.data
|
|
1010
|
+
console.log(res.data)
|
|
1011
|
+
console.log(JSON.stringify(res.data))
|
|
1012
|
+
self.$showMessage(`本次上传共上传${resultData.totalsum}条数据, 成功${resultData.successnum}条,失败${resultData.errorsum}条,具体失败数据请在稽查查询错误查询中查看!!`)
|
|
1010
1013
|
self.iswork = false
|
|
1011
1014
|
// this.$showAlert('导入成功','success',2000)
|
|
1012
1015
|
}
|