manage-client 4.1.154 → 4.1.155
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 +11 -11
- package/package.json +1 -1
- package/src/components/sale/common/PrintDataSelf.vue +2 -0
- package/src/main.js +3 -2
- package/src/filiale/jinbin/exportConfig.js +0 -1110
- package/src/filiale/jinbin/sale/businessquery/ChargeQuery.vue +0 -1372
- package/src/filiale/jinbin/sale.js +0 -7
package/build/dev-server.js
CHANGED
|
@@ -6,8 +6,8 @@ const proxyMiddleware = require('http-proxy-middleware')
|
|
|
6
6
|
const app = express()
|
|
7
7
|
const compiler = webpack(config)
|
|
8
8
|
|
|
9
|
-
const server = 'http://
|
|
10
|
-
const local = 'http://
|
|
9
|
+
const server = 'http://116.204.64.92:31467/'
|
|
10
|
+
const local = 'http://116.204.64.92:31467/'
|
|
11
11
|
const proxyTable = {
|
|
12
12
|
'/rs/logic/exportfile': {
|
|
13
13
|
target: server
|
|
@@ -16,21 +16,21 @@ const proxyTable = {
|
|
|
16
16
|
target: server
|
|
17
17
|
},
|
|
18
18
|
'/api/af-revenue/sql/': {
|
|
19
|
-
pathRewrite: {
|
|
20
|
-
|
|
21
|
-
},
|
|
19
|
+
// pathRewrite: {
|
|
20
|
+
// '^/api/af-revenue': '/'
|
|
21
|
+
// },
|
|
22
22
|
target: local
|
|
23
23
|
},
|
|
24
24
|
'/api/af-revenue/report/': {
|
|
25
|
-
pathRewrite: {
|
|
26
|
-
|
|
27
|
-
},
|
|
25
|
+
// pathRewrite: {
|
|
26
|
+
// '^/api/af-revenue': '/'
|
|
27
|
+
// },
|
|
28
28
|
target: local
|
|
29
29
|
},
|
|
30
30
|
'/api/af-revenue/logic': {
|
|
31
|
-
pathRewrite: {
|
|
32
|
-
|
|
33
|
-
},
|
|
31
|
+
// pathRewrite: {
|
|
32
|
+
// '^/api/af-revenue': '/'
|
|
33
|
+
// },
|
|
34
34
|
target: local
|
|
35
35
|
},
|
|
36
36
|
'/api': {
|
package/package.json
CHANGED
|
@@ -177,6 +177,8 @@
|
|
|
177
177
|
this.sumhtml += '卡费合计: ' + `<font color="blue">${this.sumsmodel['cardfee']} </font>`
|
|
178
178
|
this.sumhtml += '方量合计: ' + `<font color="blue">${this.sumsmodel['f_pregas']} </font>`
|
|
179
179
|
this.sumhtml += '金额合计: ' + `<font color="blue">${this.sumsmodel['f_preamount']} </font>`
|
|
180
|
+
this.sumhtml += '退费笔数: ' + `<font color="blue">${this.sumsmodel['f_tuifei_count']} </font>`
|
|
181
|
+
this.sumhtml += '退费金额: ' + `<font color="blue">${this.sumsmodel['f_tuifei_money']} </font>`
|
|
180
182
|
this.sumhtml += '</th></tr>'
|
|
181
183
|
this.sumhtml3 = `<tr><th colspan=${this.modelval.length}>   小 计:`
|
|
182
184
|
this.sumhtml3 += '现金合计: ' + `<font color="blue">${this.sumsmodel['xianjin']} </font>`
|
package/src/main.js
CHANGED
|
@@ -6,8 +6,8 @@ import { all } from 'vue-client'
|
|
|
6
6
|
import { system } from 'system-clients'
|
|
7
7
|
import { ldap } from 'ldap-clients'
|
|
8
8
|
import saleManage from './saleManage'
|
|
9
|
-
import ShanXianSaleManage from './filiale/
|
|
10
|
-
|
|
9
|
+
import ShanXianSaleManage from './filiale/ningjin/sale'
|
|
10
|
+
import ShanXianwebSaleManage from './filiale/ningjin/webmeterManage'
|
|
11
11
|
import webmeterManage from './webmeterManage'
|
|
12
12
|
import reportManage from './reportManage'
|
|
13
13
|
import newmanage from './newmanage'
|
|
@@ -50,6 +50,7 @@ webmeterManage()
|
|
|
50
50
|
ManageHome()
|
|
51
51
|
newmanage()
|
|
52
52
|
ShanXianSaleManage()
|
|
53
|
+
ShanXianwebSaleManage()
|
|
53
54
|
reportManage()
|
|
54
55
|
// ShanXianSaleManage()
|
|
55
56
|
require('system-clients/src/styles/less/bootstrap.less')
|