manage-client 3.3.190 → 3.3.192-1
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/CancellationQuery.vue +4 -0
- package/src/components/sale/businessquery/ChangeMeterQuery.vue +4 -0
- package/src/components/sale/businessquery/DisableQuery.vue +4 -0
- package/src/components/sale/businessquery/EnableQuery.vue +4 -0
- package/src/components/sale/businessquery/FillCardQuery.vue +4 -0
- package/src/components/sale/businessquery/FillGasQuery.vue +4 -0
- package/src/components/webmeter/newwebmeter/WebhandMonthGas.vue +5 -8
package/package.json
CHANGED
|
@@ -293,6 +293,10 @@
|
|
|
293
293
|
}
|
|
294
294
|
this.footer.push(footerData);
|
|
295
295
|
this.other.push(otherInData);
|
|
296
|
+
let date = []
|
|
297
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
298
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
299
|
+
this.other.push(date)
|
|
296
300
|
},
|
|
297
301
|
search(){
|
|
298
302
|
this.$refs.paged.$refs.cri.search()
|
|
@@ -533,6 +533,10 @@
|
|
|
533
533
|
}
|
|
534
534
|
this.footer.push(footerData);
|
|
535
535
|
this.other.push(otherInData);
|
|
536
|
+
let date = []
|
|
537
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
538
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
539
|
+
this.other.push(date)
|
|
536
540
|
},
|
|
537
541
|
async initParams() {
|
|
538
542
|
// 初始化气表品牌
|
|
@@ -372,6 +372,10 @@
|
|
|
372
372
|
}
|
|
373
373
|
this.footer.push(footerData);
|
|
374
374
|
this.other.push(otherInData);
|
|
375
|
+
let date = []
|
|
376
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
377
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
378
|
+
this.other.push(date)
|
|
375
379
|
},
|
|
376
380
|
search(){
|
|
377
381
|
this.$refs.paged.$refs.cri.search()
|
|
@@ -326,6 +326,10 @@
|
|
|
326
326
|
}
|
|
327
327
|
this.footer.push(footerData);
|
|
328
328
|
this.other.push(otherInData);
|
|
329
|
+
let date = []
|
|
330
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
331
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
332
|
+
this.other.push(date)
|
|
329
333
|
},
|
|
330
334
|
search() {
|
|
331
335
|
this.$refs.paged.$refs.cri.search()
|
|
@@ -383,6 +383,10 @@
|
|
|
383
383
|
}
|
|
384
384
|
this.footer.push(footerData);
|
|
385
385
|
this.other.push(otherInData);
|
|
386
|
+
let date = []
|
|
387
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
388
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
389
|
+
this.other.push(date)
|
|
386
390
|
},
|
|
387
391
|
search(){
|
|
388
392
|
this.$refs.paged.$refs.cri.search()
|
|
@@ -396,6 +396,10 @@
|
|
|
396
396
|
}
|
|
397
397
|
this.footer.push(footerData);
|
|
398
398
|
this.other.push(otherInData);
|
|
399
|
+
let date = []
|
|
400
|
+
date.push(`起始时间:${this.$refs.paged.$refs.cri.model.startDate}`)
|
|
401
|
+
date.push(`终止时间:${this.$refs.paged.$refs.cri.model.endDate}`)
|
|
402
|
+
this.other.push(date)
|
|
399
403
|
},
|
|
400
404
|
sort (field, rule) {
|
|
401
405
|
// 将所有排序方式设为不排序,实现相互排斥
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
32
32
|
<export-excel :data="$parent.$parent.getCondition" :footer="$parent.$parent.footer"
|
|
33
33
|
:field="$parent.$parent.getfield" :header="$parent.$parent.other"
|
|
34
|
-
sqlurl="
|
|
34
|
+
sqlurl="api/af-revenue/logic/openapi/exportfile" sql-name="GetWebhandMonthGas" template-name='物联用户月度结算查询导出'
|
|
35
35
|
:choose-col="true"></export-excel>
|
|
36
36
|
<print-data :sum-field="$parent.$parent.getfield" :model="$parent.model" :field="$parent.$parent.getfield"
|
|
37
37
|
:defaultfield="$parent.$parent.defaultfield" print-name="物联用户月度结算查询打印"
|
|
@@ -310,7 +310,7 @@ let readySomething = async function (self) {
|
|
|
310
310
|
self.defaultfield = [...self.defaultfield, ...self.config.defaultPrint]
|
|
311
311
|
await self.$MagLoadParams.loadParam()
|
|
312
312
|
await self.initParams()
|
|
313
|
-
await self.$getConfig(self, 'WebHandplanMonthQuery')
|
|
313
|
+
// await self.$getConfig(self, 'WebHandplanMonthQuery')
|
|
314
314
|
self.sumsmodel = self.$refs.paged.$refs.grid.model.sums
|
|
315
315
|
}
|
|
316
316
|
export default {
|
|
@@ -322,11 +322,9 @@ export default {
|
|
|
322
322
|
other:[],
|
|
323
323
|
footer:[],
|
|
324
324
|
data: {},
|
|
325
|
-
orderitem:'f_userinfo_code desc',
|
|
326
325
|
model: new PagedList('api/af-revenue/sql/GetWebhandMonthGas', 20, {
|
|
327
326
|
startDate: 'this.model.handStartDate',
|
|
328
|
-
endDate: 'this.model.handEndDate'
|
|
329
|
-
orderitem: 'f_userinfo_code desc'
|
|
327
|
+
endDate: 'this.model.handEndDate'
|
|
330
328
|
}, {
|
|
331
329
|
f_oughtamount: 0,
|
|
332
330
|
f_oughtfee: 0
|
|
@@ -639,7 +637,7 @@ export default {
|
|
|
639
637
|
put() {
|
|
640
638
|
// 对Modelval进行排序
|
|
641
639
|
this.sortModelval()
|
|
642
|
-
this.thead = `<tr><th colspan=${this.modelval.length}
|
|
640
|
+
this.thead = `<tr><th colspan=${this.modelval.length}>物联用户月度结算查询</th></tr><tr>`
|
|
643
641
|
for (let key of this.modelval) {
|
|
644
642
|
this.thead += '<th>' + this.fields[key] + '</th>'
|
|
645
643
|
}
|
|
@@ -741,8 +739,7 @@ export default {
|
|
|
741
739
|
return {
|
|
742
740
|
startDate: this.$refs.paged.$refs.cri.model.startDate,
|
|
743
741
|
endDate: this.$refs.paged.$refs.cri.model.endDate,
|
|
744
|
-
condition: `${this.$refs.paged.$refs.cri.condition}` + this.orgcondition
|
|
745
|
-
orderitem: this.orderitem ? `${this.orderitem}` : " f_userinfo_code desc"
|
|
742
|
+
condition: `${this.$refs.paged.$refs.cri.condition}` + this.orgcondition
|
|
746
743
|
}
|
|
747
744
|
},
|
|
748
745
|
getfield() {
|