manage-client 3.3.191 → 3.3.192
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
CHANGED
|
@@ -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() {
|