sale-client 3.5.47 → 3.5.49
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/.babelrc +5 -5
- package/build/dev-server.js +164 -161
- package/package.json +2 -2
- package/src/components/FilesManage/UserGeneralInfoTest.vue +2 -1
- package/src/components/UserFiles/HighMeterCard.vue +1071 -0
- package/src/components/archives/ArchivesList.vue +14 -14
- package/src/components/archives/UserfilesList.vue +68 -2
- package/src/components/common/userinfo_detail/UserBaseInfoNew.vue +9 -4
- package/src/components/revenue/comprehen/StairPrice/GasPrice.vue +1 -1
- package/src/components/revenue/dispatch/dispatchDown.vue +1 -1
- package/src/components/webMeter/paramSave/ParamSetForm.vue +2 -1
- package/src/components/webMeter/paramSaveNew/ParamSetForm.vue +326 -248
- package/src/components/webMeter/paramSaveNew/RadioBtn.vue +9 -4
- package/src/filiale/chengtou/components/FilesManage/FileUserFiles.vue +1018 -0
- package/src/filiale/chengtou/sale.js +8 -0
- package/src/filiale/dongguan/components/comprehen/StairPrice/GasPrice.vue +1 -1
- package/src/filiale/qianneng/GasPrice.vue +1 -1
- package/src/filiale/shanggao/HighMeterIdCard.vue +1 -0
- package/src/filiale/{gongyi/filesManage → shangluo}/MeterinfoTest.vue +413 -75
- package/src/filiale/{gongyi/filesManage → shangluo}/UserEssentialInfoTest.vue +50 -22
- package/src/filiale/shangluo/sale.js +7 -0
- package/src/filiale/tongchuan/StairPrice/GasPrice.vue +1 -1
- package/src/filiale/tongchuan/UserBaseInfoNew.vue +14 -5
- package/src/plugins/CardService.js +1 -1
- package/.gradle/3.5.1/file-changes/last-build.bin +0 -0
- package/.gradle/3.5.1/taskHistory/taskHistory.lock +0 -0
- package/.gradle/buildOutputCleanup/built.bin +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +0 -2
- package/.gradle/buildOutputCleanup/cache.properties.lock +0 -1
- package/src/filiale/gongyi/ChangeAccount/TransferManage.vue +0 -369
- package/src/filiale/gongyi/FilesManageNew/MeterinfoTest.vue +0 -681
- package/src/filiale/gongyi/HandManager/CardHand.vue +0 -695
- package/src/filiale/gongyi/HandManager/HandManager.vue +0 -1812
- package/src/filiale/gongyi/HandManager/HandManagerPrintBill.vue +0 -59
- package/src/filiale/gongyi/HandManager/PriceAdjustment.vue +0 -402
- package/src/filiale/gongyi/charge/ChargeList.vue +0 -711
- package/src/filiale/gongyi/charge/ChargeManage.vue +0 -229
- package/src/filiale/gongyi/charge/IOTMeterCenter.vue +0 -672
- package/src/filiale/gongyi/charge/business/CardMeterCenter.vue +0 -693
- package/src/filiale/gongyi/charge/business/OtherChargeNew.vue +0 -437
- package/src/filiale/gongyi/charge/business/ShowCardSellGas.vue +0 -720
- package/src/filiale/gongyi/charge/business/machine/MachineCharge.vue +0 -177
- package/src/filiale/gongyi/charge/business/machine/MachineMeterCenter.vue +0 -612
- package/src/filiale/gongyi/charge/business/machine/OweDetailList.vue +0 -62
- package/src/filiale/gongyi/charge/business/machine/OweList.vue +0 -213
- package/src/filiale/gongyi/charge/business/refund/IOTRefund.vue +0 -191
- package/src/filiale/gongyi/charge/business/refund/RefundManage.vue +0 -28
- package/src/filiale/gongyi/charge/business/refund/machineRefund.vue +0 -188
- package/src/filiale/gongyi/common/PaymentCode.vue +0 -164
- package/src/filiale/gongyi/common/userinfo_detail/UserBaseInfo.vue +0 -365
- package/src/filiale/gongyi/common/userinfo_detail/UserBaseInfoNew.vue +0 -325
- package/src/filiale/gongyi/components/revenue/comprehen/Message/AllUser.vue +0 -505
- package/src/filiale/gongyi/components/revenue/comprehen/Message/ArrearsList.vue +0 -323
- package/src/filiale/gongyi/filesManage/FileUserAddress.vue +0 -743
- package/src/filiale/gongyi/revenue/base/leftview/Userinfo.vue +0 -113
- package/src/filiale/gongyi/revenue/base/leftview/meterinfodetail.vue +0 -177
- package/src/filiale/gongyi/revenue/changemeter/ChangeMeter.vue +0 -681
- package/src/filiale/gongyi/revenue/comprehen/OverCharge/OverUseCharge.vue +0 -365
- package/src/filiale/gongyi/revenue/comprehen/StairPrice/GasPrice.vue +0 -501
- package/src/filiale/gongyi/revenue/comprehen/ovdue/Overduetax.vue +0 -201
- package/src/filiale/gongyi/revenue/comprehen/ovdue/OverduetaxPrintBill.vue +0 -61
- package/src/filiale/gongyi/sale.js +0 -54
package/.babelrc
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
{
|
|
2
|
-
"presets": ["es2015", "stage-2"],
|
|
3
|
-
"plugins": ["transform-runtime"],
|
|
4
|
-
"comments": false
|
|
5
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"presets": ["es2015", "stage-2"],
|
|
3
|
+
"plugins": ["transform-runtime"],
|
|
4
|
+
"comments": false
|
|
5
|
+
}
|
package/build/dev-server.js
CHANGED
|
@@ -1,161 +1,164 @@
|
|
|
1
|
-
var express = require('express')
|
|
2
|
-
var webpack = require('webpack')
|
|
3
|
-
var config = require('./webpack.dev.conf')
|
|
4
|
-
var proxyMiddleware = require('http-proxy-middleware')
|
|
5
|
-
// var httpProxy = require('http-proxy')
|
|
6
|
-
|
|
7
|
-
var app = express()
|
|
8
|
-
var compiler = webpack(config)
|
|
9
|
-
// var proxy = httpProxy.createProxyServer()
|
|
10
|
-
|
|
11
|
-
// Define HTTP proxies to your custom API backend
|
|
12
|
-
// https://github.com/chimurai/http-proxy-middleware
|
|
13
|
-
var bendi = 'http://
|
|
14
|
-
// 公司测试服务
|
|
15
|
-
var fuwu = 'http://
|
|
16
|
-
// var fuwu = 'http://121.36.106.17:8400/'
|
|
17
|
-
// 铜川正式
|
|
18
|
-
// var fuwu = 'http://61.134.55.234:9999/'
|
|
19
|
-
// 铜川测试
|
|
20
|
-
// var fuwu = 'http://61.134.55.234:9999/'
|
|
21
|
-
// var fuwu = 'http://60.222.250.39:8300/'
|
|
22
|
-
// 韶关
|
|
23
|
-
// var fuwu = 'http://119.146.1.106:8300/'
|
|
24
|
-
// 巩义测试服务
|
|
25
|
-
// var fuwu = 'http://192.168.0.227:8400'
|
|
26
|
-
// 燎原测试服务
|
|
27
|
-
// var fuwu = 'http://121.41.19.238:8400 '
|
|
28
|
-
// var fuwu = 'http://121.41.19.238:9001/'
|
|
29
|
-
|
|
30
|
-
// var fuwu = 'http://139.214.92.34:8301/'
|
|
31
|
-
|
|
32
|
-
var proxyTable = {
|
|
33
|
-
'/rs/logic/saleExport': {
|
|
34
|
-
target: fuwu
|
|
35
|
-
},
|
|
36
|
-
'/rs/logic/saleGetExportProgress': {
|
|
37
|
-
target: fuwu
|
|
38
|
-
},
|
|
39
|
-
'/
|
|
40
|
-
target: fuwu
|
|
41
|
-
},
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
'/rs/logic/
|
|
55
|
-
target: fuwu
|
|
56
|
-
},
|
|
57
|
-
'/
|
|
58
|
-
target: fuwu
|
|
59
|
-
},
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
'/rs/
|
|
65
|
-
target: fuwu
|
|
66
|
-
},
|
|
67
|
-
'/rs/
|
|
68
|
-
target: fuwu
|
|
69
|
-
},
|
|
70
|
-
'/rs/
|
|
71
|
-
target: fuwu
|
|
72
|
-
},
|
|
73
|
-
'/rs/
|
|
74
|
-
target: fuwu
|
|
75
|
-
},
|
|
76
|
-
'/
|
|
77
|
-
target: fuwu
|
|
78
|
-
},
|
|
79
|
-
'/
|
|
80
|
-
target: fuwu
|
|
81
|
-
},
|
|
82
|
-
'/rs/
|
|
83
|
-
target: fuwu
|
|
84
|
-
},
|
|
85
|
-
'/rs/sql/
|
|
86
|
-
target: fuwu
|
|
87
|
-
},
|
|
88
|
-
'/rs/sql/
|
|
89
|
-
target: fuwu
|
|
90
|
-
},
|
|
91
|
-
'/rs/
|
|
92
|
-
target:
|
|
93
|
-
},
|
|
94
|
-
'/rs/
|
|
95
|
-
target:
|
|
96
|
-
},
|
|
97
|
-
'/
|
|
98
|
-
target:
|
|
99
|
-
},
|
|
100
|
-
'/
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
})
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
//
|
|
137
|
-
|
|
138
|
-
//
|
|
139
|
-
// res.header('
|
|
140
|
-
// res.header('Access-Control-Allow-
|
|
141
|
-
// res.header('
|
|
142
|
-
//
|
|
143
|
-
//
|
|
144
|
-
|
|
145
|
-
//
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
//
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
//
|
|
153
|
-
app.use(
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
1
|
+
var express = require('express')
|
|
2
|
+
var webpack = require('webpack')
|
|
3
|
+
var config = require('./webpack.dev.conf')
|
|
4
|
+
var proxyMiddleware = require('http-proxy-middleware')
|
|
5
|
+
// var httpProxy = require('http-proxy')
|
|
6
|
+
|
|
7
|
+
var app = express()
|
|
8
|
+
var compiler = webpack(config)
|
|
9
|
+
// var proxy = httpProxy.createProxyServer()
|
|
10
|
+
|
|
11
|
+
// Define HTTP proxies to your custom API backend
|
|
12
|
+
// https://github.com/chimurai/http-proxy-middleware
|
|
13
|
+
var bendi = 'http://121.36.106.17:8400', bendi1 = 'http://121.36.106.17:8400/'
|
|
14
|
+
// 公司测试服务
|
|
15
|
+
var fuwu = 'http://121.36.106.17:8400'
|
|
16
|
+
// var fuwu = 'http://121.36.106.17:8400/'
|
|
17
|
+
// 铜川正式
|
|
18
|
+
// var fuwu = 'http://61.134.55.234:9999/'
|
|
19
|
+
// 铜川测试
|
|
20
|
+
// var fuwu = 'http://61.134.55.234:9999/'
|
|
21
|
+
// var fuwu = 'http://60.222.250.39:8300/'
|
|
22
|
+
// 韶关
|
|
23
|
+
// var fuwu = 'http://119.146.1.106:8300/'
|
|
24
|
+
// 巩义测试服务
|
|
25
|
+
// var fuwu = 'http://192.168.0.227:8400'
|
|
26
|
+
// 燎原测试服务
|
|
27
|
+
// var fuwu = 'http://121.41.19.238:8400 '
|
|
28
|
+
// var fuwu = 'http://121.41.19.238:9001/'
|
|
29
|
+
|
|
30
|
+
// var fuwu = 'http://139.214.92.34:8301/'
|
|
31
|
+
|
|
32
|
+
var proxyTable = {
|
|
33
|
+
'/rs/logic/saleExport': {
|
|
34
|
+
target: fuwu
|
|
35
|
+
},
|
|
36
|
+
'/rs/logic/saleGetExportProgress': {
|
|
37
|
+
target: fuwu
|
|
38
|
+
},
|
|
39
|
+
'/rs/file': {
|
|
40
|
+
target: fuwu
|
|
41
|
+
},
|
|
42
|
+
'/files': {
|
|
43
|
+
target: fuwu
|
|
44
|
+
},
|
|
45
|
+
// 查找资源服务数据
|
|
46
|
+
'/rs/search': {
|
|
47
|
+
target: fuwu
|
|
48
|
+
},
|
|
49
|
+
// 查找资源服务数据
|
|
50
|
+
'/rs/logic/getLogin': {
|
|
51
|
+
target: fuwu
|
|
52
|
+
},
|
|
53
|
+
// 查找资源服务数据
|
|
54
|
+
'/rs/logic/getInitData': {
|
|
55
|
+
target: fuwu
|
|
56
|
+
},
|
|
57
|
+
'/rs/logic/getSaleInitData': {
|
|
58
|
+
target: fuwu
|
|
59
|
+
},
|
|
60
|
+
'/invoice': {
|
|
61
|
+
target: fuwu
|
|
62
|
+
},
|
|
63
|
+
// 用户登录服务地址
|
|
64
|
+
'/rs/user': {
|
|
65
|
+
target: fuwu
|
|
66
|
+
},
|
|
67
|
+
'/rs/path/getParams': {
|
|
68
|
+
target: fuwu
|
|
69
|
+
},
|
|
70
|
+
'/rs/data': {
|
|
71
|
+
target: fuwu
|
|
72
|
+
},
|
|
73
|
+
'/rs/license': {
|
|
74
|
+
target: fuwu
|
|
75
|
+
},
|
|
76
|
+
'/rs/db': {
|
|
77
|
+
target: fuwu
|
|
78
|
+
},
|
|
79
|
+
'/excel': {
|
|
80
|
+
target: fuwu
|
|
81
|
+
},
|
|
82
|
+
'/rs/config': {
|
|
83
|
+
target: fuwu
|
|
84
|
+
},
|
|
85
|
+
'/rs/sql/getLicenseById': {
|
|
86
|
+
target: fuwu
|
|
87
|
+
},
|
|
88
|
+
'/rs/sql/manage_getarealist': {
|
|
89
|
+
target: fuwu
|
|
90
|
+
},
|
|
91
|
+
'/rs/sql/manage_getstreetlist': {
|
|
92
|
+
target: fuwu
|
|
93
|
+
},
|
|
94
|
+
'/rs/report': {
|
|
95
|
+
target: 'http://121.36.106.17:8400/'
|
|
96
|
+
},
|
|
97
|
+
'/rs/vue': {
|
|
98
|
+
target: fuwu
|
|
99
|
+
},
|
|
100
|
+
'/webmeter': {
|
|
101
|
+
target: 'http://192.168.50.4:8450'
|
|
102
|
+
},
|
|
103
|
+
'/rs': {
|
|
104
|
+
// target: 'http://192.168.30.63:8081/'
|
|
105
|
+
// target: 'http://121.36.106.17:8400/'
|
|
106
|
+
target: bendi
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
var devMiddleware = require('webpack-dev-middleware')(compiler, {
|
|
111
|
+
publicPath: config.output.publicPath,
|
|
112
|
+
stats: {
|
|
113
|
+
colors: true,
|
|
114
|
+
chunks: false
|
|
115
|
+
}
|
|
116
|
+
})
|
|
117
|
+
|
|
118
|
+
var hotMiddleware = require('webpack-hot-middleware')(compiler)
|
|
119
|
+
// force page reload when html-webpack-plugin template changes
|
|
120
|
+
compiler.plugin('compilation', function (compilation) {
|
|
121
|
+
compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
|
|
122
|
+
hotMiddleware.publish({action: 'reload'})
|
|
123
|
+
cb()
|
|
124
|
+
})
|
|
125
|
+
})
|
|
126
|
+
|
|
127
|
+
// proxy api requests
|
|
128
|
+
Object.keys(proxyTable).forEach(function (context) {
|
|
129
|
+
var options = proxyTable[context]
|
|
130
|
+
if (typeof options === 'string') {
|
|
131
|
+
options = {target: options}
|
|
132
|
+
}
|
|
133
|
+
app.use(proxyMiddleware(context, options))
|
|
134
|
+
})
|
|
135
|
+
|
|
136
|
+
// handle fallback for HTML5 history API
|
|
137
|
+
app.use(require('connect-history-api-fallback')())
|
|
138
|
+
// app.use(function (req, res, next) {
|
|
139
|
+
// res.header('Access-Control-Allow-Origin', '*')
|
|
140
|
+
// res.header('Access-Control-Allow-Headers', 'X-Requested-With')
|
|
141
|
+
// res.header('Access-Control-Allow-Methods', 'PUT, POST, GET,DELETE, OPTIONS')
|
|
142
|
+
// res.header('X-Powered-By', '3,2,1')
|
|
143
|
+
// res.header('Access-Control-Allow-Credentials', 'true')
|
|
144
|
+
// res.header('Content-Type', 'application/json;charset=utf-8')
|
|
145
|
+
// next()
|
|
146
|
+
// })
|
|
147
|
+
|
|
148
|
+
// serve webpack bundle output
|
|
149
|
+
app.use(devMiddleware)
|
|
150
|
+
|
|
151
|
+
// enable hot-reload and state-preserving
|
|
152
|
+
// compilation error display
|
|
153
|
+
app.use(hotMiddleware)
|
|
154
|
+
|
|
155
|
+
// serve pure static assets
|
|
156
|
+
app.use('/static', express.static('./static'))
|
|
157
|
+
|
|
158
|
+
module.exports = app.listen(8089, function (err) {
|
|
159
|
+
if (err) {
|
|
160
|
+
console.log(err)
|
|
161
|
+
return
|
|
162
|
+
}
|
|
163
|
+
console.log('Listening at http://localhost:8089')
|
|
164
|
+
})
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sale-client",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.49",
|
|
4
4
|
"description": "收费模块前台组件",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"sinon-chai": "^2.8.0",
|
|
87
87
|
"style": "0.0.3",
|
|
88
88
|
"style-loader": "^0.20.3",
|
|
89
|
-
"system-clients": "3.2.
|
|
89
|
+
"system-clients": "3.2.25",
|
|
90
90
|
"url-loader": "^0.5.7",
|
|
91
91
|
"vue-client": "1.24.67",
|
|
92
92
|
"vue-clipboard2": "0.3.1",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
<button class="button_search" style="width: max-content" @click="uploadPictures()">拍照</button>
|
|
11
11
|
<button class="button_search" style="width: max-content" @click="openBankAccount()" v-if="data.meterinfo[0].f_user_type[0] === '非民用' && ($login.r.includes('银行开户'))">银行开户</button>
|
|
12
12
|
</div>
|
|
13
|
-
<file-user-essential-info :userphonelist="data.baseinfo.userphonelist" :baseinfo="data.baseinfo" :addressinfo="data.addressinfo" @valid="essentialInfo = true"
|
|
13
|
+
<file-user-essential-info :usertype="row?row.f_user_type:null" :userphonelist="data.baseinfo.userphonelist" :baseinfo="data.baseinfo" :addressinfo="data.addressinfo" @valid="essentialInfo = true"
|
|
14
14
|
@invalid="essentialInfo = false" v-ref:useressential :isedit="isedit"></file-user-essential-info>
|
|
15
15
|
<file-userinfo-device :userinfodevices.sync="userinfodevices" :show_userinfodevices.sync="show_userinfodevices"
|
|
16
16
|
:userinfoid='data.baseinfo.base.f_userinfo_id'></file-userinfo-device>
|
|
@@ -153,6 +153,7 @@ export default {
|
|
|
153
153
|
base: {
|
|
154
154
|
f_user_name: '',
|
|
155
155
|
f_user_state: '',
|
|
156
|
+
f_user_type:'',
|
|
156
157
|
f_credentials: '',
|
|
157
158
|
f_cost_type: '',
|
|
158
159
|
f_bz_type: '',
|