manage-client 3.3.247 → 3.3.249
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/package.json +1 -1
- package/src/filiale/WEINAN/UserLostContactAnalysis.vue +40 -3
- package/src/filiale/ningjin/MeterExceptionList.vue +2 -2
- package/src/filiale/qianneng/QnJgqCbjbZD.vue +6 -0
- package/src/filiale/qianneng/QnJgqCbwlwZD.vue +6 -0
- package/src/filiale/qianneng/QnJgqReport.vue +3 -0
- package/src/filiale/qianneng/QnJgqZhdacxZD.vue +33 -0
- package/src/filiale/qianneng/exportConfig.js +8 -3
- package/src/filiale/qianneng/qnJgqCbmxZD.vue +691 -0
- package/src/filiale/qianneng/reportManage.js +2 -0
- package/src/filiale/qingtongxia/NewWebMeterHandPlan.vue +1 -1
- package/src/filiale/zhongyi/CollectManage.vue +164 -0
- package/src/filiale/zhongyi/HandPeopleQuery.vue +461 -0
- package/src/filiale/zhongyi/exportConfig.js +7 -0
- package/src/filiale/zhongyi/sale.js +3 -0
package/package.json
CHANGED
|
@@ -60,6 +60,16 @@
|
|
|
60
60
|
<right-tree @re-res="$parent.$parent.getorg"
|
|
61
61
|
:initresid='$parent.$parent.org'></right-tree>
|
|
62
62
|
</div>
|
|
63
|
+
<div class="col-sm-2 form-group">
|
|
64
|
+
<label class="font_normal_body" for="dep" >部  门</label>
|
|
65
|
+
<res-select id="dep" restype='department' style="width: 60%"
|
|
66
|
+
is-mul="false"
|
|
67
|
+
@res-select="$parent.$parent.getdep"
|
|
68
|
+
:parentresid="$parent.$parent.depresid"
|
|
69
|
+
:initresid='$parent.$parent.depid' >
|
|
70
|
+
</res-select>
|
|
71
|
+
|
|
72
|
+
</div>
|
|
63
73
|
<div class="col-sm-2 form-group">
|
|
64
74
|
<label class="font_normal_body">客户类型</label>
|
|
65
75
|
<v-select style="width:60%" id="f_user_type"
|
|
@@ -379,6 +389,14 @@
|
|
|
379
389
|
Warningstyles: [
|
|
380
390
|
{label: '全部', value: ''}
|
|
381
391
|
],
|
|
392
|
+
depid: [],
|
|
393
|
+
depresid: [],
|
|
394
|
+
queryData: {
|
|
395
|
+
f_orgid: [],
|
|
396
|
+
f_depid: [],
|
|
397
|
+
f_operatorid: [],
|
|
398
|
+
f_payment: []
|
|
399
|
+
},
|
|
382
400
|
styles:false,
|
|
383
401
|
org:[this.$login.f.orgid],
|
|
384
402
|
orgCondtionStr: ` and f_orgid = ${this.$login.f.orgid}`,
|
|
@@ -401,6 +419,23 @@
|
|
|
401
419
|
},
|
|
402
420
|
|
|
403
421
|
methods: {
|
|
422
|
+
getdep(obj, val) {
|
|
423
|
+
this.orgCondtionStr = ""
|
|
424
|
+
this.depname = val[0]
|
|
425
|
+
this.userresid = obj
|
|
426
|
+
this.queryData.f_depid = obj
|
|
427
|
+
console.log(this.queryData.f_depid)
|
|
428
|
+
if (obj.length > 0) {
|
|
429
|
+
this.orgCondtionStr += " and f_depid in " + plugin.convertToIn(obj)
|
|
430
|
+
}
|
|
431
|
+
if (this.depresid && this.depresid.length > 0) {
|
|
432
|
+
this.orgCondtionStr = " and f_orgid in " + plugin.convertToIn(this.depresid) + this.orgCondtionStr
|
|
433
|
+
} else {
|
|
434
|
+
this.orgCondtionStr = " and f_orgid = " + this.$login.f.orgid + this.orgCondtionStr
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
console.log(this.orgCondtionStr);
|
|
438
|
+
},
|
|
404
439
|
userUseInstitutionChange () {
|
|
405
440
|
this.userusenatures = []
|
|
406
441
|
this.$refs.paged.$refs.cri.model.f_user_usenature = ''
|
|
@@ -485,12 +520,14 @@
|
|
|
485
520
|
this.model.search(args.condition, args.model)
|
|
486
521
|
},
|
|
487
522
|
getorg(obj) {
|
|
488
|
-
if (obj.resids.length>0) {
|
|
523
|
+
if (obj.resids.length > 0) {
|
|
524
|
+
this.depresid = obj.resids
|
|
489
525
|
this.orgCondtionStr = " and f_orgid in " + plugin.convertToIn(obj.resids)
|
|
490
|
-
}else
|
|
491
|
-
|
|
526
|
+
} else {
|
|
527
|
+
this.depresid = obj.resids
|
|
492
528
|
this.orgCondtionStr = " and f_orgid = " + this.$login.f.orgid
|
|
493
529
|
}
|
|
530
|
+
console.log(this.orgCondtionStr);
|
|
494
531
|
},
|
|
495
532
|
clearmsg() {
|
|
496
533
|
this.$refs.paged.$refs.cri.model = {}
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
</div>
|
|
81
81
|
<div class="col-sm-2 form-group">
|
|
82
82
|
<label style="width:35%" class="font_normal_body">气表品牌</label>
|
|
83
|
-
<v-select :value.sync="model.
|
|
83
|
+
<v-select :value.sync="model.f_meter_brand"
|
|
84
84
|
v-model="model.f_meter_brand"
|
|
85
85
|
:options='$parent.$parent.meterbrands' placeholder='请选择'
|
|
86
86
|
condition="f_meter_brand = '{}'"
|
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
</v-select>
|
|
189
189
|
</div>
|
|
190
190
|
<div class="col-sm-2 form-group">
|
|
191
|
-
<label class="font_normal_body">小区</label>
|
|
191
|
+
<label style="width:35%" class="font_normal_body">小区</label>
|
|
192
192
|
<input @keyup.enter="search" style="width:60%" type="text" class="input_search" v-model="model.f_residential_area"
|
|
193
193
|
placeholder='请输入小区'
|
|
194
194
|
condition="f_residential_area like '%{}%'"
|
|
@@ -108,6 +108,9 @@
|
|
|
108
108
|
<th>
|
|
109
109
|
<nobr>机表抄表</nobr>
|
|
110
110
|
</th>
|
|
111
|
+
<th>
|
|
112
|
+
<nobr>抄表时间</nobr>
|
|
113
|
+
</th>
|
|
111
114
|
</tr>
|
|
112
115
|
</template>
|
|
113
116
|
<template partial='body'>
|
|
@@ -159,6 +162,9 @@
|
|
|
159
162
|
<td style="text-align: center;">
|
|
160
163
|
<nobr>{{row.p_jbcb}}</nobr>
|
|
161
164
|
</td>
|
|
165
|
+
<td style="text-align: center;">
|
|
166
|
+
<nobr>{{row.zhcbsj}}</nobr>
|
|
167
|
+
</td>
|
|
162
168
|
</template>
|
|
163
169
|
<template partial='foot'>
|
|
164
170
|
</template>
|
|
@@ -105,6 +105,9 @@
|
|
|
105
105
|
<th>
|
|
106
106
|
<nobr>物联网抄表</nobr>
|
|
107
107
|
</th>
|
|
108
|
+
<th>
|
|
109
|
+
<nobr>最后抄表时间</nobr>
|
|
110
|
+
</th>
|
|
108
111
|
</tr>
|
|
109
112
|
</template>
|
|
110
113
|
<template partial='body'>
|
|
@@ -153,6 +156,9 @@
|
|
|
153
156
|
<td style="text-align: center;">
|
|
154
157
|
<nobr>{{row.p_jbcb}}</nobr>
|
|
155
158
|
</td>
|
|
159
|
+
<td style="text-align: center;">
|
|
160
|
+
<nobr>{{row.zhcbsj}}</nobr>
|
|
161
|
+
</td>
|
|
156
162
|
</template>
|
|
157
163
|
<template partial='foot'>
|
|
158
164
|
</template>
|
|
@@ -43,6 +43,9 @@
|
|
|
43
43
|
<tabs header="物联网抄表报表" v-if="permission('结构气物联网抄表报表正定')">
|
|
44
44
|
<qn-jgq-cbwlwzd v-if="show.includes('物联网抄表报表')" @deal-msg="dealMsg" :data="data"></qn-jgq-cbwlwzd>
|
|
45
45
|
</tabs>
|
|
46
|
+
<tabs header="物联网抄表明细" v-if="permission('结构气物联网抄表明细正定')">
|
|
47
|
+
<qn-jgq-cbmxzd v-if="show.includes('物联网抄表明细')" @deal-msg="dealMsg" :data="data"></qn-jgq-cbmxzd>
|
|
48
|
+
</tabs>
|
|
46
49
|
<tabs header="收费报表" v-if="permission('结构气收费报表正定')">
|
|
47
50
|
<qn-jgq-sfzd v-if="show.includes('收费报表')" @deal-msg="dealMsg" :data="data"></qn-jgq-sfzd>
|
|
48
51
|
</tabs>
|
|
@@ -82,6 +82,15 @@
|
|
|
82
82
|
<th>
|
|
83
83
|
<nobr>客户名称</nobr>
|
|
84
84
|
</th>
|
|
85
|
+
<th>
|
|
86
|
+
<nobr>区/县</nobr>
|
|
87
|
+
</th>
|
|
88
|
+
<th>
|
|
89
|
+
<nobr>街道/乡镇</nobr>
|
|
90
|
+
</th>
|
|
91
|
+
<th>
|
|
92
|
+
<nobr>小区</nobr>
|
|
93
|
+
</th>
|
|
85
94
|
<th>
|
|
86
95
|
<nobr>客户地址</nobr>
|
|
87
96
|
</th>
|
|
@@ -103,6 +112,12 @@
|
|
|
103
112
|
<th>
|
|
104
113
|
<nobr>价格名称</nobr>
|
|
105
114
|
</th>
|
|
115
|
+
<th>
|
|
116
|
+
<nobr>开户时间</nobr>
|
|
117
|
+
</th>
|
|
118
|
+
<th>
|
|
119
|
+
<nobr>通气时间</nobr>
|
|
120
|
+
</th>
|
|
106
121
|
</tr>
|
|
107
122
|
</template>
|
|
108
123
|
<template partial='body'>
|
|
@@ -112,6 +127,17 @@
|
|
|
112
127
|
<td style="text-align: center;">
|
|
113
128
|
<nobr>{{row.f_user_name}}</nobr>
|
|
114
129
|
</td>
|
|
130
|
+
|
|
131
|
+
<td style="text-align: center;">
|
|
132
|
+
<nobr>{{row.qx}}</nobr>
|
|
133
|
+
</td>
|
|
134
|
+
<td style="text-align: center;">
|
|
135
|
+
<nobr>{{row.jdxz}}</nobr>
|
|
136
|
+
</td>
|
|
137
|
+
<td style="text-align: center;">
|
|
138
|
+
<nobr>{{row.xq}}</nobr>
|
|
139
|
+
</td>
|
|
140
|
+
|
|
115
141
|
<td style="text-align: center;">
|
|
116
142
|
<nobr>{{row.f_address}}</nobr>
|
|
117
143
|
</td>
|
|
@@ -133,6 +159,13 @@
|
|
|
133
159
|
<td style="text-align: center;">
|
|
134
160
|
<nobr>{{row.f_price_name}}</nobr>
|
|
135
161
|
</td>
|
|
162
|
+
|
|
163
|
+
<td style="text-align: center;">
|
|
164
|
+
<nobr>{{row.f_open_date}}</nobr>
|
|
165
|
+
</td>
|
|
166
|
+
<td style="text-align: center;">
|
|
167
|
+
<nobr>{{row.f_gas_date}}</nobr>
|
|
168
|
+
</td>
|
|
136
169
|
</template>
|
|
137
170
|
<template partial='foot'>
|
|
138
171
|
</template>
|
|
@@ -134,9 +134,9 @@ export default{
|
|
|
134
134
|
'f_idnumber':'证件号码', 'f_table_state':'表状态', 'f_comments':'备注信息', 'f_gas_date':'通气日期'
|
|
135
135
|
},
|
|
136
136
|
qnJgqZhdacxZD:{
|
|
137
|
-
'f_userinfo_code':'客户编号', 'f_user_name':'客户名称',
|
|
137
|
+
'f_userinfo_code':'客户编号', 'f_user_name':'客户名称','qx':'区/县','jdxz':'街道/乡镇','xq':'小区','f_address':'客户地址', 'f_user_phone':'客户电话',
|
|
138
138
|
'f_meter_type':'表具类型', 'f_meternumber':'表号', 'f_user_type':'客户类型', 'f_gasproperties':'用气性质',
|
|
139
|
-
'f_price_name':'价格名称'
|
|
139
|
+
'f_price_name':'价格名称', 'f_open_date':'开户时间', 'f_gas_date':'通气时间'
|
|
140
140
|
},
|
|
141
141
|
qnJgqMgqbb:{
|
|
142
142
|
'b_yhh':'用户号','c_yhmc':'用户名','d_yqdz':'地址','e_spmc':'商品名称','g_cbqj':'抄表期间','h_csqf':'起方','i_cszf':'止方',
|
|
@@ -191,10 +191,15 @@ export default{
|
|
|
191
191
|
qnJgqCbjbZD:{
|
|
192
192
|
'a_khbm':'客户编码','b_yhmc':'用户名称','c_dz':'地址','d_qf':'起方','e_zf':'止方','f_dj':'单价','g_ql':'气量',
|
|
193
193
|
'h_je':'金额','i_yd':'月度','j_bh':'表号','k_yhlx':'用户类型','l_yqxz':'用气性质','m_jgmc':'价格名称','n_cby':'抄表员','o_blx':'表类型','p_jbcb':'机表抄表'
|
|
194
|
+
,'zhcbsj':'抄表时间'
|
|
195
|
+
},
|
|
196
|
+
qnJgqCbmxZD:{
|
|
197
|
+
'a_khbm':'客户编码','b_yhmc':'用户名称','c_dz':'地址','d_qf':'起方','e_zf':'止方','f_dj':'单价','g_ql':'气量',
|
|
198
|
+
'h_je':'金额','i_yd':'月度','j_bh':'表号','k_yhlx':'用户类型','l_yqxz':'用气性质','m_jgmc':'价格名称','n_cby':'抄表员','o_blx':'表类型','p_jbcb':'机表抄表','cbrq':'抄表日期'
|
|
194
199
|
},
|
|
195
200
|
qnJgqCbwlwZD:{
|
|
196
201
|
'a_khbm':'客户编码','b_yhmc':'用户名称','c_dz':'地址','d_qf':'起方','e_zf':'止方','g_ql':'气量',
|
|
197
|
-
'h_je':'金额','i_yd':'月度','j_bh':'表号','k_yhlx':'用户类型','l_yqxz':'用气性质','m_jgmc':'价格名称','n_cby':'抄表员','o_blx':'表类型','p_jbcb':'物联网抄表'
|
|
202
|
+
'h_je':'金额','i_yd':'月度','j_bh':'表号','k_yhlx':'用户类型','l_yqxz':'用气性质','m_jgmc':'价格名称','n_cby':'抄表员','o_blx':'表类型','p_jbcb':'物联网抄表','zhcbsj':'最后抄表时间'
|
|
198
203
|
},
|
|
199
204
|
qnJgqSfZD:{
|
|
200
205
|
'a_dabm':'档案编码','b_yhmc':'用户名称','c_dz':'地址','d_lxfs':'联系方式','e_yhlx':'用户类型','f_yqxz':'用气性质','g_jgmc':'价格名称','h_bh':'表号',
|