manage-client 3.3.184 → 3.3.186
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/.npmignore +10 -0
- package/build/.npmignore +1 -0
- package/package-lock.json +13392 -0
- package/package.json +111 -111
- package/src/components/SellReport/GasMoneyPublicConReport.vue +7 -34
- package/src/components/sale/businessquery/ChangeMeterQuery.vue +6 -0
- package/src/components/sale/businessquery/GroupChargeQuery.vue +1 -1
- package/src/components/sale/config/exportConfig.js +1 -0
- package/src/components/webmeter/DrillData/LostContactAnalysisList.vue +17 -5
- package/src/filiale/macheng/RecordInfoQuery.vue +1 -1
- package/src/filiale/macheng/config/exportConfig.js +1 -1
- package/src/filiale/wenxi/ChangeMeterQuery.vue +11 -0
- package/src/filiale/wenxi/config/exportConfig.js +3 -3
- package/src/filiale/yangchun/ChangeMeterQuery.vue +716 -716
- package/src/filiale/yangchun/config/exportConfig.js +1230 -1230
- package/src/filiale/yangchun/sale.js +16 -16
- package/src/filiale/zhongyi/exportConfig.js +2039 -565
- package/src/main.js +68 -68
package/package.json
CHANGED
|
@@ -1,111 +1,111 @@
|
|
|
1
|
-
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "manage-client",
|
|
3
|
+
"version": "3.3.186",
|
|
4
|
+
"description": "经营管控模块前台组件",
|
|
5
|
+
"main": "src/index.js",
|
|
6
|
+
"directories": {
|
|
7
|
+
"test": "test"
|
|
8
|
+
},
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"crypto-js": "^4.1.1",
|
|
11
|
+
"swiper": "^5.4.5"
|
|
12
|
+
},
|
|
13
|
+
"devDependencies": {
|
|
14
|
+
"axios": "0.15.3",
|
|
15
|
+
"babel-core": "^6.0.0",
|
|
16
|
+
"babel-loader": "^6.0.0",
|
|
17
|
+
"babel-plugin-transform-runtime": "^6.0.0",
|
|
18
|
+
"babel-preset-es2015": "^6.0.0",
|
|
19
|
+
"babel-preset-stage-2": "^6.0.0",
|
|
20
|
+
"chai": "^3.5.0",
|
|
21
|
+
"co": "^4.6.0",
|
|
22
|
+
"connect-history-api-fallback": "^1.1.0",
|
|
23
|
+
"cross-env": "^1.0.7",
|
|
24
|
+
"cross-spawn": "^2.1.5",
|
|
25
|
+
"css-loader": "^0.23.0",
|
|
26
|
+
"echarts": "^4.1.0",
|
|
27
|
+
"eslint": "^2.0.0",
|
|
28
|
+
"eslint-config-standard": "^5.1.0",
|
|
29
|
+
"eslint-friendly-formatter": "^1.2.2",
|
|
30
|
+
"eslint-loader": "^1.3.0",
|
|
31
|
+
"eslint-plugin-html": "^1.3.0",
|
|
32
|
+
"eslint-plugin-promise": "^1.0.8",
|
|
33
|
+
"eslint-plugin-standard": "^1.3.2",
|
|
34
|
+
"eslint-plugin-vue": "^0.1.1",
|
|
35
|
+
"eventsource-polyfill": "^0.9.6",
|
|
36
|
+
"express": "^4.13.3",
|
|
37
|
+
"extract-text-webpack-plugin": "^1.0.1",
|
|
38
|
+
"filemanager-webpack-plugin": "^2.0.5",
|
|
39
|
+
"file-loader": "^0.8.4",
|
|
40
|
+
"function-bind": "^1.0.2",
|
|
41
|
+
"html-webpack-plugin": "^2.8.1",
|
|
42
|
+
"http-proxy-middleware": "^0.11.0",
|
|
43
|
+
"inject-loader": "^2.0.1",
|
|
44
|
+
"isparta-loader": "^2.0.0",
|
|
45
|
+
"jasmine-core": "^2.4.1",
|
|
46
|
+
"jquery": "^3.3.1",
|
|
47
|
+
"jsencrypt": "3.0.0-rc.1",
|
|
48
|
+
"json-loader": "^0.5.4",
|
|
49
|
+
"karma": "^1.4.1",
|
|
50
|
+
"karma-chrome-launcher": "^2.2.0",
|
|
51
|
+
"karma-coverage": "^1.1.1",
|
|
52
|
+
"karma-mocha": "^1.3.0",
|
|
53
|
+
"karma-sinon-chai": "^1.3.1",
|
|
54
|
+
"karma-sourcemap-loader": "^0.3.7",
|
|
55
|
+
"karma-spec-reporter": "0.0.31",
|
|
56
|
+
"karma-webpack": "^2.0.2",
|
|
57
|
+
"ldap-clients": "3.0.7",
|
|
58
|
+
"less": "^2.7.3",
|
|
59
|
+
"mkdirp": "^0.5.1",
|
|
60
|
+
"mocha": "^3.2.0",
|
|
61
|
+
"moment": "2.24.0",
|
|
62
|
+
"ncp": "^2.0.0",
|
|
63
|
+
"rimraf": "^2.5.0",
|
|
64
|
+
"sale-client": "3.4.14",
|
|
65
|
+
"selenium-server": "2.52.0",
|
|
66
|
+
"sinon": "^2.1.0",
|
|
67
|
+
"sinon-chai": "^2.8.0",
|
|
68
|
+
"style": "0.0.3",
|
|
69
|
+
"style-loader": "^0.20.3",
|
|
70
|
+
"swiper": "^5.4.5",
|
|
71
|
+
"system-clients": "3.2.61",
|
|
72
|
+
"url-loader": "^0.5.7",
|
|
73
|
+
"vue-amap": "0.5.10",
|
|
74
|
+
"vue-client": "1.24.141",
|
|
75
|
+
"vue-hot-reload-api": "^1.2.0",
|
|
76
|
+
"vue-html-loader": "^1.0.0",
|
|
77
|
+
"vue-loader": "8.2.1",
|
|
78
|
+
"vue-resource": "^1.5.0",
|
|
79
|
+
"vue-router": "^0.7.13",
|
|
80
|
+
"vue-strap": "^1.0.9",
|
|
81
|
+
"vue-style-loader": "^1.0.0",
|
|
82
|
+
"vue-validator": "2.1.7",
|
|
83
|
+
"webpack": "1.12.2",
|
|
84
|
+
"webpack-dev-middleware": "^1.4.0",
|
|
85
|
+
"webpack-hot-middleware": "^2.6.0",
|
|
86
|
+
"webpack-merge": "^0.8.3",
|
|
87
|
+
"webpack-parallel-uglify-plugin": "^1.0.0"
|
|
88
|
+
},
|
|
89
|
+
"scripts": {
|
|
90
|
+
"unit": "karma start test/unit/karma.conf.js --single-run",
|
|
91
|
+
"example": "node build/example-server.js",
|
|
92
|
+
"dev": "node build/dev-server.js",
|
|
93
|
+
"lint": "eslint src/**.js test/e2e/**.js test/unit/specs/** build/**.js",
|
|
94
|
+
"oldbuild": "rimraf dist && mkdirp dist && ncp static dist/static && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.oldprod.conf.js",
|
|
95
|
+
"build": "rimraf lib && mkdirp lib && cross-env VUE_APP_ENTRY=saleManage webpack --progress --hide-modules --config build/webpack.prod.conf.js && cross-env VUE_APP_ENTRY=reportManage webpack --progress --hide-modules --config build/webpack.prod.conf.js && cross-env VUE_APP_BUILDEND=true VUE_APP_ENTRY=webmeterManage webpack --progress --hide-modules --config build/webpack.prod.conf.js",
|
|
96
|
+
"buildSaleManage": "rimraf lib && mkdirp lib && cross-env VUE_APP_ENTRY=saleManage VUE_APP_SINGLE=true webpack --progress --hide-modules --config build/webpack.prod.conf.js",
|
|
97
|
+
"buildReportManage": "rimraf lib && mkdirp lib && cross-env VUE_APP_ENTRY=reportManage VUE_APP_SINGLE=true webpack --progress --hide-modules --config build/webpack.prod.conf.js",
|
|
98
|
+
"buildWebmeterManage": "rimraf lib && mkdirp lib && cross-env VUE_APP_ENTRY=webmeterManage VUE_APP_SINGLE=true webpack --progress --hide-modules --config build/webpack.prod.conf.js",
|
|
99
|
+
"e2e": "node test/e2e/runner.js",
|
|
100
|
+
"release": "bash build/release.sh"
|
|
101
|
+
},
|
|
102
|
+
"repository": {
|
|
103
|
+
"type": "git",
|
|
104
|
+
"url": "https://gitee.com/aote/management_modules.git"
|
|
105
|
+
},
|
|
106
|
+
"keywords": [
|
|
107
|
+
"manage"
|
|
108
|
+
],
|
|
109
|
+
"author": "liuxudong",
|
|
110
|
+
"license": "ISC"
|
|
111
|
+
}
|
|
@@ -24,27 +24,7 @@
|
|
|
24
24
|
:show-reset-button="reset">
|
|
25
25
|
</datepicker>
|
|
26
26
|
</div>
|
|
27
|
-
<
|
|
28
|
-
<label class="font_normal_body"> 公司 </label>
|
|
29
|
-
<right-tree @re-res="$parent.$parent.getRes"></right-tree>
|
|
30
|
-
</div>
|
|
31
|
-
<div class="col-sm-2 form-group">
|
|
32
|
-
<label class="font_normal_body"> 部门 </label>
|
|
33
|
-
<res-select restype='department'
|
|
34
|
-
@res-select="$parent.$parent.getdep"
|
|
35
|
-
:parentresid ="$parent.$parent.depresid"
|
|
36
|
-
:initresid='$parent.$parent.depid'>
|
|
37
|
-
</res-select>
|
|
38
|
-
|
|
39
|
-
</div>
|
|
40
|
-
<div class="col-sm-2 form-group">
|
|
41
|
-
<label class="font_normal_body"> 人员 </label>
|
|
42
|
-
<res-select restype='user'
|
|
43
|
-
@res-select="$parent.$parent.getuser"
|
|
44
|
-
:parentresid="$parent.$parent.userresid"
|
|
45
|
-
:initresid='$parent.$parent.operatorid'>
|
|
46
|
-
</res-select>
|
|
47
|
-
</div>
|
|
27
|
+
<res-select-group :show-component="$parent.$parent.resshow" :selectin="true" :initres="$parent.$parent.initres" :cascade =true @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
48
28
|
<div class="col-sm-2 form-group">
|
|
49
29
|
<label class="font_normal_body" title="分组项一">分组项一</label>
|
|
50
30
|
<v-select :value.sync="model.f_public_group1"
|
|
@@ -141,6 +121,7 @@
|
|
|
141
121
|
f_orgid: this.$login.f.orgid,
|
|
142
122
|
f_depid: this.$login.f.depids,
|
|
143
123
|
f_operatorid: this.$login.f.id,
|
|
124
|
+
resshow:['company','department','operator'],
|
|
144
125
|
operatorid: [],
|
|
145
126
|
depid: [],
|
|
146
127
|
orgname: '',
|
|
@@ -178,15 +159,6 @@
|
|
|
178
159
|
this.$refs.paged.$refs.criteria.model.group1Name = this.$refs.paged.$refs.criteria.$refs.groupone.selectedItems
|
|
179
160
|
this.$refs.paged.$refs.criteria.model.group2Name = this.$refs.paged.$refs.criteria.$refs.grouptwo.selectedItems
|
|
180
161
|
let orgcondition = '1 = 1'
|
|
181
|
-
if (this.f_orgid[0]) {
|
|
182
|
-
orgcondition += ` and t1.f_orgid in ('${this.f_orgid}')`
|
|
183
|
-
}
|
|
184
|
-
if (this.f_depid[0]) {
|
|
185
|
-
orgcondition += ` and t1.f_depid in ('${this.f_depid}')`
|
|
186
|
-
}
|
|
187
|
-
if(this.f_operatorid[0]) {
|
|
188
|
-
orgcondition += ` and t1.f_operatorid in ('${this.f_operatorid}')`
|
|
189
|
-
}
|
|
190
162
|
let name1 = args.model.f_public_group1
|
|
191
163
|
let name2 = args.model.f_public_group2
|
|
192
164
|
if (name1 == null || name1 == '' || name2 == null || name2 == ''){
|
|
@@ -201,10 +173,11 @@
|
|
|
201
173
|
this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
|
|
202
174
|
this.$refs.paged.search(args)
|
|
203
175
|
},
|
|
204
|
-
getRes (obj) {
|
|
205
|
-
this.
|
|
206
|
-
this.
|
|
207
|
-
this.
|
|
176
|
+
getRes (condition, obj) {
|
|
177
|
+
this.orgCondtionStr = condition
|
|
178
|
+
this.orgname = obj.orgnames[0]
|
|
179
|
+
this.depname = obj.depnames[0]
|
|
180
|
+
this.operatorname = obj.operatornames[0]
|
|
208
181
|
},
|
|
209
182
|
getdep (obj, val) {
|
|
210
183
|
this.depname = val[0]
|
|
@@ -216,6 +216,9 @@
|
|
|
216
216
|
<th>
|
|
217
217
|
<nobr>累购金额</nobr>
|
|
218
218
|
</th>
|
|
219
|
+
<th>
|
|
220
|
+
<nobr>客户电话</nobr>
|
|
221
|
+
</th>
|
|
219
222
|
<th>
|
|
220
223
|
<!--<nobr>客户地址</nobr>-->
|
|
221
224
|
<data-order field="f_address" name="客户地址"
|
|
@@ -305,6 +308,9 @@
|
|
|
305
308
|
<td style="text-align: center;">
|
|
306
309
|
<nobr>{{row.leigoumoney}}</nobr>
|
|
307
310
|
</td>
|
|
311
|
+
<td style="text-align: center;">
|
|
312
|
+
<nobr>{{row.f_user_phone}}</nobr>
|
|
313
|
+
</td>
|
|
308
314
|
<td style="text-align: center;">
|
|
309
315
|
<nobr>{{row.f_address}}</nobr>
|
|
310
316
|
</td>
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
<criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri >
|
|
7
7
|
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
8
8
|
<div class="row">
|
|
9
|
-
<res-select-group :show-component="['company','department']" :selectin="true" :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
10
9
|
<div class="col-sm-2 form-group">
|
|
11
10
|
<label for="startDate" class="font_normal_body">开始日期</label>
|
|
12
11
|
<datepicker id="startDate" placeholder="开始日期" style="width:60%"
|
|
@@ -47,6 +46,7 @@
|
|
|
47
46
|
</div>
|
|
48
47
|
</div>
|
|
49
48
|
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
49
|
+
<res-select-group :show-component="['company','department','operator']" :selectin="true" :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
50
50
|
<div class="col-sm-2 form-group">
|
|
51
51
|
<label class="font_normal_body">客户名称</label>
|
|
52
52
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
@@ -283,6 +283,9 @@
|
|
|
283
283
|
<th style="text-align:center">
|
|
284
284
|
<nobr>累计失联天数</nobr>
|
|
285
285
|
</th>
|
|
286
|
+
<th style="text-align:center">
|
|
287
|
+
<nobr>最新失联天数</nobr>
|
|
288
|
+
</th>
|
|
286
289
|
<th style="text-align:center">
|
|
287
290
|
<nobr>气表厂家</nobr>
|
|
288
291
|
</th>
|
|
@@ -320,6 +323,9 @@
|
|
|
320
323
|
<td style="text-align:center">
|
|
321
324
|
<nobr>{{row.sldays}}</nobr>
|
|
322
325
|
</td>
|
|
326
|
+
<td style="text-align:center">
|
|
327
|
+
<nobr>{{row.new_days}}</nobr>
|
|
328
|
+
</td>
|
|
323
329
|
<td style="text-align:center">
|
|
324
330
|
<nobr>{{row.f_meter_brand}}</nobr>
|
|
325
331
|
</td>
|
|
@@ -386,15 +392,21 @@
|
|
|
386
392
|
endDate: 'this.model.endDate'
|
|
387
393
|
}),
|
|
388
394
|
getfield:{
|
|
389
|
-
"f_userinfo_code":"客户编号",
|
|
390
|
-
"
|
|
395
|
+
"f_userinfo_code":"客户编号",
|
|
396
|
+
"f_user_name":"客户名称",
|
|
397
|
+
"f_residential_area":"小区",
|
|
398
|
+
"f_address":"客户地址",
|
|
399
|
+
"f_user_type":"客户类型",
|
|
400
|
+
"f_gasproperties":"用气性质",
|
|
391
401
|
"f_meternumber":"表号",
|
|
392
|
-
|
|
393
402
|
"f_startuse_date":"启用日期",
|
|
394
403
|
"ybdays":"应报天数",
|
|
395
404
|
"sbdays":"实报天数",
|
|
396
|
-
"max_interval_day":"最长失联天数",
|
|
397
|
-
"
|
|
405
|
+
"max_interval_day":"最长失联天数",
|
|
406
|
+
"sldays":"累计失联天数",
|
|
407
|
+
"new_days":"最新失联天数",
|
|
408
|
+
"f_meter_brand":"气表厂家",
|
|
409
|
+
"f_orgname":"组织机构"},
|
|
398
410
|
reportStr: null,
|
|
399
411
|
show: false,
|
|
400
412
|
showdetail:false,
|
|
@@ -22,7 +22,7 @@ export default{
|
|
|
22
22
|
'f_zuhu_phone': '租户电话','f_is_mgq': '是否煤改气','f_send_usegas_card': '是否发放天然气使用证','f_usetype':'使用类型',
|
|
23
23
|
'f_inputtor': '表册抄表员', 'f_book_inputtor': '档案抄表员','f_userfiles_address': '安装地址','f_gas_person': '通气人',
|
|
24
24
|
'f_meter_book_num': '抄表册编号','f_meter_book_sort': '抄表册顺序','f_times': '写卡次数','f_fillcard_times': '补卡次数',
|
|
25
|
-
'f_isband': '微信绑定', 'f_meter_type': '气表类型', 'f_metertitles': '表封号', 'f_packaging': '
|
|
25
|
+
'f_isband': '微信绑定', 'f_meter_type': '气表类型', 'f_metertitles': '表封号', 'f_packaging': '工程安装费'
|
|
26
26
|
},
|
|
27
27
|
// 把打印需要默认选中的字段名放在config数组中
|
|
28
28
|
chargeConfig: {
|
|
@@ -174,6 +174,11 @@
|
|
|
174
174
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_metertitles"
|
|
175
175
|
condition="f_metertitles = '{}'" placeholder='表封号'>
|
|
176
176
|
</div>
|
|
177
|
+
<div class="col-sm-2 form-group">
|
|
178
|
+
<label class="font_normal_body">旧表封号</label>
|
|
179
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_old_metertitles"
|
|
180
|
+
condition="f_old_metertitles = '{}'" placeholder='旧表封号'>
|
|
181
|
+
</div>
|
|
177
182
|
<!-- <div class="col-sm-2 form-group">-->
|
|
178
183
|
<!-- <label class="font_normal_body">旧 表 号</label>-->
|
|
179
184
|
<!-- <input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"-->
|
|
@@ -242,6 +247,9 @@
|
|
|
242
247
|
<th>
|
|
243
248
|
<nobr>表封号</nobr>
|
|
244
249
|
</th>
|
|
250
|
+
<th>
|
|
251
|
+
<nobr>旧表封号</nobr>
|
|
252
|
+
</th>
|
|
245
253
|
<th>
|
|
246
254
|
<nobr>旧气表品牌</nobr>
|
|
247
255
|
</th>
|
|
@@ -336,6 +344,9 @@
|
|
|
336
344
|
<td style="text-align: center;">
|
|
337
345
|
<nobr>{{row.f_metertitles}}</nobr>
|
|
338
346
|
</td>
|
|
347
|
+
<td style="text-align: center;">
|
|
348
|
+
<nobr>{{row.f_old_metertitles}}</nobr>
|
|
349
|
+
</td>
|
|
339
350
|
<td style="text-align: center;">
|
|
340
351
|
<nobr>{{row.f_meter_brand_old}}</nobr>
|
|
341
352
|
</td>
|
|
@@ -227,14 +227,14 @@ export default{
|
|
|
227
227
|
'f_userfiles_address': '安装地址', 'f_install_person': '安装人', 'f_gas_person': '通气人',
|
|
228
228
|
'f_meter_book_num': '抄表册编号', 'f_meter_book_sort': '抄表册顺序',
|
|
229
229
|
'f_times': '写卡次数',
|
|
230
|
-
'f_fillcard_times': '补卡次数', 'f_sendsuccess': '表同步状态', 'f_isband': '微信绑定', 'f_cost_type': '缴费类型'
|
|
231
|
-
|
|
230
|
+
'f_fillcard_times': '补卡次数', 'f_sendsuccess': '表同步状态', 'f_isband': '微信绑定', 'f_cost_type': '缴费类型',
|
|
231
|
+
'f_bank_accopen': '银行户名', 'f_bank_name': '银行名称', 'f_bank_account': '银行账号',
|
|
232
232
|
'f_bank_idnumber': '银行身份证号', 'f_bank_pay_number': '缴费编号'
|
|
233
233
|
},
|
|
234
234
|
|
|
235
235
|
changemeterConfig: {
|
|
236
236
|
'f_userinfo_code': '客户编号', 'f_olduserinfo_code': '档案编号', 'f_user_name': '客户名称', 'f_address': '客户地址', 'f_residential_area': '小区名称',
|
|
237
|
-
'f_type': '换表类型', 'f_changemeter_fee': '换表费', 'f_meternumber_old': '旧表号', 'f_meternumber': '新表号',
|
|
237
|
+
'f_type': '换表类型', 'f_changemeter_fee': '换表费', 'f_meternumber_old': '旧表号', 'f_meternumber': '新表号', 'f_metertitles': '表封号', 'f_old_metertitles': '旧表封号',
|
|
238
238
|
'f_meter_brand_old': '旧气表品牌', 'f_meter_brand': '新气表品牌', 'f_remanent_gas': '补气量', 'f_remanent_money': '补气金额',
|
|
239
239
|
'f_comments': '备注', 'f_change_operator': '换表人', 'f_state': '状态', 'f_operate_date': '操作日期', 'f_payment': '付款方式', 'f_othereason': '换表原因',
|
|
240
240
|
'f_operator': '人员', 'f_depname': '部门', 'f_orgname': '公司', 'f_meter_base': '气表底数', 'f_balance_amount': '表上余额', 'leigougas': '累购气量', 'leigoumoney': '累购金额'
|