manage-client 3.2.271 → 3.2.272
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 +0 -1
- package/package.json +1 -1
- package/src/components/sale/businessquery/FlotsamChargeQuery.vue +50 -11
- package/src/components/sale/config/exportConfig.js +6 -0
- package/src/filiale/wenxi/RecordInfoQuery.vue +72 -17
- package/src/filiale/wenxi/config/exportConfig.js +565 -519
package/build/dev-server.js
CHANGED
|
@@ -7,7 +7,6 @@ var proxyMiddleware = require('http-proxy-middleware')
|
|
|
7
7
|
var app = express()
|
|
8
8
|
var compiler = webpack(config)
|
|
9
9
|
// var proxy = httpProxy.createProxyServer()
|
|
10
|
-
|
|
11
10
|
// Define HTTP proxies to your custom API backend
|
|
12
11
|
// https://github.com/chimurai/http-proxy-middleware
|
|
13
12
|
// var bendi = 'http://127.0.0.1:8089/manage', fuwu = 'http://36.103.224.217:6300/'
|
package/package.json
CHANGED
|
@@ -35,11 +35,24 @@
|
|
|
35
35
|
<div class="col-sm-2 form-group">
|
|
36
36
|
<label class="font_normal_body">客户名称</label>
|
|
37
37
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
38
|
-
condition="f_user_name
|
|
38
|
+
condition="f_user_name = '{}'" placeholder="客户名称">
|
|
39
|
+
</div>
|
|
40
|
+
<div class="col-sm-2 form-group">
|
|
41
|
+
<label class="font_normal_body">收费状态</label>
|
|
42
|
+
<v-select :value.sync="model.f_state" multiple
|
|
43
|
+
v-model="model.f_state"
|
|
44
|
+
:options='$parent.$parent.charge_state' placeholder='请选择'
|
|
45
|
+
condition="f_state in {}"
|
|
46
|
+
close-on-select></v-select>
|
|
39
47
|
</div>
|
|
40
48
|
<div class="span" style="float:right;">
|
|
41
49
|
<button class="button_search button_spacing" @click="search()">查询</button>
|
|
42
50
|
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
51
|
+
<export-excel :data="$parent.$parent.getCondition"
|
|
52
|
+
:field="$parent.$parent.getfield"
|
|
53
|
+
sqlurl="rs/logic/exportfile" sql-name="flotsampriceChargeQuery" template-name='垃圾费查询导出'
|
|
54
|
+
:choose-col="true">
|
|
55
|
+
</export-excel>
|
|
43
56
|
</div>
|
|
44
57
|
</div>
|
|
45
58
|
</div>
|
|
@@ -61,13 +74,13 @@
|
|
|
61
74
|
<nobr>收费类型</nobr>
|
|
62
75
|
</th>
|
|
63
76
|
<th>
|
|
64
|
-
<nobr
|
|
77
|
+
<nobr>收费状态</nobr>
|
|
65
78
|
</th>
|
|
66
79
|
<th>
|
|
67
|
-
<nobr
|
|
80
|
+
<nobr>单价</nobr>
|
|
68
81
|
</th>
|
|
69
82
|
<th>
|
|
70
|
-
<nobr
|
|
83
|
+
<nobr>收费金额</nobr>
|
|
71
84
|
</th>
|
|
72
85
|
<th>
|
|
73
86
|
<nobr>收费时间</nobr>
|
|
@@ -97,13 +110,13 @@
|
|
|
97
110
|
<nobr>{{row.f_price_type}}</nobr>
|
|
98
111
|
</td>
|
|
99
112
|
<td style="text-align: center;">
|
|
100
|
-
<nobr>{{row.
|
|
113
|
+
<nobr>{{row.f_state}}</nobr>
|
|
101
114
|
</td>
|
|
102
115
|
<td style="text-align: center;">
|
|
103
|
-
<nobr>{{row.
|
|
116
|
+
<nobr>{{row.f_price}}</nobr>
|
|
104
117
|
</td>
|
|
105
118
|
<td style="text-align: center;">
|
|
106
|
-
<nobr>{{row.
|
|
119
|
+
<nobr>{{row.f_money}}</nobr>
|
|
107
120
|
</td>
|
|
108
121
|
<td style="text-align: center;">
|
|
109
122
|
<nobr>{{row.f_operate_date}}</nobr>
|
|
@@ -121,6 +134,17 @@
|
|
|
121
134
|
<template partial='foot'></template>
|
|
122
135
|
</data-grid>
|
|
123
136
|
</criteria-paged>
|
|
137
|
+
<table class="table-hover">
|
|
138
|
+
<tr style="position: relative" class="table-bordered">
|
|
139
|
+
<td
|
|
140
|
+
style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;color: #5CB95C;font-weight: bold">
|
|
141
|
+
汇总信息
|
|
142
|
+
</td>
|
|
143
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
144
|
+
垃圾费金额合计: {{sumsmodel.f_money}}
|
|
145
|
+
</td>
|
|
146
|
+
</tr>
|
|
147
|
+
</table>
|
|
124
148
|
</div>
|
|
125
149
|
</div>
|
|
126
150
|
</div>
|
|
@@ -130,6 +154,7 @@
|
|
|
130
154
|
|
|
131
155
|
<script>
|
|
132
156
|
import {PagedList} from 'vue-client'
|
|
157
|
+
import exportConfig from "../config/exportConfig";
|
|
133
158
|
let readySomething = async function (self) {
|
|
134
159
|
self.$refs.paged.$refs.cri.model.startDate = self.data ? self.data.startDate : self.$login.toStandardDateString() + ' 00:00:00'
|
|
135
160
|
self.$refs.paged.$refs.cri.model.endDate = self.data ? self.data.endDate : self.$login.toStandardDateString() + ' 23:59:59'
|
|
@@ -140,11 +165,13 @@ export default {
|
|
|
140
165
|
data() {
|
|
141
166
|
return {
|
|
142
167
|
data: {},
|
|
143
|
-
model: new PagedList('rs/sql/flotsampriceChargeQuery', 20, {orderitem: this.orderitem?`${this.orderitem}`: " 'f_operate_date desc'"}
|
|
168
|
+
model: new PagedList('rs/sql/flotsampriceChargeQuery', 20, {orderitem: this.orderitem?`${this.orderitem}`: " 'f_operate_date desc'"}
|
|
169
|
+
,{f_money:0}),
|
|
144
170
|
orgCondtionStr: '',
|
|
145
171
|
//排序
|
|
146
172
|
orderitem:'f_operate_date desc',
|
|
147
|
-
show:false
|
|
173
|
+
show:false,
|
|
174
|
+
sumsmodel : {}
|
|
148
175
|
}
|
|
149
176
|
},
|
|
150
177
|
ready() {
|
|
@@ -163,9 +190,15 @@ export default {
|
|
|
163
190
|
this.$parent.$parent.$parent.data.startDate=this.$refs.paged.$refs.cri.model.startDate
|
|
164
191
|
this.$parent.$parent.$parent.data.endDate=this.$refs.paged.$refs.cri.model.endDate
|
|
165
192
|
}
|
|
193
|
+
if(!this.$refs.paged.$refs.cri.model.startDate){
|
|
194
|
+
this.$refs.paged.$refs.cri.model.startDate = this.$login.toStandardDateString() + ' 00:00:00'
|
|
195
|
+
}
|
|
196
|
+
if(!this.$refs.paged.$refs.cri.model.endDate){
|
|
197
|
+
this.$refs.paged.$refs.cri.model.endDate = this.$login.toStandardDateString() + ' 23:59:59'
|
|
198
|
+
}
|
|
166
199
|
args.condition = `${args.condition}` + this.orgCondtionStr
|
|
167
200
|
await this.model.search(args.condition, args.model)
|
|
168
|
-
|
|
201
|
+
this.sumsmodel = this.$refs.paged.$refs.grid.model.sums;
|
|
169
202
|
},
|
|
170
203
|
clear() {
|
|
171
204
|
Object.keys(this.$refs.paged.$refs.cri.model).forEach((key) => {
|
|
@@ -177,11 +210,17 @@ export default {
|
|
|
177
210
|
}
|
|
178
211
|
},
|
|
179
212
|
computed: {
|
|
213
|
+
getfield() {
|
|
214
|
+
return exportConfig.flotsamprice
|
|
215
|
+
},
|
|
180
216
|
getCondition() {
|
|
181
217
|
return {
|
|
182
218
|
condition: `${this.$refs.paged.$refs.cri.condition}` + this.orgCondtionStr,
|
|
183
219
|
orderitem: this.orderitem?`${this.orderitem}`: " f_operate_date desc"}
|
|
184
|
-
}
|
|
220
|
+
},
|
|
221
|
+
charge_state() {
|
|
222
|
+
return [{label: '全部', value: ''}, ...this.$appdata.getParam('收费状态')]
|
|
223
|
+
},
|
|
185
224
|
}
|
|
186
225
|
}
|
|
187
226
|
</script>
|
|
@@ -11,6 +11,12 @@ export default{
|
|
|
11
11
|
'f_bank_idnumber': '银行身份证号', 'f_bank_pay_number': '缴费编号', 'f_gas_date': '通气时间'
|
|
12
12
|
},
|
|
13
13
|
|
|
14
|
+
// 垃圾费查询
|
|
15
|
+
flotsamprice: { 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_user_phone': '客户电话', 'f_price_type': '收费类型',
|
|
16
|
+
'f_state': '收费状态', 'f_price': '单价', 'f_money': '收费金额', 'f_operate_date': '收费时间',
|
|
17
|
+
'f_operator': '人员', 'f_depname': '部门', 'f_orgname': '公司'
|
|
18
|
+
},
|
|
19
|
+
|
|
14
20
|
// 操作记录查询
|
|
15
21
|
recordConfig: {
|
|
16
22
|
'f_operat_type': '操作类型', 'f_describe': '操作详情', 'f_state': '状态', 'f_operate_date': '操作时间', 'f_orgname': '公司名称',
|
|
@@ -431,93 +431,143 @@
|
|
|
431
431
|
</tr>
|
|
432
432
|
</template>
|
|
433
433
|
<template partial='body'>
|
|
434
|
+
<!--序号1-->
|
|
434
435
|
<td style="text-align: center;"><nobr>{{$index + 1}}</nobr></td>
|
|
436
|
+
<!--客户编号2-->
|
|
435
437
|
<td style="text-align: center;"><nobr>{{row.f_userinfo_code}}</nobr></td>
|
|
438
|
+
<!--户主姓名3-->
|
|
436
439
|
<td style="text-align: center;"><nobr>{{row.f_user_name}}</nobr></td>
|
|
440
|
+
<!--身份证号4-->
|
|
437
441
|
<td style="text-align: center;"><nobr>{{row.f_idnumber}}</nobr></td>
|
|
442
|
+
<!--客户类型5-->
|
|
438
443
|
<td style="text-align: center;"><nobr>{{row.f_user_type}}</nobr></td>
|
|
444
|
+
<!--用气性质6-->
|
|
439
445
|
<td style="text-align: center;"><nobr>{{row.f_gasproperties}}</nobr></td>
|
|
446
|
+
<!--气价名称7-->
|
|
440
447
|
<td style="text-align: center;"><nobr>{{row.f_price_name}}</nobr></td>
|
|
448
|
+
<!--单价8-->
|
|
441
449
|
<td style="text-align: center;"><nobr>{{row.value}}</nobr></td>
|
|
450
|
+
<!--房屋类型9-->
|
|
442
451
|
<td style="text-align: center;"><nobr>{{row.f_house_type}}</nobr></td>
|
|
452
|
+
<!--合同日期10-->
|
|
443
453
|
<td style="text-align: center;"><nobr>{{row.f_contractdate}}</nobr></td>
|
|
444
|
-
|
|
454
|
+
<!--卡号11-->
|
|
445
455
|
<td style="text-align: center;"><nobr>{{row.f_card_id}}</nobr></td>
|
|
446
|
-
|
|
456
|
+
<!--气表品牌12-->
|
|
447
457
|
<td style="text-align: center;"><nobr>{{row.f_meter_brand}}</nobr></td>
|
|
448
|
-
|
|
458
|
+
<!--安装位置13-->
|
|
449
459
|
<td style="text-align: center;"><nobr>{{row.f_position}}</nobr></td>
|
|
450
|
-
|
|
460
|
+
<!--表向14-->
|
|
451
461
|
<td style="text-align: center;"><nobr>{{row.f_aroundmeter}}</nobr></td>
|
|
452
|
-
|
|
462
|
+
<!--表号15-->
|
|
453
463
|
<td style="text-align: center;"><nobr>{{row.f_meternumber}}</nobr></td>
|
|
454
|
-
|
|
464
|
+
<!--气表型号16-->
|
|
455
465
|
<td style="text-align: center;"><nobr>{{row.f_meter_style}}</nobr></td>
|
|
456
|
-
|
|
466
|
+
<!--表封号17-->
|
|
457
467
|
<td style="text-align: center;"><nobr>{{row.f_metertitles}}</nobr></td>
|
|
458
|
-
|
|
468
|
+
<!--小区名称18-->
|
|
459
469
|
<td style="text-align: center;"><nobr>{{row.f_residential_area}}</nobr></td>
|
|
460
|
-
|
|
470
|
+
<!--详细地址19-->
|
|
461
471
|
<td style="text-align: center;"><nobr>{{row.f_address}}</nobr></td>
|
|
462
|
-
|
|
472
|
+
<!--楼栋20-->
|
|
463
473
|
<td style="text-align: center;"><nobr>{{row.f_building}}</nobr></td>
|
|
474
|
+
<!--单元21-->
|
|
464
475
|
<td style="text-align: center;"><nobr>{{row.f_unit}}</nobr></td>
|
|
476
|
+
<!--楼层22-->
|
|
465
477
|
<td style="text-align: center;"><nobr>{{row.f_floor}}</nobr></td>
|
|
478
|
+
<!--门牌号23-->
|
|
466
479
|
<td style="text-align: center;"><nobr>{{row.f_room}}</nobr></td>
|
|
480
|
+
<!--联系电话24-->
|
|
467
481
|
<td style="text-align: center;"><nobr>{{row.f_user_phone}}</nobr></td>
|
|
468
482
|
<!--联系电话-->
|
|
469
483
|
<!-- <td style="text-align: center;"><nobr>{{row.f_user_phone}}</nobr></td>-->
|
|
484
|
+
<!--建档日期25-->
|
|
470
485
|
<td style="text-align: center;"><nobr>{{row.f_createfile_date}}</nobr></td>
|
|
486
|
+
<!--通气日期26-->
|
|
471
487
|
<td style="text-align: center;"><nobr>{{row.f_gas_date}}</nobr></td>
|
|
488
|
+
<!--通气人员27-->
|
|
472
489
|
<td style="text-align: center;"><nobr>{{row.f_gas_person}}</nobr></td>
|
|
473
490
|
<!-- <td style="text-align: center;"><nobr>{{row.f_meternumber}}</nobr></td>-->
|
|
474
491
|
<!-- <td style="text-align: center;"><nobr>{{row.f_meter_type}}</nobr></td>-->
|
|
475
|
-
|
|
492
|
+
<!--客户状态28-->
|
|
476
493
|
<td style="text-align: center;"><nobr>{{row.f_user_state}}</nobr></td>
|
|
477
|
-
|
|
494
|
+
<!--档案编号29-->
|
|
478
495
|
<td style="text-align: center;"><nobr>{{row.f_olduserinfo_code}}</nobr></td>
|
|
496
|
+
<!--是否发卡30-->
|
|
479
497
|
<td style="text-align: center;"><nobr>{{row.f_whether_hairpin}}</nobr></td>
|
|
498
|
+
<!--表册片区31-->
|
|
480
499
|
<td style="text-align: center;"><nobr>{{row.f_book_slice_area}}</nobr></td>
|
|
481
|
-
|
|
500
|
+
<!--气价类型32-->
|
|
482
501
|
<td style="text-align: center;"><nobr>{{row.value}}</nobr></td>
|
|
502
|
+
<!--缴费类型33-->
|
|
483
503
|
<td style="text-align: center;"><nobr>{{row.f_cost_type}}</nobr></td>
|
|
504
|
+
<!--气表安装日期34-->
|
|
484
505
|
<td style="text-align: center;"><nobr>{{row.f_install_date}}</nobr></td>
|
|
506
|
+
<!--气表底数35-->
|
|
485
507
|
<td style="text-align: center;"><nobr>{{row.f_meter_base}}</nobr></td>
|
|
508
|
+
<!--账户余额36-->
|
|
486
509
|
<td style="text-align: center;"><nobr>{{row.f_balance}}</nobr></td>
|
|
510
|
+
<!--最后抄表日期37-->
|
|
487
511
|
<td style="text-align: center;"><nobr>{{row.f_hand_date}}</nobr></td>
|
|
512
|
+
<!--自动阀控38-->
|
|
488
513
|
<td style="text-align: center;"><nobr>{{row.f_network_valve}}</nobr></td>
|
|
514
|
+
<!--阀门状态39-->
|
|
489
515
|
<td style="text-align: center;"><nobr>{{row.f_valve_state}}</nobr></td>
|
|
516
|
+
<!--开户时间40-->
|
|
490
517
|
<td style="text-align: center;"><nobr>{{row.f_open_date}}</nobr></td>
|
|
518
|
+
<!--证件类型41-->
|
|
491
519
|
<td style="text-align: center;"><nobr>{{row.f_credentials}}</nobr></td>
|
|
520
|
+
<!--人口数42-->
|
|
492
521
|
<td style="text-align: center;"><nobr>{{row.f_people_num}}</nobr></td>
|
|
522
|
+
<!--建档人43-->
|
|
493
523
|
<td style="text-align: center;"><nobr>{{row.f_createfile_person}}</nobr></td>
|
|
524
|
+
<!--所属营业厅44-->
|
|
494
525
|
<td style="text-align: center;"><nobr>{{row.f_depname}}</nobr></td>
|
|
526
|
+
<!--备用电话45-->
|
|
495
527
|
<td style="text-align: center;"><nobr>{{row.f_rent_phone}}</nobr></td>
|
|
528
|
+
<!--租户姓名46-->
|
|
496
529
|
<td style="text-align: center;"><nobr>{{row.f_rent_name}}</nobr></td>
|
|
530
|
+
<!--租户电话47-->
|
|
531
|
+
<td style="text-align: center;"><nobr>{{row.f_zuhu_phone}}</nobr></td>
|
|
532
|
+
<!--是否煤改气48-->
|
|
497
533
|
<td style="text-align: center;"><nobr>{{row.f_is_mgq}}</nobr></td>
|
|
534
|
+
<!--使用类型49-->
|
|
498
535
|
<td style="text-align: center;"><nobr>{{row.f_usetype}}</nobr></td>
|
|
499
|
-
|
|
536
|
+
<!--表具状态50-->
|
|
500
537
|
<td style="text-align: center;"><nobr>{{row.f_table_state}}</nobr></td>
|
|
538
|
+
<!--初始气表底数51-->
|
|
501
539
|
<td style="text-align: center;"><nobr>{{row.f_initial_base}}</nobr></td>
|
|
540
|
+
<!--累计用气金额52-->
|
|
502
541
|
<td style="text-align: center;"><nobr>{{row.f_total_usegas_amount}}</nobr></td>
|
|
542
|
+
<!--表累购气量53-->
|
|
503
543
|
<td style="text-align: center;"><nobr>{{row.f_total_gas}}</nobr></td>
|
|
544
|
+
<!--表累购金额54-->
|
|
504
545
|
<td style="text-align: center;"><nobr>{{row.f_total_fee}}</nobr></td>
|
|
505
|
-
|
|
546
|
+
<!--抄表员(表册)55-->
|
|
506
547
|
<td style="text-align: center;"><nobr>{{row.f_inputtor}}</nobr></td>
|
|
548
|
+
<!--抄表员(档案)56-->
|
|
507
549
|
<td style="text-align: center;"><nobr>{{row.f_book_inputtor}}</nobr></td>
|
|
550
|
+
<!--用气点57-->
|
|
508
551
|
<td style="text-align: center;"><nobr>{{row.f_userfiles_address}}</nobr></td>
|
|
552
|
+
<!--安装人58-->
|
|
509
553
|
<td style="text-align: center;"><nobr>{{row.f_install_person}}</nobr></td>
|
|
510
554
|
<!-- <td style="text-align: center;"><nobr>{{row.f_gas_person}}</nobr></td>-->
|
|
511
555
|
<!-- <td style="text-align: center;"><nobr>{{row.f_fire_state}}</nobr></td>-->
|
|
556
|
+
<!--抄表册编号59-->
|
|
512
557
|
<td style="text-align: center;"><nobr>{{row.f_meter_book_num}}</nobr></td>
|
|
513
|
-
|
|
558
|
+
<!--抄表册顺序60-->
|
|
514
559
|
<td style="text-align: center;"><nobr>{{row.f_meter_book_sort}}</nobr></td>
|
|
560
|
+
<!--表剩余金额61-->
|
|
515
561
|
<td style="text-align: center;"><nobr>{{row.f_balance_amount}}</nobr></td>
|
|
516
562
|
<!-- <td style="text-align: center;"><nobr>{{row.f_min_operate_date}}</nobr></td>-->
|
|
563
|
+
<!--写卡次数62-->
|
|
517
564
|
<td style="text-align: center;"><nobr>{{row.f_times}}</nobr></td>
|
|
565
|
+
<!--补卡次数63-->
|
|
518
566
|
<td style="text-align: center;"><nobr>{{row.f_fillcard_times}}</nobr></td>
|
|
519
567
|
<!-- <td style="text-align: center;"><nobr>{{row.f_sell_number}}</nobr></td>-->
|
|
568
|
+
<!--表同步状态64-->
|
|
520
569
|
<td style="text-align: center;"><nobr>{{row.f_sendsuccess}}</nobr></td>
|
|
570
|
+
<!--微信绑定65-->
|
|
521
571
|
<td style="text-align: center;"><nobr>{{row.f_isband}}</nobr></td>
|
|
522
572
|
|
|
523
573
|
<!-- <td style="text-align: center;">-->
|
|
@@ -535,9 +585,13 @@
|
|
|
535
585
|
<!-- <td style="text-align: center;">-->
|
|
536
586
|
<!-- <nobr><span v-if="row.f_cost_type =='银行代扣'">{{row.f_bank_pay_number}}</span></nobr>-->
|
|
537
587
|
<!-- </td>-->
|
|
588
|
+
<!--报警器编号66-->
|
|
538
589
|
<td style="text-align: center;"><nobr>{{row.f_alarm_code}}</nobr></td>
|
|
590
|
+
<!--换表时间67-->
|
|
539
591
|
<td style="text-align: center;"><nobr>{{row.f_maxdate}}</nobr></td>
|
|
592
|
+
<!--灶具信息68-->
|
|
540
593
|
<td style="text-align: center;"><nobr>{{row.f_devices_type}}</nobr></td>
|
|
594
|
+
<!--备注69-->
|
|
541
595
|
<td style="text-align: center;"><nobr>{{row.f_comments}}</nobr></td>
|
|
542
596
|
</template>
|
|
543
597
|
<template partial='foot'>
|
|
@@ -592,7 +646,8 @@
|
|
|
592
646
|
<script>
|
|
593
647
|
import {HttpResetClass, PagedList} from 'vue-client'
|
|
594
648
|
import defaultPrint from '../../components/sale/config/DefaultPrint'
|
|
595
|
-
import exportConfig from '../../
|
|
649
|
+
import exportConfig from '../../filiale/wenxi/config/exportConfig'
|
|
650
|
+
|
|
596
651
|
// let cardBtnGen = async function (self, val) {
|
|
597
652
|
// self.cardInfo = val.data
|
|
598
653
|
//
|