manage-client 3.2.179 → 3.2.181
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 +8 -2
- package/package.json +1 -1
- package/src/components/sale/config/exportConfig.js +1 -1
- package/src/filiale/kelai/AreaChargeQuery.vue +1 -1
- package/src/filiale/kelai/exportConfig.js +1 -1
- package/src/filiale/qianneng/RecordInfoQuery.vue +1287 -0
- package/src/filiale/qianneng/exportConfig.js +22 -0
- package/src/filiale/qianneng/sale.js +3 -1
- package/src/filiale/rizhao/MeterQuery.vue +985 -0
- package/src/filiale/rizhao/config/exportConfig.js +1080 -0
- package/src/filiale/rizhao/sale.js +3 -0
- package/src/filiale/tongchuan/ChargeQuery.vue +1 -1
- package/src/filiale/zhongyi/FillCardQuery.vue +581 -0
- package/src/filiale/zhongyi/GasStatistics.vue +22 -0
- package/src/filiale/zhongyi/LostContactAnalysisList.vue +650 -0
- package/src/filiale/zhongyi/exportConfig.js +1080 -0
- package/src/filiale/zhongyi/sale.js +2 -3
- package/src/filiale/zhongyi/webmeterManage.js +12 -0
package/build/dev-server.js
CHANGED
|
@@ -13,8 +13,8 @@ var compiler = webpack(config)
|
|
|
13
13
|
// var bendi = 'http://127.0.0.1:8089/manage', fuwu = 'http://36.103.224.217:6300/'
|
|
14
14
|
var shaoguan = 'http://119.146.1.106:8300/'
|
|
15
15
|
var qtx= 'http://36.103.222.144:6300/'
|
|
16
|
-
|
|
17
|
-
var bendi = 'http://203.57.101.233:9001'
|
|
16
|
+
var bendi = 'http://220.194.141.253:8600/'
|
|
17
|
+
// var bendi = 'http://203.57.101.233:9001'
|
|
18
18
|
var fuwu = 'http://172.168.1.11:9001/'
|
|
19
19
|
// var fuwu = 'http://203.57.101.233:9001'
|
|
20
20
|
var system = 'http://192.168.50.4:8400'
|
|
@@ -31,6 +31,12 @@ var proxyTable = {
|
|
|
31
31
|
'/rs/sql/BusinessType': {
|
|
32
32
|
target: 'http://localhost:8080/'
|
|
33
33
|
},
|
|
34
|
+
'/rs/logic/getBatchOperaPro': {
|
|
35
|
+
target: 'http://localhost:8080/'
|
|
36
|
+
},
|
|
37
|
+
'/rs/customExport/areaChargeExportExcel': {
|
|
38
|
+
target: 'http://localhost:8080/'
|
|
39
|
+
},
|
|
34
40
|
'/files': {
|
|
35
41
|
target: bendi
|
|
36
42
|
},
|
package/package.json
CHANGED
|
@@ -173,7 +173,7 @@ export default{
|
|
|
173
173
|
'f_oughtfee_all': '合计欠费金额','f_oughtfee_col': '实际欠费金额', 'f_cost_type': '缴费方式', 'f_meter_type': '气表类型'
|
|
174
174
|
},
|
|
175
175
|
areaChargeQueryConfig: {
|
|
176
|
-
'f_residential_area': '小区','f_price': '单价','
|
|
176
|
+
'f_residential_area': '小区','f_price': '单价','f_gas': '购气方量','f_money': '购气金额'
|
|
177
177
|
},
|
|
178
178
|
arrearsGYConfig: {
|
|
179
179
|
'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_meternumber': '表号', 'f_residential_area': '小区名称', 'f_address': '客户地址',
|
|
@@ -171,7 +171,7 @@
|
|
|
171
171
|
|
|
172
172
|
<script>
|
|
173
173
|
import {HttpResetClass, PagedList} from 'vue-client'
|
|
174
|
-
import exportConfig from '
|
|
174
|
+
import exportConfig from './exportConfig'
|
|
175
175
|
|
|
176
176
|
let readySomething = async function (self) {
|
|
177
177
|
self.$refs.paged.$refs.cri.model.startDate = self.$login.toStandardDateString() + ' 00:00:00'
|
|
@@ -171,7 +171,7 @@ export default{
|
|
|
171
171
|
'f_oughtfee_all': '合计欠费金额','f_oughtfee_col': '实际欠费金额', 'f_cost_type': '缴费方式', 'f_meter_type': '气表类型'
|
|
172
172
|
},
|
|
173
173
|
areaChargeQueryConfig: {
|
|
174
|
-
'f_residential_area': '小区','f_price': '单价','f_gas': '购气方量','f_money': '
|
|
174
|
+
'f_residential_area': '小区','f_price': '单价','f_households': '户数','f_gas': '购气方量','f_preamount': '购气应收金额','f_money': '购气实收金额'
|
|
175
175
|
},
|
|
176
176
|
arrearsGYConfig: {
|
|
177
177
|
'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_meternumber': '表号', 'f_residential_area': '小区名称', 'f_address': '客户地址',
|