manage-client 3.2.236 → 3.2.238
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/components/sale/businessquery/CollectManage.vue +5 -1
- package/src/components/sale/businessquery/FMYGasQuery.vue +1 -1
- package/src/components/sale/businessquery/NewAreaGeneralQuery.vue +633 -0
- package/src/components/sale/filesquery/RecordInfoQuery.vue +3 -3
- package/src/filiale/huayin/ChangeMeterQuery.vue +2 -2
- package/src/filiale/shanxian/RecordInfoQuery.vue +3 -3
- package/src/filiale/wenxi/ChargeQuery.vue +1346 -0
- package/src/filiale/wenxi/sale.js +26 -0
- package/src/saleManage.js +51 -16
package/package.json
CHANGED
|
@@ -6,9 +6,12 @@
|
|
|
6
6
|
<tabs header="非收费业务查询" v-if="permission('非收费业务查询')">
|
|
7
7
|
<no-business-query v-if="show.includes('非收费业务查询')" @deal-msg="dealMsg"></no-business-query>
|
|
8
8
|
</tabs>
|
|
9
|
-
<tabs header="小区综合查询" v-if="permission('小区综合查询')">
|
|
9
|
+
<tabs header="小区综合查询" v-if="!newWebHand&&permission('小区综合查询')">
|
|
10
10
|
<area-general-query v-if="show.includes('小区综合查询')" @deal-msg="dealMsg"></area-general-query>
|
|
11
11
|
</tabs>
|
|
12
|
+
<tabs header="小区综合查询" v-if="newWebHand&&permission('小区综合查询')">
|
|
13
|
+
<new-area-general-query v-if="show.includes('小区综合查询')" @deal-msg="dealMsg"></new-area-general-query>
|
|
14
|
+
</tabs>
|
|
12
15
|
<tabs header="小区收费查询" v-if="permission('小区收费查询')">
|
|
13
16
|
<area-charge-query v-if="show.includes('小区收费查询')" @deal-msg="dealMsg"></area-charge-query>
|
|
14
17
|
</tabs>
|
|
@@ -123,6 +126,7 @@
|
|
|
123
126
|
},
|
|
124
127
|
// searchNumber:'',
|
|
125
128
|
rowData: {},
|
|
129
|
+
newWebHand: this.$appdata.getSingleValue('新抄表'),
|
|
126
130
|
show: []
|
|
127
131
|
}
|
|
128
132
|
},
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
</div>
|
|
109
109
|
<div class="col-sm-2 form-group">
|
|
110
110
|
<label class="font_normal_body">客户表号</label>
|
|
111
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"
|
|
111
|
+
<input type="text" style="width:60%" class="input_search" v-model.trim="model.f_meternumber"
|
|
112
112
|
condition="f_meternumber like '%{}%'" placeholder='客户表号'>
|
|
113
113
|
</div>
|
|
114
114
|
<div class="col-sm-2 form-group">
|
|
@@ -0,0 +1,633 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div id="unit" class="flex-row">
|
|
3
|
+
<div class="basic-main" @keyup.enter="search">
|
|
4
|
+
<div class="flex" v-if="!show">
|
|
5
|
+
<criteria-paged :model="model" v-ref:paged>
|
|
6
|
+
<criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri >
|
|
7
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
8
|
+
<div class="row">
|
|
9
|
+
<div class="col-sm-2 form-group">
|
|
10
|
+
<label for="startDate" class="font_normal_body">开始日期</label>
|
|
11
|
+
<datepicker id="startDate" placeholder="开始日期" style="width:60%"
|
|
12
|
+
v-model="model.startDate"
|
|
13
|
+
:value.sync="model.startDate"
|
|
14
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
15
|
+
:show-reset-button="true"
|
|
16
|
+
>
|
|
17
|
+
</datepicker>
|
|
18
|
+
</div>
|
|
19
|
+
<div class="col-sm-2 form-group">
|
|
20
|
+
<label for="endDate" class="font_normal_body">结束日期</label>
|
|
21
|
+
<datepicker id="endDate" placeholder="结束日期" style="width:60%"
|
|
22
|
+
v-model="model.endDate"
|
|
23
|
+
:value.sync="model.endDate"
|
|
24
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
25
|
+
:show-reset-button="true"
|
|
26
|
+
>
|
|
27
|
+
</datepicker>
|
|
28
|
+
</div>
|
|
29
|
+
<div class="col-sm-2 form-group">
|
|
30
|
+
<label class="font_normal_body"> 小区 </label>
|
|
31
|
+
<v-select :value.sync="model.f_residential_area"
|
|
32
|
+
class="select_list select"
|
|
33
|
+
enter-push
|
|
34
|
+
multiple
|
|
35
|
+
condition="f_residential_area in {}"
|
|
36
|
+
v-model="model.f_residential_area"
|
|
37
|
+
style="width: 60%"
|
|
38
|
+
:options='$parent.$parent.residentialArea' placeholder='选择小区'
|
|
39
|
+
close-on-select>
|
|
40
|
+
|
|
41
|
+
</v-select>
|
|
42
|
+
</div>
|
|
43
|
+
<div class="col-sm-2 form-group">
|
|
44
|
+
<label class="font_normal_body" title="旧客户编号">档案编号</label>
|
|
45
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_olduserinfo_code"
|
|
46
|
+
condition="f_olduserinfo_code = '{}' " placeholder="档案编号">
|
|
47
|
+
</div>
|
|
48
|
+
<!--<div class="col-sm-2 form-group">-->
|
|
49
|
+
<!--<label class="font_normal_body">客户编号</label>-->
|
|
50
|
+
<!--<input type="text" style="width:60%" class="input_search" v-model="model.f_userinfo_code"-->
|
|
51
|
+
<!--condition="f_userinfo_code = '{}' " placeholder="客户编号">-->
|
|
52
|
+
<!--</div>-->
|
|
53
|
+
<!--<div class="col-sm-2 form-group">-->
|
|
54
|
+
<!--<label class="font_normal_body">客户名称</label>-->
|
|
55
|
+
<!--<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"-->
|
|
56
|
+
<!--condition="f_user_name like '%{}%'" placeholder="客户名称">-->
|
|
57
|
+
<!--</div>-->
|
|
58
|
+
|
|
59
|
+
<div class="span" style="float:right;">
|
|
60
|
+
<!--<read-idcard></read-idcard>-->
|
|
61
|
+
<button class="button_search button_spacing" @click="search()">查询</button>
|
|
62
|
+
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
63
|
+
<export-excel :data="$parent.$parent.getCondition"
|
|
64
|
+
:field="$parent.$parent.getfield"
|
|
65
|
+
:footer="$parent.$parent.footer"
|
|
66
|
+
:header="$parent.$parent.other"
|
|
67
|
+
sqlurl="rs/logic/exportfile"
|
|
68
|
+
sql-name="areaGeneralQuery"
|
|
69
|
+
template-name='小区综合查询导出'
|
|
70
|
+
:choose-col="true"></export-excel>
|
|
71
|
+
<print-data :sum-field="$parent.$parent.getfield" :model="$parent.model" :field="$parent.$parent.getfield"
|
|
72
|
+
:defaultfield="$parent.$parent.defaultfield"
|
|
73
|
+
titletable="小区综合查询导出"
|
|
74
|
+
:sumsmodel="$parent.$parent.sumsmodel"></print-data>
|
|
75
|
+
<!--<print-data :model="$parent.model" :field="$parent.$parent.getfield"-->
|
|
76
|
+
<!--:defaultfield="$parent.$parent.defaultfield" print-name="收费查询"-->
|
|
77
|
+
<!--:sumsmodel="$parent.$parent.sumsmodel"></print-data>-->
|
|
78
|
+
<div style="float: right" class="button_spacing" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.hidden()"></div>
|
|
79
|
+
</div>
|
|
80
|
+
</div>
|
|
81
|
+
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
82
|
+
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
83
|
+
<!--<div class="col-sm-2 form-group">-->
|
|
84
|
+
<!--<label class="font_normal_body">客户电话</label>-->
|
|
85
|
+
<!--<input type="text" style="width:60%" class="input_search" v-model="model.f_user_phone"-->
|
|
86
|
+
<!--condition="f_user_phone like '%{}%'" placeholder="客户电话">-->
|
|
87
|
+
<!--</div>-->
|
|
88
|
+
<!--<div class="col-sm-2 form-group">-->
|
|
89
|
+
<!--<label class="font_normal_body">身份证号</label>-->
|
|
90
|
+
<!--<input type="text" style="width:60%" class="input_search" v-model="model.f_idnumber"-->
|
|
91
|
+
<!--condition="f_idnumber like '%{}%'" placeholder="身份证号">-->
|
|
92
|
+
<!--</div>-->
|
|
93
|
+
<!--<div class="col-sm-2 form-group">-->
|
|
94
|
+
<!--<label class="font_normal_body">客户地址</label>-->
|
|
95
|
+
<!--<input type="text" style="width:60%" class="input_search" v-model="model.f_address"-->
|
|
96
|
+
<!--condition="f_address like '%{}%'" placeholder='客户地址'>-->
|
|
97
|
+
<!--</div>-->
|
|
98
|
+
<div class="col-sm-2 form-group">
|
|
99
|
+
<label class="font_normal_body">客户类型</label>
|
|
100
|
+
<v-select :value.sync="model.f_user_type"
|
|
101
|
+
@change="$parent.$parent.userTypeChange()"
|
|
102
|
+
:options='$parent.$parent.usertypes' placeholder='请选择' v-model="model.f_user_type"
|
|
103
|
+
condition="f_user_type = '{}'"
|
|
104
|
+
close-on-select></v-select>
|
|
105
|
+
</div>
|
|
106
|
+
<div class="col-sm-2 form-group">
|
|
107
|
+
<label class="font_normal_body">用气性质</label>
|
|
108
|
+
<v-select :value.sync="model.f_gasproperties" v-model="model.f_gasproperties"
|
|
109
|
+
:options='$parent.$parent.gasproperties' placeholder='请选择'
|
|
110
|
+
condition="f_gasproperties = '{}'"
|
|
111
|
+
close-on-select></v-select>
|
|
112
|
+
</div>
|
|
113
|
+
<!--<div class="col-sm-2 form-group">-->
|
|
114
|
+
<!--<label class="font_normal_body">气表类型</label>-->
|
|
115
|
+
<!--<v-select :value.sync="model.f_meter_type" multiple-->
|
|
116
|
+
<!--:options='$parent.$parent.metertypes' placeholder='请选择' v-model="model.f_meter_type"-->
|
|
117
|
+
<!--condition="f_meter_type in {}"-->
|
|
118
|
+
<!--close-on-select></v-select>-->
|
|
119
|
+
<!--</div>-->
|
|
120
|
+
<!--<div class="col-sm-2 form-group">-->
|
|
121
|
+
<!--<label class="font_normal_body">气表品牌</label>-->
|
|
122
|
+
<!--<v-select :value.sync="model.f_meter_brand" multiple-->
|
|
123
|
+
<!--v-model="model.f_meter_brand"-->
|
|
124
|
+
<!--:options='$parent.$parent.meterbrands' placeholder='请选择'-->
|
|
125
|
+
<!--condition="f_meter_brand in {}"-->
|
|
126
|
+
<!--close-on-select></v-select>-->
|
|
127
|
+
<!--</div>-->
|
|
128
|
+
|
|
129
|
+
</div>
|
|
130
|
+
</div>
|
|
131
|
+
</criteria>
|
|
132
|
+
|
|
133
|
+
<data-grid :model="model" partial='list' class="list_area table_sy" v-ref:grid>
|
|
134
|
+
<template partial='head'>
|
|
135
|
+
<tr>
|
|
136
|
+
<th rowspan="2">
|
|
137
|
+
<nobr>序号</nobr>
|
|
138
|
+
</th>
|
|
139
|
+
<th rowspan="2">
|
|
140
|
+
<nobr>小区名称</nobr>
|
|
141
|
+
</th>
|
|
142
|
+
<th colspan="4">
|
|
143
|
+
<nobr>用户数(档案户数)</nobr>
|
|
144
|
+
</th>
|
|
145
|
+
<th rowspan="2">
|
|
146
|
+
<nobr>总户数</nobr>
|
|
147
|
+
</th>
|
|
148
|
+
<th colspan="4">
|
|
149
|
+
<nobr>机表(抄表情况)</nobr>
|
|
150
|
+
</th>
|
|
151
|
+
<th colspan="4">
|
|
152
|
+
<nobr>物联网表(用气情况)</nobr>
|
|
153
|
+
</th>
|
|
154
|
+
<th colspan="4">
|
|
155
|
+
<nobr>卡表(售气情况)</nobr>
|
|
156
|
+
</th>
|
|
157
|
+
<th rowspan="2">
|
|
158
|
+
<nobr>期间实收金额</nobr>
|
|
159
|
+
</th>
|
|
160
|
+
</tr>
|
|
161
|
+
<tr>
|
|
162
|
+
<th>
|
|
163
|
+
<nobr>正常</nobr>
|
|
164
|
+
</th>
|
|
165
|
+
<th>
|
|
166
|
+
<nobr>停用</nobr>
|
|
167
|
+
</th>
|
|
168
|
+
<th>
|
|
169
|
+
<nobr>预备户</nobr>
|
|
170
|
+
</th>
|
|
171
|
+
<th>
|
|
172
|
+
<nobr>销户</nobr>
|
|
173
|
+
</th>
|
|
174
|
+
<th>
|
|
175
|
+
<nobr>户数</nobr>
|
|
176
|
+
</th>
|
|
177
|
+
<th>
|
|
178
|
+
<nobr>气量</nobr>
|
|
179
|
+
</th>
|
|
180
|
+
<th>
|
|
181
|
+
<nobr>金额</nobr>
|
|
182
|
+
</th>
|
|
183
|
+
<th>
|
|
184
|
+
<nobr>实收</nobr>
|
|
185
|
+
</th>
|
|
186
|
+
<th >
|
|
187
|
+
<nobr>户数</nobr>
|
|
188
|
+
</th>
|
|
189
|
+
<th>
|
|
190
|
+
<nobr>气量</nobr>
|
|
191
|
+
</th>
|
|
192
|
+
<th>
|
|
193
|
+
<nobr>金额</nobr>
|
|
194
|
+
</th>
|
|
195
|
+
<th>
|
|
196
|
+
<nobr>实收</nobr>
|
|
197
|
+
</th>
|
|
198
|
+
<th title="用气户数">
|
|
199
|
+
<nobr>户数</nobr>
|
|
200
|
+
</th>
|
|
201
|
+
<th>
|
|
202
|
+
<nobr>气量</nobr>
|
|
203
|
+
</th>
|
|
204
|
+
<th>
|
|
205
|
+
<nobr>金额</nobr>
|
|
206
|
+
</th>
|
|
207
|
+
<th>
|
|
208
|
+
<nobr>实收</nobr>
|
|
209
|
+
</th>
|
|
210
|
+
</tr>
|
|
211
|
+
</template>
|
|
212
|
+
<template partial='body'>
|
|
213
|
+
<td style="text-align:center">
|
|
214
|
+
<nobr>{{$index+1}}</nobr>
|
|
215
|
+
</td>
|
|
216
|
+
<td style="text-align: center;">
|
|
217
|
+
<nobr>{{row.f_residential_area}}</nobr>
|
|
218
|
+
</td>
|
|
219
|
+
<td style="text-align: center;">
|
|
220
|
+
<nobr>{{row.f_zhengchang}}</nobr>
|
|
221
|
+
</td>
|
|
222
|
+
<td style="text-align: center;">
|
|
223
|
+
<nobr>{{row.f_tingyong}}</nobr>
|
|
224
|
+
</td>
|
|
225
|
+
<td style="text-align: center;">
|
|
226
|
+
<nobr>{{row.f_daikaitong}}</nobr>
|
|
227
|
+
</td>
|
|
228
|
+
<td style="text-align: center;">
|
|
229
|
+
<nobr>{{row.f_yichang}}</nobr>
|
|
230
|
+
</td>
|
|
231
|
+
|
|
232
|
+
<td style="text-align: center;">
|
|
233
|
+
<nobr>{{row.f_user_number}}</nobr>
|
|
234
|
+
</td>
|
|
235
|
+
|
|
236
|
+
<td style="text-align: center;">
|
|
237
|
+
<nobr>{{row.f_jibiao}}</nobr>
|
|
238
|
+
</td>
|
|
239
|
+
<td style="text-align: center;">
|
|
240
|
+
<nobr>{{row.f_oughtamount}}</nobr>
|
|
241
|
+
</td>
|
|
242
|
+
<td style="text-align: center;">
|
|
243
|
+
<nobr>{{row.f_oughtfee}}</nobr>
|
|
244
|
+
</td>
|
|
245
|
+
<td style="text-align: center;">
|
|
246
|
+
<nobr>{{row.f_collection_hand}}</nobr>
|
|
247
|
+
</td>
|
|
248
|
+
|
|
249
|
+
<td style="text-align: center;">
|
|
250
|
+
<nobr>{{row.f_wulian}}</nobr>
|
|
251
|
+
</td>
|
|
252
|
+
<td style="text-align: center;">
|
|
253
|
+
<nobr>{{row.f_oughtamount_web}}</nobr>
|
|
254
|
+
</td>
|
|
255
|
+
<td style="text-align: center;">
|
|
256
|
+
<nobr>{{row.f_oughtfee_web}}</nobr>
|
|
257
|
+
</td>
|
|
258
|
+
<td style="text-align: center;">
|
|
259
|
+
<nobr>{{row.f_collection_web}}</nobr>
|
|
260
|
+
</td>
|
|
261
|
+
|
|
262
|
+
<td style="text-align: center;">
|
|
263
|
+
<nobr>{{row.f_kabiao}}</nobr>
|
|
264
|
+
</td>
|
|
265
|
+
<td style="text-align: center;">
|
|
266
|
+
<nobr>{{row.f_pregas}}</nobr>
|
|
267
|
+
</td>
|
|
268
|
+
<td style="text-align: center;">
|
|
269
|
+
<nobr>{{row.f_preamount}}</nobr>
|
|
270
|
+
</td>
|
|
271
|
+
<td style="text-align: center;">
|
|
272
|
+
<nobr>{{row.f_collection_card}}</nobr>
|
|
273
|
+
</td>
|
|
274
|
+
<td style="text-align: center;">
|
|
275
|
+
<nobr>{{row.f_collection}}</nobr>
|
|
276
|
+
</td>
|
|
277
|
+
</template>
|
|
278
|
+
<template partial='foot'></template>
|
|
279
|
+
</data-grid>
|
|
280
|
+
</criteria-paged>
|
|
281
|
+
<table class="table-hover">
|
|
282
|
+
<tr style="position: relative" class="table-bordered">
|
|
283
|
+
<td
|
|
284
|
+
style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;color: #5CB95C;font-weight: bold">
|
|
285
|
+
汇总信息
|
|
286
|
+
</td>
|
|
287
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
288
|
+
户数合计: {{sumsmodel.f_user_number}}
|
|
289
|
+
</td>
|
|
290
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
291
|
+
正常合计: {{sumsmodel.f_zhengchang}}
|
|
292
|
+
</td>
|
|
293
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
294
|
+
停用合计: {{sumsmodel.f_tingyong}}
|
|
295
|
+
</td>
|
|
296
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
297
|
+
预备户合计: {{sumsmodel.f_daikaitong}}
|
|
298
|
+
</td>
|
|
299
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
300
|
+
销户合计: {{sumsmodel.f_yichang}}
|
|
301
|
+
</td>
|
|
302
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
303
|
+
机表抄表户数合计: {{sumsmodel.f_jibiao}}
|
|
304
|
+
</td>
|
|
305
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
306
|
+
机表抄表气量合计: {{sumsmodel.f_oughtamount}}
|
|
307
|
+
</td>
|
|
308
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
309
|
+
机表抄表金额合计: {{sumsmodel.f_oughtfee}}
|
|
310
|
+
</td>
|
|
311
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
312
|
+
机表实收金额合计: {{sumsmodel.f_collection_hand}}
|
|
313
|
+
</td>
|
|
314
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
315
|
+
物联用气户数合计: {{sumsmodel.f_wulian}}
|
|
316
|
+
</td>
|
|
317
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
318
|
+
物联用气量合计: {{sumsmodel.f_oughtamount_web}}
|
|
319
|
+
</td>
|
|
320
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
321
|
+
物联用气金额合计: {{sumsmodel.f_oughtfee_web}}
|
|
322
|
+
</td>
|
|
323
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
324
|
+
物联实收金额合计: {{sumsmodel.f_collection_web}}
|
|
325
|
+
</td>
|
|
326
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
327
|
+
卡表售气户数合计: {{sumsmodel.f_kabiao}}
|
|
328
|
+
</td>
|
|
329
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
330
|
+
卡表售气量合计: {{sumsmodel.f_pregas}}
|
|
331
|
+
</td>
|
|
332
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
333
|
+
卡表售气金额合计: {{sumsmodel.f_preamount}}
|
|
334
|
+
</td>
|
|
335
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
336
|
+
卡表实收金额合计: {{sumsmodel.f_collection_card}}
|
|
337
|
+
</td>
|
|
338
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
339
|
+
总实收金额合计: {{sumsmodel.f_collection}}
|
|
340
|
+
</td>
|
|
341
|
+
</tr>
|
|
342
|
+
</table>
|
|
343
|
+
</div>
|
|
344
|
+
<!--<div v-if="show">-->
|
|
345
|
+
<!--<user-info-detail-manage :f_userinfo_id="rowdata.f_userinfo_id" @cancel-main="cancel"></user-info-detail-manage>-->
|
|
346
|
+
<!--</div>-->
|
|
347
|
+
</div>
|
|
348
|
+
</div>
|
|
349
|
+
</template>
|
|
350
|
+
|
|
351
|
+
<script>
|
|
352
|
+
import {HttpResetClass, PagedList} from 'vue-client'
|
|
353
|
+
import exportConfig from '../config/exportConfig'
|
|
354
|
+
|
|
355
|
+
let readySomething = async function (self) {
|
|
356
|
+
self.defaultfield = [...self.defaultfield, ...self.config.defaultPrint]
|
|
357
|
+
self.$refs.paged.$refs.cri.model.startDate = self.$login.toStandardDateString() + ' 00:00:00'
|
|
358
|
+
self.$refs.paged.$refs.cri.model.endDate = self.$login.toStandardDateString() + ' 23:59:59'
|
|
359
|
+
// self.$refs.paged.$refs.cri.search()
|
|
360
|
+
// self.defaultfield = [...self.defaultfield, ...self.config.defaultPrint]
|
|
361
|
+
await self.$MagLoadParams.loadParam()
|
|
362
|
+
self.initParams()
|
|
363
|
+
self.sumsmodel = self.$refs.paged.$refs.grid.model.sums
|
|
364
|
+
}
|
|
365
|
+
export default {
|
|
366
|
+
title: '小区综合查询',
|
|
367
|
+
data() {
|
|
368
|
+
return {
|
|
369
|
+
|
|
370
|
+
//默认打印列
|
|
371
|
+
defaultfield: [],
|
|
372
|
+
config: {
|
|
373
|
+
defaultPrint: ['f_yichang', 'f_collection_hand', 'f_preamount']
|
|
374
|
+
},
|
|
375
|
+
other:[],
|
|
376
|
+
footer:[],
|
|
377
|
+
//f_price_name:[],
|
|
378
|
+
gasproperties:[],
|
|
379
|
+
showinfo: false,
|
|
380
|
+
data: {},
|
|
381
|
+
show:false,
|
|
382
|
+
rowdata:{},
|
|
383
|
+
initres: {
|
|
384
|
+
org:[this.$login.f.orgid],
|
|
385
|
+
dep:[],
|
|
386
|
+
user:[]
|
|
387
|
+
},
|
|
388
|
+
model: new PagedList('rs/sql/newAreaGeneralQuery', 20, {startDate: 'this.model.startDate', endDate: 'this.model.endDate'}, {
|
|
389
|
+
f_user_number: 0,
|
|
390
|
+
f_zhengchang: 0,
|
|
391
|
+
f_tingyong: 0,
|
|
392
|
+
f_daikaitong: 0,
|
|
393
|
+
f_yichang :0,
|
|
394
|
+
f_jibiao: 0,
|
|
395
|
+
f_oughtamount: 0,
|
|
396
|
+
f_oughtfee:0,
|
|
397
|
+
f_collection_hand:0,
|
|
398
|
+
f_wulian:0,
|
|
399
|
+
f_oughtamount_web:0,
|
|
400
|
+
f_oughtfee_web:0,
|
|
401
|
+
f_collection_web:0,
|
|
402
|
+
f_kabiao:0,
|
|
403
|
+
f_pregas:0,
|
|
404
|
+
f_preamount:0,
|
|
405
|
+
f_collection_card:0,
|
|
406
|
+
f_collection: 0
|
|
407
|
+
}),
|
|
408
|
+
criteriaShow: false,
|
|
409
|
+
// 下拉框
|
|
410
|
+
meterbrands: [],
|
|
411
|
+
pricenames: [],
|
|
412
|
+
prices: [],
|
|
413
|
+
area: [],
|
|
414
|
+
orgCondtionStr: '(' + this.$login.f.orgid + ')',
|
|
415
|
+
//小区
|
|
416
|
+
residentialArea: [],
|
|
417
|
+
sumsmodel: {},
|
|
418
|
+
f_filialeid: this.$login.f.f_orgid
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
ready() {
|
|
422
|
+
this.getaddress()
|
|
423
|
+
|
|
424
|
+
readySomething(this).then(() => {
|
|
425
|
+
this.$emit('ready')
|
|
426
|
+
}).catch((error) => {
|
|
427
|
+
this.$emit('error', error)
|
|
428
|
+
})
|
|
429
|
+
},
|
|
430
|
+
methods: {
|
|
431
|
+
getRes(obj) {
|
|
432
|
+
this.orgCondtionStr = obj
|
|
433
|
+
},
|
|
434
|
+
getotherfooter(){
|
|
435
|
+
// this.$refs.paged.$refs.cri.$refs.exports.otherData=[];
|
|
436
|
+
// this.$refs.paged.$refs.cri.$refs.exports.footerData=[];
|
|
437
|
+
this.other=[];
|
|
438
|
+
this.footer=[];
|
|
439
|
+
let exportdata = this.getCondition;
|
|
440
|
+
let otherInData=[];
|
|
441
|
+
otherInData.push(`导出时间: ${this.$login.toStandardTimeString()}`);
|
|
442
|
+
let footerData=[],exportfield=this.getfield;
|
|
443
|
+
footerData.push("合计");
|
|
444
|
+
let self =this;
|
|
445
|
+
for(var field in self.sumsmodel){
|
|
446
|
+
footerData.push(`${exportfield[field]}合计:${self.sumsmodel[field]}`);
|
|
447
|
+
}
|
|
448
|
+
this.footer.push(footerData);
|
|
449
|
+
this.other.push(otherInData);
|
|
450
|
+
},
|
|
451
|
+
async getaddress(){
|
|
452
|
+
console.log('开始获取小区')
|
|
453
|
+
let HttpReset = new HttpResetClass()
|
|
454
|
+
var data = await HttpReset.load('POST', 'rs/sql/manage_getarealist', {
|
|
455
|
+
data: {
|
|
456
|
+
condition: `1=1 and s.f_orgid = '${this.$login.f.orgid}'`
|
|
457
|
+
}
|
|
458
|
+
}, {resolveMsg: null, rejectMsg: '获取小区失败!'})
|
|
459
|
+
console.log('小区',data)
|
|
460
|
+
let house = [{label: '全部', value: ''}]
|
|
461
|
+
for (let row of data.data){
|
|
462
|
+
console.log('开始保存小区')
|
|
463
|
+
house.push({label: row.f_residential_area, value: row.f_residential_area})
|
|
464
|
+
}
|
|
465
|
+
this.residentialArea = house
|
|
466
|
+
},
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
//把数据库查询数据转换为下拉数据
|
|
472
|
+
calculate(rows){
|
|
473
|
+
let data = []
|
|
474
|
+
rows.forEach((row, n) => {
|
|
475
|
+
data[n] = {label: row.f_residential_area, value: row.id}
|
|
476
|
+
})
|
|
477
|
+
return data
|
|
478
|
+
},
|
|
479
|
+
|
|
480
|
+
search(){
|
|
481
|
+
this.$refs.paged.$refs.cri.search()
|
|
482
|
+
},
|
|
483
|
+
cancel() {
|
|
484
|
+
this.show = false
|
|
485
|
+
},
|
|
486
|
+
showmsg(obj){
|
|
487
|
+
this.rowdata=obj
|
|
488
|
+
this.show=true
|
|
489
|
+
},
|
|
490
|
+
userTypeChange () {
|
|
491
|
+
this.gasproperties=[]
|
|
492
|
+
if(this.$refs.paged.$refs.cri.model !==null) {
|
|
493
|
+
this.$refs.paged.$refs.cri.model.f_gasproperties=''
|
|
494
|
+
|
|
495
|
+
// console.log("查看客户类型",this.$refs.paged.$refs.cri.model.f_user_type[0])
|
|
496
|
+
this.gasproperties = this.$appdata.getParam(this.$refs.paged.$refs.cri.model.f_user_type[0])
|
|
497
|
+
// this.gasproperties.push({label: '全部', value: ''})
|
|
498
|
+
}
|
|
499
|
+
else{
|
|
500
|
+
this.gasproperties =[{label: '全部', value: ''}]
|
|
501
|
+
}
|
|
502
|
+
},
|
|
503
|
+
initParams() {
|
|
504
|
+
// 初始化气表品牌
|
|
505
|
+
let brandArr = []
|
|
506
|
+
this.$MagGetSaleParam.getGasbrand().forEach((item) => {
|
|
507
|
+
let temp = {}
|
|
508
|
+
temp.label = item.label
|
|
509
|
+
temp.value = item.value.f_meter_brand
|
|
510
|
+
brandArr.push(temp)
|
|
511
|
+
})
|
|
512
|
+
this.meterbrands = [{label: '全部', value: ''}, ...brandArr]
|
|
513
|
+
//初始化气表价格
|
|
514
|
+
this.prices = this.$MagGetSaleParam.getPrices();
|
|
515
|
+
},
|
|
516
|
+
selfSearch(args) {
|
|
517
|
+
if (this.$refs.paged.$refs.cri.model.startDate === '' || this.$refs.paged.$refs.cri.model.endDate === ''){
|
|
518
|
+
this.$showAlert('请先选择开始时间、结束时间,再进行查询操作!', 'warning', 3000)
|
|
519
|
+
} else {
|
|
520
|
+
let f_orgstr = this.orgCondtionStr
|
|
521
|
+
args.condition = `${args.condition} ` + f_orgstr
|
|
522
|
+
this.model.search(args.condition, args.model)
|
|
523
|
+
this.sumsmodel = this.$refs.paged.$refs.grid.model.sums
|
|
524
|
+
}
|
|
525
|
+
},
|
|
526
|
+
clear() {
|
|
527
|
+
//清空部门和人员
|
|
528
|
+
this.$refs.paged.$refs.cri.$refs.sel.$children[1].selectres = []
|
|
529
|
+
//部门和人员变为全选
|
|
530
|
+
this.$refs.paged.$refs.cri.$refs.sel.$children[1].$children[0].isSelectAll = false
|
|
531
|
+
this.$refs.paged.$refs.cri.$refs.sel.$children[2].$children[0].isSelectAll = false
|
|
532
|
+
Object.keys(this.$refs.paged.$refs.cri.model).forEach((key) => {
|
|
533
|
+
this.$refs.paged.$refs.cri.model[key] = []
|
|
534
|
+
})
|
|
535
|
+
|
|
536
|
+
},
|
|
537
|
+
dealmsg(val) {
|
|
538
|
+
val.model = this.model.model
|
|
539
|
+
this.$dispatch('deal-msg', val)
|
|
540
|
+
},
|
|
541
|
+
show() {
|
|
542
|
+
this.criteriaShow = true
|
|
543
|
+
},
|
|
544
|
+
hidden() {
|
|
545
|
+
this.criteriaShow = !this.criteriaShow
|
|
546
|
+
},
|
|
547
|
+
|
|
548
|
+
async updateParams() {
|
|
549
|
+
await this.$MagLoadParams.loadParam(this.f_filialeid)
|
|
550
|
+
this.initParams()
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
},
|
|
554
|
+
events:{
|
|
555
|
+
'getidcard'(IdCard){
|
|
556
|
+
console.log("IdCard-===")
|
|
557
|
+
console.log(IdCard)
|
|
558
|
+
// console.log(param)
|
|
559
|
+
this.$refs.paged.$refs.cri.model.f_info_idnumber=IdCard.strID
|
|
560
|
+
}
|
|
561
|
+
},
|
|
562
|
+
watch: {
|
|
563
|
+
'model'(val) {
|
|
564
|
+
},
|
|
565
|
+
'orgCondtionStr'(val) {
|
|
566
|
+
let res = val.match(/'(.*?)'/)
|
|
567
|
+
console.log('正则提取:',res && res[1])
|
|
568
|
+
if (res) {
|
|
569
|
+
this.f_filialeid = res[1]
|
|
570
|
+
this.updateParams()
|
|
571
|
+
}
|
|
572
|
+
},
|
|
573
|
+
sumsmodel:{
|
|
574
|
+
handler: function(val) {
|
|
575
|
+
this.getotherfooter();
|
|
576
|
+
},
|
|
577
|
+
deep: true
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
computed: {
|
|
581
|
+
getPricenames() {
|
|
582
|
+
let f_user_type = this.$refs.paged.model.model.f_user_type;
|
|
583
|
+
let f_gasproperties = this.$refs.paged.model.model.f_gasproperties;
|
|
584
|
+
let pricetype = this.$refs.paged.model.model.pricetype;
|
|
585
|
+
console.log("打印一下:",f_user_type,f_gasproperties,pricetype,this.f_filialeid,this.prices)
|
|
586
|
+
if(this.$refs.paged.model.model !==null) {
|
|
587
|
+
let rs = []
|
|
588
|
+
let priceArr = []
|
|
589
|
+
if (f_user_type.length > 0 && f_gasproperties.length > 0 && pricetype.length >0) {
|
|
590
|
+
let params = {
|
|
591
|
+
f_user_type: f_user_type[0],
|
|
592
|
+
f_gasproperties: f_gasproperties[0],
|
|
593
|
+
f_price_type: pricetype[0],
|
|
594
|
+
filter: this.f_filialeid,
|
|
595
|
+
prices: this.prices
|
|
596
|
+
}
|
|
597
|
+
this.$MagGetSaleParam.getPrice(params).forEach((item) => {
|
|
598
|
+
let temp = {}
|
|
599
|
+
temp.label = item.label
|
|
600
|
+
temp.value = item.value.f_price_name
|
|
601
|
+
priceArr.push(temp)
|
|
602
|
+
})
|
|
603
|
+
rs = [{label: '全部', value: ''}, ...priceArr]
|
|
604
|
+
}
|
|
605
|
+
if (rs.length === 0) {
|
|
606
|
+
console.log('rs读出来是空')
|
|
607
|
+
this.$refs.paged.model.model.f_price_name = ''
|
|
608
|
+
}
|
|
609
|
+
return rs
|
|
610
|
+
}
|
|
611
|
+
},
|
|
612
|
+
getCondition() {
|
|
613
|
+
return {
|
|
614
|
+
condition: `${this.$refs.paged.$refs.cri.condition}` + this.orgCondtionStr,
|
|
615
|
+
startDate: this.$refs.paged.$refs.cri.model.startDate,
|
|
616
|
+
endDate: this.$refs.paged.$refs.cri.model.endDate
|
|
617
|
+
}
|
|
618
|
+
},
|
|
619
|
+
getfield() {
|
|
620
|
+
return exportConfig.AreaGeneralQuery
|
|
621
|
+
},
|
|
622
|
+
usertypes() {
|
|
623
|
+
return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('用户类型')]
|
|
624
|
+
},
|
|
625
|
+
metertypes() {
|
|
626
|
+
return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('气表类型')]
|
|
627
|
+
},
|
|
628
|
+
tablestate() {
|
|
629
|
+
return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('气表状态')]
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
</script>
|