manage-client 3.3.112 → 3.3.114
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/BusinessManage.vue +3 -0
- package/src/filiale/WEINAN/businessquery/WallHangingFurnaceUserQuery.vue +415 -0
- package/src/filiale/WEINAN/config/exportConfig.js +13 -0
- package/src/filiale/WEINAN/sale.js +2 -0
- package/src/filiale/kelai/GasStatistics.vue +2 -2
- package/src/filiale/lixianV3/ChangeMeterQuery.vue +2 -2
- package/src/filiale/lixianV3/config/exportConfig.js +1 -0
- package/src/filiale/meihekou/ArrearsHistoryQuery.vue +915 -0
- package/src/filiale/meihekou/CollectManage.vue +152 -0
- package/src/filiale/meihekou/sale.js +4 -0
package/package.json
CHANGED
|
@@ -78,6 +78,9 @@
|
|
|
78
78
|
<tabs header="档案合并查询" v-if="permission('档案合并查询')">
|
|
79
79
|
<merge-file-query v-if="show.includes('档案合并查询')"></merge-file-query>
|
|
80
80
|
</tabs>
|
|
81
|
+
<tabs header="壁挂炉用户查询" v-if="permission('壁挂炉用户查询')">
|
|
82
|
+
<manage-wall-hanging-furnace-user-query v-if="show.includes('壁挂炉用户查询')"></manage-wall-hanging-furnace-user-query>
|
|
83
|
+
</tabs>
|
|
81
84
|
</tab-button>
|
|
82
85
|
<!-- </div>-->
|
|
83
86
|
<!-- <div v-if="!listpage">-->
|
|
@@ -0,0 +1,415 @@
|
|
|
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'"
|
|
15
|
+
:show-reset-button="true">
|
|
16
|
+
</datepicker>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="col-sm-2 form-group">
|
|
19
|
+
<label for="endDate" class="font_normal_body">结束日期</label>
|
|
20
|
+
<datepicker id="endDate" placeholder="结束日期" style="width:60%"
|
|
21
|
+
v-model="model.endDate"
|
|
22
|
+
:value.sync="model.endDate"
|
|
23
|
+
:format="'yyyy-MM-dd'"
|
|
24
|
+
:show-reset-button="true">
|
|
25
|
+
</datepicker>
|
|
26
|
+
</div>
|
|
27
|
+
<div class="col-sm-2 form-group">
|
|
28
|
+
<label for="endDate" class="font_normal_body">小区名称</label>
|
|
29
|
+
<v-select :value.sync="model.f_residential_area_id"
|
|
30
|
+
class="select_list select"
|
|
31
|
+
enter-push v-model="model.f_residential_area_id" multiple="true"
|
|
32
|
+
@select-search="$parent.$parent.getAreaList"
|
|
33
|
+
:options='$parent.$parent.areaList' placeholder='小区名称'
|
|
34
|
+
condition="f_residential_area_id in {}">
|
|
35
|
+
</v-select>
|
|
36
|
+
</div>
|
|
37
|
+
<div class="span" style="float:right;">
|
|
38
|
+
<button class="button_search button_spacing" @click="search()">查询</button>
|
|
39
|
+
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
40
|
+
<export-excel :data="$parent.$parent.getCondition"
|
|
41
|
+
:field="$parent.$parent.getfield"
|
|
42
|
+
:header="$parent.$parent.other"
|
|
43
|
+
:footer="$parent.$parent.footer"
|
|
44
|
+
sqlurl="rs/logic/exportfile"
|
|
45
|
+
sql-name="manage_wallHangingFurnaceUserQuery"
|
|
46
|
+
template-name='壁挂炉用户查询'
|
|
47
|
+
:choose-col="true"></export-excel>
|
|
48
|
+
<print-data :sum-field="$parent.$parent.getfield" :model="$parent.model"
|
|
49
|
+
:field="$parent.$parent.getfield"
|
|
50
|
+
titletable="壁挂炉用户查询" :starthead="$parent.$parent.startDate"
|
|
51
|
+
:defaultfield="$parent.$parent.defaultfield"
|
|
52
|
+
:sumsmodel="$parent.$parent.sumsmodel"></print-data>
|
|
53
|
+
<div
|
|
54
|
+
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
55
|
+
@click="$parent.$parent.hidden()"
|
|
56
|
+
class="button_spacing"
|
|
57
|
+
style="float: right"></div>
|
|
58
|
+
</div>
|
|
59
|
+
</div>
|
|
60
|
+
<div class="row" v-if="$parent.$parent.criteriaShow">
|
|
61
|
+
<res-select-group
|
|
62
|
+
:show-component="['company','department','operator']"
|
|
63
|
+
:initres="$parent.$parent.initres"
|
|
64
|
+
@re-res="$parent.$parent.getRes"
|
|
65
|
+
v-ref:sel
|
|
66
|
+
></res-select-group>
|
|
67
|
+
<div class="col-sm-2 form-group">
|
|
68
|
+
<label class="font_normal_body">表具类型</label>
|
|
69
|
+
<v-select :value.sync="model.f_meter_type"
|
|
70
|
+
:search="false"
|
|
71
|
+
v-model="model.f_meter_type"
|
|
72
|
+
condition="f_meter_type = '{}'"
|
|
73
|
+
:options='$parent.$parent.metertypes'
|
|
74
|
+
close-on-select
|
|
75
|
+
placeholder='请选择'
|
|
76
|
+
></v-select>
|
|
77
|
+
</div>
|
|
78
|
+
</div>
|
|
79
|
+
</div>
|
|
80
|
+
</criteria>
|
|
81
|
+
<data-grid :model="model" partial='list' class="list_area table_sy" v-ref:grid :classname="$parent.classname">
|
|
82
|
+
<template partial='head'>
|
|
83
|
+
<tr>
|
|
84
|
+
<th>
|
|
85
|
+
<nobr>用户编号</nobr>
|
|
86
|
+
</th>
|
|
87
|
+
<th>
|
|
88
|
+
<nobr>用户名称</nobr>
|
|
89
|
+
</th>
|
|
90
|
+
<th>
|
|
91
|
+
<nobr>联系电话</nobr>
|
|
92
|
+
</th>
|
|
93
|
+
<th>
|
|
94
|
+
<nobr>所在小区</nobr>
|
|
95
|
+
</th>
|
|
96
|
+
<th>
|
|
97
|
+
<nobr>详细地址</nobr>
|
|
98
|
+
</th>
|
|
99
|
+
<th>
|
|
100
|
+
<nobr>累购金额</nobr>
|
|
101
|
+
</th>
|
|
102
|
+
<th>
|
|
103
|
+
<nobr>已用量</nobr>
|
|
104
|
+
</th>
|
|
105
|
+
<th>
|
|
106
|
+
<nobr>原气价类型</nobr>
|
|
107
|
+
</th>
|
|
108
|
+
<th>
|
|
109
|
+
<nobr>现气价类型</nobr>
|
|
110
|
+
</th>
|
|
111
|
+
<th>
|
|
112
|
+
<nobr>气价变更时间</nobr>
|
|
113
|
+
</th>
|
|
114
|
+
<th>
|
|
115
|
+
<nobr>表具类型</nobr>
|
|
116
|
+
</th>
|
|
117
|
+
</tr>
|
|
118
|
+
</template>
|
|
119
|
+
<template partial='body'>
|
|
120
|
+
<td style="text-align: center;">
|
|
121
|
+
<nobr>{{ row.f_userinfo_code }}</nobr>
|
|
122
|
+
</td>
|
|
123
|
+
<td style="text-align: center;">
|
|
124
|
+
<nobr>{{ row.f_user_name }}</nobr>
|
|
125
|
+
</td>
|
|
126
|
+
<td style="text-align: center;">
|
|
127
|
+
<nobr>{{ row.f_user_phone }}</nobr>
|
|
128
|
+
</td>
|
|
129
|
+
<td style="text-align: center;">
|
|
130
|
+
<nobr>{{ row.f_residential_area }}</nobr>
|
|
131
|
+
</td>
|
|
132
|
+
<td style="text-align: center;">
|
|
133
|
+
<nobr>{{ row.f_address }}</nobr>
|
|
134
|
+
</td>
|
|
135
|
+
<td style="text-align: center;">
|
|
136
|
+
<nobr>{{ row.f_collection }}</nobr>
|
|
137
|
+
</td>
|
|
138
|
+
<td style="text-align: center;">
|
|
139
|
+
<nobr>{{ row.f_meter_base }}</nobr>
|
|
140
|
+
</td>
|
|
141
|
+
<td style="text-align: center;">
|
|
142
|
+
<nobr>{{ row.f_old_price_type }}</nobr>
|
|
143
|
+
</td>
|
|
144
|
+
<td style="text-align: center;">
|
|
145
|
+
<nobr>{{ row.f_new_price_type }}</nobr>
|
|
146
|
+
</td>
|
|
147
|
+
<td style="text-align: center;">
|
|
148
|
+
<nobr>{{ row.f_operate_date }}</nobr>
|
|
149
|
+
</td>
|
|
150
|
+
<td style="text-align: center;">
|
|
151
|
+
<nobr>{{ row.f_meter_type }}</nobr>
|
|
152
|
+
</td>
|
|
153
|
+
</template>
|
|
154
|
+
<template partial='foot'></template>
|
|
155
|
+
</data-grid>
|
|
156
|
+
</criteria-paged>
|
|
157
|
+
<table class="table-hover">
|
|
158
|
+
<tr style="position: relative" class="table-bordered">
|
|
159
|
+
<td
|
|
160
|
+
style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;color: #5CB95C;font-weight: bold">
|
|
161
|
+
汇总信息
|
|
162
|
+
</td>
|
|
163
|
+
<td
|
|
164
|
+
style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
165
|
+
期初户数: {{ sumsmodel.f_start_count }}
|
|
166
|
+
</td>
|
|
167
|
+
<td
|
|
168
|
+
style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
169
|
+
新增户数: {{ sumsmodel.f_add_count }}
|
|
170
|
+
</td>
|
|
171
|
+
<td
|
|
172
|
+
style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
173
|
+
期末户数: {{ sumsmodel.f_end_count }}
|
|
174
|
+
</td>
|
|
175
|
+
</tr>
|
|
176
|
+
</table>
|
|
177
|
+
</div>
|
|
178
|
+
</div>
|
|
179
|
+
</div>
|
|
180
|
+
</template>
|
|
181
|
+
<script>
|
|
182
|
+
import {PagedList, HttpResetClass} from 'vue-client'
|
|
183
|
+
import defaultPrint from '../config/DefaultPrint'
|
|
184
|
+
import exportConfig from '../config/exportConfig'
|
|
185
|
+
|
|
186
|
+
let readySomething = async function (self) {
|
|
187
|
+
self.$refs.paged.$refs.cri.model.startDate = self.$login.toStandardDateString()
|
|
188
|
+
self.$refs.paged.$refs.cri.model.endDate = self.$login.toStandardDateString()
|
|
189
|
+
self.getAreaList()
|
|
190
|
+
}
|
|
191
|
+
export default {
|
|
192
|
+
title: '单位用气售气',
|
|
193
|
+
data() {
|
|
194
|
+
return {
|
|
195
|
+
condition: '',
|
|
196
|
+
condition2: '',
|
|
197
|
+
orgConditionStr: '',
|
|
198
|
+
criteriaShow: false,
|
|
199
|
+
other: [],
|
|
200
|
+
footer: [],
|
|
201
|
+
model: new PagedList('rs/sql/manage_wallHangingFurnaceUserQuery', 20, {
|
|
202
|
+
startDate: 'this.model.startDate',
|
|
203
|
+
endDate: 'this.model.endDate',}),
|
|
204
|
+
gasproperties: [],
|
|
205
|
+
show: false,
|
|
206
|
+
rowdata: {},
|
|
207
|
+
areaList: [],
|
|
208
|
+
modelval: [],
|
|
209
|
+
startDate: '',
|
|
210
|
+
endDate: '',
|
|
211
|
+
inputtouPerson: [],
|
|
212
|
+
printshow: false,
|
|
213
|
+
all: false,
|
|
214
|
+
fields: {},
|
|
215
|
+
thead: '',
|
|
216
|
+
tfoot: '',
|
|
217
|
+
defaultfield: [],
|
|
218
|
+
sumsmodel: {
|
|
219
|
+
f_start_count: 0 ,
|
|
220
|
+
f_add_count: 0 ,
|
|
221
|
+
f_end_count: 0 ,
|
|
222
|
+
},
|
|
223
|
+
sumExport: {'f_start_count': '期初户数', 'f_add_count': '新增户数', 'f_end_count': '期末户数'},
|
|
224
|
+
initres: {
|
|
225
|
+
org: [this.$login.f.orgid],
|
|
226
|
+
dep:[],
|
|
227
|
+
user:[]
|
|
228
|
+
},
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
ready() {
|
|
232
|
+
readySomething(this).then(() => {
|
|
233
|
+
this.$emit('ready')
|
|
234
|
+
}).catch((error) => {
|
|
235
|
+
this.$emit('error', error)
|
|
236
|
+
})
|
|
237
|
+
},
|
|
238
|
+
methods: {
|
|
239
|
+
async getSumsModel () {
|
|
240
|
+
let http = new HttpResetClass()
|
|
241
|
+
let data = {
|
|
242
|
+
endDate: this.$refs.paged.$refs.cri.model.endDate,
|
|
243
|
+
condition: this.condition2
|
|
244
|
+
}
|
|
245
|
+
let res = await http.load('POST', 'rs/logic/manage_getEndUserCount', {data: data})
|
|
246
|
+
this.sumsmodel.f_end_count = res.data.num
|
|
247
|
+
this.sumsmodel.f_add_count = this.$refs.paged.$refs.grid.model.count
|
|
248
|
+
this.sumsmodel.f_start_count = parseInt(res.data.num) - parseInt(this.$refs.paged.$refs.grid.model.count)
|
|
249
|
+
},
|
|
250
|
+
getAreaList (searchText) {
|
|
251
|
+
let condition = ' 1 = 1 '
|
|
252
|
+
if (searchText) {
|
|
253
|
+
condition = ` f_residential_area like '%${searchText}%' `
|
|
254
|
+
}
|
|
255
|
+
let HttpReset = new HttpResetClass()
|
|
256
|
+
HttpReset.load('POST', 'rs/sql/saleSingleTable?pageNo=1&pageSize=100', {
|
|
257
|
+
data: {
|
|
258
|
+
items: 'f_residential_area, id',
|
|
259
|
+
tablename: 't_area',
|
|
260
|
+
orderitem: 'id desc',
|
|
261
|
+
condition: condition
|
|
262
|
+
}
|
|
263
|
+
}, {resolveMsg: null, rejectMsg: '获取小区信息失败!'}).then((req) => {
|
|
264
|
+
let redata = []
|
|
265
|
+
req.data.forEach((row, n) => {
|
|
266
|
+
redata[n] = {
|
|
267
|
+
label: row.f_residential_area,
|
|
268
|
+
value: row.id
|
|
269
|
+
}
|
|
270
|
+
})
|
|
271
|
+
this.areaList = [{label: '全部', value: ''}, ...redata]
|
|
272
|
+
})
|
|
273
|
+
},
|
|
274
|
+
clear() {
|
|
275
|
+
//清空部门和人员
|
|
276
|
+
this.$refs.paged.$refs.cri.$refs.sel.$children[1].selectres = []
|
|
277
|
+
//部门和人员变为全选
|
|
278
|
+
this.$refs.paged.$refs.cri.$refs.sel.$children[1].$children[0].isSelectAll = false
|
|
279
|
+
this.$refs.paged.$refs.cri.$refs.sel.$children[2].$children[0].isSelectAll = false
|
|
280
|
+
Object.keys(this.$refs.paged.$refs.cri.model).forEach((key) => {
|
|
281
|
+
this.$refs.paged.$refs.cri.model[key] = []
|
|
282
|
+
})
|
|
283
|
+
},
|
|
284
|
+
hidden() {
|
|
285
|
+
this.criteriaShow = !this.criteriaShow
|
|
286
|
+
},
|
|
287
|
+
getotherfooter() {
|
|
288
|
+
this.other = []
|
|
289
|
+
this.footer = []
|
|
290
|
+
let exportdata = this.getCondition
|
|
291
|
+
let otherInData = []
|
|
292
|
+
otherInData.push(`导出时间: ${this.$login.toStandardTimeString()}`)
|
|
293
|
+
let footerData = [], exportfield = this.sumExport
|
|
294
|
+
footerData.push('合计')
|
|
295
|
+
let self = this
|
|
296
|
+
for (var field in self.sumsmodel) {
|
|
297
|
+
footerData.push(`${exportfield[field]}合计:${self.sumsmodel[field]}`)
|
|
298
|
+
}
|
|
299
|
+
this.footer.push(footerData)
|
|
300
|
+
this.other.push(otherInData)
|
|
301
|
+
},
|
|
302
|
+
search() {
|
|
303
|
+
this.$refs.paged.$refs.cri.search()
|
|
304
|
+
},
|
|
305
|
+
appendCondition(data) {
|
|
306
|
+
console.log('data=====>', data)
|
|
307
|
+
let stringValue = ''
|
|
308
|
+
for (var i = 0; i < data.length; i++) {
|
|
309
|
+
if (data[i]) {
|
|
310
|
+
if (i === data.length - 1) {
|
|
311
|
+
stringValue = stringValue + "'" + data[i] + "'"
|
|
312
|
+
} else {
|
|
313
|
+
stringValue = stringValue + "'" + data[i] + "',"
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
return stringValue
|
|
318
|
+
},
|
|
319
|
+
async selfSearch(args) {
|
|
320
|
+
this.condition2 = args.condition + ' and f_orgid = ' + this.$login.f.orgid
|
|
321
|
+
if (!this.orgConditionStr) {
|
|
322
|
+
args.condition = `${args.condition}` + ' and f_orgid = ' + this.$login.f.orgid
|
|
323
|
+
} else {
|
|
324
|
+
args.condition = `${args.condition}` + this.orgConditionStr
|
|
325
|
+
}
|
|
326
|
+
this.condition = args.condition
|
|
327
|
+
console.log("查看条件", this.condition)
|
|
328
|
+
await this.model.search(args.condition, args.model)
|
|
329
|
+
await this.getSumsModel()
|
|
330
|
+
},
|
|
331
|
+
getRes(obj) {
|
|
332
|
+
this.orgConditionStr = obj
|
|
333
|
+
},
|
|
334
|
+
stamp() {
|
|
335
|
+
this.all = false
|
|
336
|
+
//默认选择要打印的列
|
|
337
|
+
this.modelval = defaultPrint.config
|
|
338
|
+
this.fields = this.getfield
|
|
339
|
+
console.log('所有打印字段', this.fields)
|
|
340
|
+
this.printshow = true
|
|
341
|
+
this.put()
|
|
342
|
+
},
|
|
343
|
+
put() {
|
|
344
|
+
// 对Modelval进行排序
|
|
345
|
+
this.sortModelval()
|
|
346
|
+
this.thead = `<tr><th colspan=${this.modelval.length}>用户查询</th></tr><tr>`
|
|
347
|
+
for (let key of this.modelval) {
|
|
348
|
+
this.thead += '<th>' + this.fields[key] + '</th>'
|
|
349
|
+
}
|
|
350
|
+
this.thead += '</tr>'
|
|
351
|
+
},
|
|
352
|
+
print() {
|
|
353
|
+
this.$refs.print.PrintAsFile()
|
|
354
|
+
this.printshow = false
|
|
355
|
+
},
|
|
356
|
+
dealmsg(val) {
|
|
357
|
+
console.log('---------------dealmsg')
|
|
358
|
+
this.rowdata = val
|
|
359
|
+
this.show = true
|
|
360
|
+
val.model = this.model.model
|
|
361
|
+
this.$dispatch('deal-msg', val)
|
|
362
|
+
},
|
|
363
|
+
close() {
|
|
364
|
+
this.printshow = false
|
|
365
|
+
this.all = false
|
|
366
|
+
},
|
|
367
|
+
// 对选择的列进行排序
|
|
368
|
+
sortModelval() {
|
|
369
|
+
let sortModel = []
|
|
370
|
+
Object.keys(this.fields).forEach((key) => {
|
|
371
|
+
if (this.modelval.includes(key)) {
|
|
372
|
+
sortModel.push(key)
|
|
373
|
+
}
|
|
374
|
+
})
|
|
375
|
+
this.modelval = sortModel
|
|
376
|
+
console.log('选择的打印的字段', this.modelval)
|
|
377
|
+
}
|
|
378
|
+
},
|
|
379
|
+
watch: {
|
|
380
|
+
'all'(val) {
|
|
381
|
+
if (val) {
|
|
382
|
+
this.modelval = this.bodyData
|
|
383
|
+
} else {
|
|
384
|
+
this.modelval = defaultPrint.config
|
|
385
|
+
this.put()
|
|
386
|
+
}
|
|
387
|
+
},
|
|
388
|
+
sumsmodel: {
|
|
389
|
+
handler: function (val) {
|
|
390
|
+
this.getotherfooter()
|
|
391
|
+
},
|
|
392
|
+
deep: true
|
|
393
|
+
},
|
|
394
|
+
'modelval.length'() {
|
|
395
|
+
this.put()
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
computed: {
|
|
399
|
+
getCondition() {
|
|
400
|
+
return {
|
|
401
|
+
condition: this.condition,
|
|
402
|
+
startDate: this.$refs.paged.$refs.cri.model.startDate,
|
|
403
|
+
endDate: this.$refs.paged.$refs.cri.model.endDate
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
getfield() {
|
|
407
|
+
return exportConfig.wallHangingFurnaceUserConfig
|
|
408
|
+
},
|
|
409
|
+
metertypes() {
|
|
410
|
+
return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('气表类型')]
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
</script>
|
|
415
|
+
|
|
@@ -867,6 +867,19 @@ monthGasConfig: {
|
|
|
867
867
|
'f_pregas': '期间售气量',
|
|
868
868
|
'f_collection': '期间售气金额',
|
|
869
869
|
'f_table_num': '表具数量'
|
|
870
|
+
},
|
|
871
|
+
wallHangingFurnaceUserConfig: {
|
|
872
|
+
'f_userinfo_code': '用户编号',
|
|
873
|
+
'f_user_name': '用户名称',
|
|
874
|
+
'f_user_phone': '联系电话',
|
|
875
|
+
'f_residential_area': '所在小区',
|
|
876
|
+
'f_address': '详细地址',
|
|
877
|
+
'f_collection': '累购金额',
|
|
878
|
+
'f_meter_base': '已用量',
|
|
879
|
+
'f_old_price_type': '原气价类型',
|
|
880
|
+
'f_gasproperties': '现气价类型',
|
|
881
|
+
'f_operate_date': '气价变更时间',
|
|
882
|
+
'f_meter_type': '表具类型'
|
|
870
883
|
}
|
|
871
884
|
}
|
|
872
885
|
|
|
@@ -76,4 +76,6 @@ export default function () {
|
|
|
76
76
|
Vue.component('changeuser-query', (resolve) => { require(['./filesquery/ChangeUserQuery'], resolve) })
|
|
77
77
|
// 新的人员查询
|
|
78
78
|
Vue.component('res-select-group', (resolve) => { require(['./ResSelectGroupNew'], resolve) })
|
|
79
|
+
// 壁挂炉用户查询
|
|
80
|
+
Vue.component('manage-wall-hanging-furnace-user-query', (resolve) => { require(['./businessquery/WallHangingFurnaceUserQuery'], resolve) })
|
|
79
81
|
}
|
|
@@ -89,8 +89,8 @@
|
|
|
89
89
|
<v-select :value.sync="model.f_meter_brand"
|
|
90
90
|
v-model="model.f_meter_brand"
|
|
91
91
|
:options="$parent.$parent.meterbrands"
|
|
92
|
-
condition="ss.f_meter_brand
|
|
93
|
-
|
|
92
|
+
condition="ss.f_meter_brand in {}"
|
|
93
|
+
multiple></v-select>
|
|
94
94
|
</div>
|
|
95
95
|
<div class="col-sm-2 form-group">
|
|
96
96
|
<label class="font_normal_body">是否换表</label>
|
|
@@ -455,8 +455,8 @@
|
|
|
455
455
|
</template>
|
|
456
456
|
<script>
|
|
457
457
|
import {PagedList} from 'vue-client'
|
|
458
|
-
import defaultPrint from '
|
|
459
|
-
import exportConfig from '
|
|
458
|
+
import defaultPrint from './config/DefaultPrint'
|
|
459
|
+
import exportConfig from './config/exportConfig'
|
|
460
460
|
let readySomething = async function (self) {
|
|
461
461
|
self.$refs.paged.$refs.cri.model.startDate = self.data ? self.data.startDate : self.$login.toStandardDateString() + ' 00:00:00'
|
|
462
462
|
self.$refs.paged.$refs.cri.model.endDate = self.data ? self.data.endDate : self.$login.toStandardDateString() + ' 23:59:59'
|