manage-client 4.1.92 → 4.1.94-whls
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/DataGrid.vue +483 -0
- package/src/filiale/bayan/OtherChargeQuery.vue +2 -2
- package/src/filiale/wuhai/UserGasList.vue +24 -140
- package/src/filiale/yangchun/NewGasStatistics.vue +4 -0
- package/.gradle/7.4/checksums/checksums.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.4/fileChanges/last-build.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.4/gc.properties +0 -0
- package/.gradle/8.5/checksums/checksums.lock +0 -0
- package/.gradle/8.5/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/8.5/dependencies-accessors/gc.properties +0 -0
- package/.gradle/8.5/executionHistory/executionHistory.bin +0 -0
- package/.gradle/8.5/executionHistory/executionHistory.lock +0 -0
- package/.gradle/8.5/fileChanges/last-build.bin +0 -0
- package/.gradle/8.5/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.5/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.5/gc.properties +0 -0
package/package.json
CHANGED
|
@@ -0,0 +1,483 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div @scroll="scroll()" style="overflow:auto;" id="listrefeshx" v-el:grid>
|
|
3
|
+
<table replace='table' class="{{classname}}" v-if="!optional">
|
|
4
|
+
<thead a-partial='head' v-for='h in 1' class="text-left" @dblclick.stop="headDblclickGo($event)" v-el:the>
|
|
5
|
+
</thead>
|
|
6
|
+
<tbody>
|
|
7
|
+
<tr
|
|
8
|
+
:id="'vc-datagrid-'+attach+'-'+$index"
|
|
9
|
+
v-for='row in model.rows || model.children || model.data'
|
|
10
|
+
v-bind:class="{ 'success': isSelected(row)&&!customize,'customizestyle':isSelected(row)&&customize }"
|
|
11
|
+
@click="select(row)" @dblclick.stop="dblclickGo(row, $index)"
|
|
12
|
+
a-partial='body' track-by="$index">
|
|
13
|
+
</tr>
|
|
14
|
+
</tbody>
|
|
15
|
+
<tr a-partial='foot' v-for='f in 1'></tr>
|
|
16
|
+
</table>
|
|
17
|
+
<!-- 自带选择框的table -->
|
|
18
|
+
<table replace='table' class="{{classname}}" v-if="optional">
|
|
19
|
+
<thead v-for='h in 1' class="text-left" @dblclick.stop="headDblclickGo($event)">
|
|
20
|
+
<tr a-partial='head'>
|
|
21
|
+
<th style="text-align:center">
|
|
22
|
+
<input type="checkbox" v-model="checkAll[model.pageIndex-1]" @change="selectAll()" @click.stop/>
|
|
23
|
+
</th>
|
|
24
|
+
</tr>
|
|
25
|
+
</thead>
|
|
26
|
+
<tbody>
|
|
27
|
+
<tr
|
|
28
|
+
:id="'vc-datagrid-'+attach+'-'+$index"
|
|
29
|
+
v-for='row in model.rows || model.children || model.data'
|
|
30
|
+
v-bind:class="{ 'success': isSelected(row)&&!customize,'customizestyle':isSelected(row)&&customize }"
|
|
31
|
+
@click="select(row)" @dblclick.stop="dblclickGo(row, $index)"
|
|
32
|
+
a-partial='body' track-by="$index">
|
|
33
|
+
<td style="text-align: center;">
|
|
34
|
+
<input @click.stop :id="'bodycheckbox'+model.pageIndex" type='checkbox' @change="selectOne($event,row,$index)" :checked="ischecked(model.pageIndex-1,$index)"/>
|
|
35
|
+
</td>
|
|
36
|
+
</tr>
|
|
37
|
+
</tbody>
|
|
38
|
+
<tr a-partial='foot' v-for='f in 1'></tr>
|
|
39
|
+
</table>
|
|
40
|
+
|
|
41
|
+
<modal :show.sync="show" backdrop="false">
|
|
42
|
+
<header slot="modal-header" class="modal-header text-center">
|
|
43
|
+
<h4 class="modal-title">显示列选择</h4>
|
|
44
|
+
<input type="checkbox" :id="'theadNodeAll' + dateTime" v-model="all">
|
|
45
|
+
<label :for="'theadNodeAll' + dateTime" class="font-size">全选</label>
|
|
46
|
+
</header>
|
|
47
|
+
<article slot="modal-body">
|
|
48
|
+
<div class="auto col-sm-11 col-md-offset-1" style="margin-top: 10px;">
|
|
49
|
+
<div class="col-sm-3" v-for="f in theadval">
|
|
50
|
+
<input type="checkbox" :id="'water-owe-details-' + dateTime + $index" v-model="modelval" :value="f.index">
|
|
51
|
+
<label :for="'water-owe-details-'+ dateTime + $index" class="font-size">{{f.innerText}}</label>
|
|
52
|
+
</div>
|
|
53
|
+
</div>
|
|
54
|
+
</article>
|
|
55
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
56
|
+
<center>
|
|
57
|
+
<button type="button" class="btn btn-default" @click='show = false'>取消</button>
|
|
58
|
+
<button type="button" class="btn btn-success" @click='displayColumnSettings()'>确定</button>
|
|
59
|
+
</center>
|
|
60
|
+
</footer>
|
|
61
|
+
</modal>
|
|
62
|
+
</div>
|
|
63
|
+
</template>
|
|
64
|
+
|
|
65
|
+
<script>
|
|
66
|
+
// Selector mixin 可能在外部库中,如果不存在则创建一个空的
|
|
67
|
+
let Selector = {}
|
|
68
|
+
try {
|
|
69
|
+
Selector = require('../mixins/Selector').default || require('../mixins/Selector')
|
|
70
|
+
} catch (e) {
|
|
71
|
+
// 如果找不到 Selector,创建一个空的 mixin
|
|
72
|
+
Selector = {
|
|
73
|
+
data() {
|
|
74
|
+
return {
|
|
75
|
+
selectStore: {
|
|
76
|
+
selected: null
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
methods: {
|
|
81
|
+
isSelected(row) {
|
|
82
|
+
return this.selectStore.selected === row
|
|
83
|
+
},
|
|
84
|
+
select(row) {
|
|
85
|
+
this.selectStore.selected = row
|
|
86
|
+
this.$dispatch('select', row)
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export default {
|
|
93
|
+
props: {
|
|
94
|
+
classname: {
|
|
95
|
+
type: String,
|
|
96
|
+
default: 'table table-bordered table-striped table-hover'
|
|
97
|
+
},
|
|
98
|
+
model: {},
|
|
99
|
+
thumbWidth: {
|
|
100
|
+
type: Number,
|
|
101
|
+
default: 8
|
|
102
|
+
},
|
|
103
|
+
// 为测试添加,需要为元素指定id
|
|
104
|
+
attach: {
|
|
105
|
+
type: String,
|
|
106
|
+
default: 'name'
|
|
107
|
+
},
|
|
108
|
+
customize: {
|
|
109
|
+
type: Boolean,
|
|
110
|
+
default: false
|
|
111
|
+
},
|
|
112
|
+
// 是否添加勾选框,开启后别加tr标签, 调用getRowData()获取选中数据
|
|
113
|
+
// 建议在重新查询时调用selectInit方法, 重置选中数据, 防止出现bug
|
|
114
|
+
optional: {
|
|
115
|
+
type: Boolean,
|
|
116
|
+
default: false
|
|
117
|
+
},
|
|
118
|
+
//查询后是否滚回第一行
|
|
119
|
+
isScrollto: {
|
|
120
|
+
type: Boolean,
|
|
121
|
+
default: true
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
data () {
|
|
125
|
+
return {
|
|
126
|
+
dateTime: new Date().getTime(),
|
|
127
|
+
theadNode: null,
|
|
128
|
+
tbodyTrNode: null,
|
|
129
|
+
theadval: null,
|
|
130
|
+
allTheadRows: null, // 保存所有行的 th,用于显示/隐藏时同时处理
|
|
131
|
+
modelval: [],
|
|
132
|
+
all: false,
|
|
133
|
+
show: false,
|
|
134
|
+
// 选择的用户
|
|
135
|
+
rowsdata: [],
|
|
136
|
+
// 控制全选
|
|
137
|
+
checkAll : [],
|
|
138
|
+
// 控制单选
|
|
139
|
+
radio: []
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
ready () {
|
|
143
|
+
// 做兼容处理
|
|
144
|
+
if (window.NodeList && !NodeList.prototype.forEach) {
|
|
145
|
+
NodeList.prototype.forEach = function (callback, thisArg) {
|
|
146
|
+
thisArg = thisArg || window
|
|
147
|
+
for (var i = 0; i < this.length; i++) {
|
|
148
|
+
callback.call(thisArg, this[i], i, this)
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
// var HostApp
|
|
153
|
+
try {
|
|
154
|
+
HostApp
|
|
155
|
+
// 如果为移动端设备,将.span的高度设置为auto
|
|
156
|
+
let spans = document.getElementsByClassName('span')
|
|
157
|
+
for (var i = 0; i < spans.length; i++) {
|
|
158
|
+
spans[i].style.height = 'auto'
|
|
159
|
+
}
|
|
160
|
+
} catch (e) {
|
|
161
|
+
}
|
|
162
|
+
let el = this.$els.grid
|
|
163
|
+
let translate = 'translate(' + (el.scrollLeft - (el.scrollWidth - el.offsetWidth) - this.thumbWidth) + 'px,0)'
|
|
164
|
+
// 新加载时,平移右侧固定列表体
|
|
165
|
+
el.querySelectorAll('table tbody .stickToRight').forEach((element) => {
|
|
166
|
+
element.style.transform = translate
|
|
167
|
+
})
|
|
168
|
+
|
|
169
|
+
translate = 'translate(' + (el.scrollLeft - (el.scrollWidth - el.offsetWidth) - this.thumbWidth) + 'px,' + el.scrollTop + 'px)'
|
|
170
|
+
// 新加载时,平移右侧固定表头
|
|
171
|
+
el.querySelectorAll('table thead th.stickToRight').forEach((element) => {
|
|
172
|
+
element.style.transform = translate
|
|
173
|
+
})
|
|
174
|
+
},
|
|
175
|
+
methods: {
|
|
176
|
+
InitializedData () {
|
|
177
|
+
this.$nextTick(() => {
|
|
178
|
+
const theadElement = this.$el.querySelector('thead')
|
|
179
|
+
// 只获取最后一行的 th 标签(对应实际 td 的列)
|
|
180
|
+
const trs = theadElement.getElementsByTagName('tr')
|
|
181
|
+
const lastTr = trs[trs.length - 1]
|
|
182
|
+
this.theadNode = lastTr ? lastTr.getElementsByTagName('th') : theadElement.getElementsByTagName('th')
|
|
183
|
+
this.tbodyTrNode = theadElement.nextElementSibling.getElementsByTagName('tr')
|
|
184
|
+
})
|
|
185
|
+
},
|
|
186
|
+
scroll () {
|
|
187
|
+
let el = this.$els.grid
|
|
188
|
+
let translate = 'translate(0,' + el.scrollTop + 'px)'
|
|
189
|
+
// 滚动时,平移除右侧除右侧固定以外的表头
|
|
190
|
+
el.querySelectorAll('table thead th:not(.stickToRight)').forEach((element) => {
|
|
191
|
+
element.style.transform = translate
|
|
192
|
+
})
|
|
193
|
+
// 滚动时,平移除右侧除左侧侧固定以外的表头
|
|
194
|
+
el.querySelectorAll('table thead th:not(.stickToLeft)').forEach((element) => {
|
|
195
|
+
element.style.transform = translate
|
|
196
|
+
})
|
|
197
|
+
|
|
198
|
+
// 滚动时,平移左侧固定的表体
|
|
199
|
+
translate = 'translate(' + el.scrollLeft + 'px,0)'
|
|
200
|
+
el.querySelectorAll('table tbody .stickToLeft').forEach((element) => {
|
|
201
|
+
element.style.transform = translate
|
|
202
|
+
})
|
|
203
|
+
// 滚动时,平移右侧固定的表体
|
|
204
|
+
translate = 'translate(' + (el.scrollLeft - (el.scrollWidth - el.offsetWidth) - this.thumbWidth) + 'px,0)'
|
|
205
|
+
el.querySelectorAll('table tbody .stickToRight').forEach((element) => {
|
|
206
|
+
element.style.transform = translate
|
|
207
|
+
})
|
|
208
|
+
// 滚动时,平移左侧固定的表头
|
|
209
|
+
translate = 'translate(' + el.scrollLeft + 'px,' + el.scrollTop + 'px)'
|
|
210
|
+
el.querySelectorAll('table thead th.stickToLeft').forEach((element) => {
|
|
211
|
+
element.style.transform = translate
|
|
212
|
+
})
|
|
213
|
+
// 滚动时,平移右侧固定的表头
|
|
214
|
+
translate = 'translate(' + (el.scrollLeft - (el.scrollWidth - el.offsetWidth) - this.thumbWidth) + 'px,' + el.scrollTop + 'px)'
|
|
215
|
+
el.querySelectorAll('table thead th.stickToRight').forEach((element) => {
|
|
216
|
+
element.style.transform = translate
|
|
217
|
+
})
|
|
218
|
+
|
|
219
|
+
},
|
|
220
|
+
dblclickGo (row, index) {
|
|
221
|
+
this.$dispatch('dblclick', row, index)
|
|
222
|
+
},
|
|
223
|
+
headDblclickGo (e) {
|
|
224
|
+
const theadElement = e.currentTarget
|
|
225
|
+
// 只获取最后一行的 th 标签(对应实际 td 的列)
|
|
226
|
+
const trs = theadElement.getElementsByTagName('tr')
|
|
227
|
+
const lastTr = trs[trs.length - 1]
|
|
228
|
+
this.theadNode = lastTr ? lastTr.getElementsByTagName('th') : theadElement.getElementsByTagName('th')
|
|
229
|
+
// 保存所有行的 th,用于显示/隐藏时同时处理
|
|
230
|
+
this.allTheadRows = []
|
|
231
|
+
for (let i = 0; i < trs.length; i++) {
|
|
232
|
+
this.allTheadRows.push(trs[i].getElementsByTagName('th'))
|
|
233
|
+
}
|
|
234
|
+
// 保存第一行 th 的【初始】原始 colspan,只在首次或列数变化时记录,
|
|
235
|
+
// 避免后面我们动态修改 colspan 之后再被当成“原始值”,导致分组错乱
|
|
236
|
+
if (this.allTheadRows.length > 0) {
|
|
237
|
+
const firstRowThs = this.allTheadRows[0]
|
|
238
|
+
if (!this.originalColspans || this.originalColspans.length !== firstRowThs.length) {
|
|
239
|
+
this.originalColspans = []
|
|
240
|
+
for (let i = 0; i < firstRowThs.length; i++) {
|
|
241
|
+
const th = firstRowThs[i]
|
|
242
|
+
this.originalColspans.push(parseInt(th.getAttribute('colspan') || '1', 10))
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
this.tbodyTrNode = theadElement.nextElementSibling.getElementsByTagName('tr')
|
|
247
|
+
if (!this.tbodyTrNode.length) {
|
|
248
|
+
this.$showMessage('当前无数据, 请查询后再试')
|
|
249
|
+
return
|
|
250
|
+
}
|
|
251
|
+
if (!this.theadval) {
|
|
252
|
+
this.theadval = []
|
|
253
|
+
for (let i = 0; i < this.theadNode.length; i++) {
|
|
254
|
+
this.theadval.push({index: i, innerText: this.theadNode[i].innerText.replace(/[\n]/g, "").trim()})
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
// 初始化 modelval 为当前所有可见列的索引
|
|
258
|
+
this.modelval = []
|
|
259
|
+
for (let i = 0; i < this.theadNode.length; i++) {
|
|
260
|
+
if (this.theadNode[i].style.display !== 'none') {
|
|
261
|
+
this.modelval.push(i)
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
// 如果所有列都可见,设置全选为 true
|
|
265
|
+
this.all = this.modelval.length === this.theadNode.length
|
|
266
|
+
this.show = true
|
|
267
|
+
},
|
|
268
|
+
displayColumnSettings (watch) {
|
|
269
|
+
if (this.modelval.length <= 0) {
|
|
270
|
+
// 如果是从监听过来的, 不进行提示
|
|
271
|
+
if (!watch) this.$showMessage('请至少选择一列展示!')
|
|
272
|
+
return
|
|
273
|
+
}
|
|
274
|
+
if (!this.tbodyTrNode || !this.theadNode) return
|
|
275
|
+
|
|
276
|
+
// 将 modelval 中的索引转换为数字数组(因为 v-model 可能返回字符串)
|
|
277
|
+
const selectedIndices = this.modelval.map(v => parseInt(v, 10))
|
|
278
|
+
|
|
279
|
+
for (let tr of this.tbodyTrNode) {
|
|
280
|
+
let td = tr.getElementsByTagName('td')
|
|
281
|
+
for (let i = 0; i < this.theadNode.length; i++) {
|
|
282
|
+
// 检查 td[i] 是否存在,避免访问 undefined
|
|
283
|
+
if (i >= td.length) {
|
|
284
|
+
continue
|
|
285
|
+
}
|
|
286
|
+
// 使用索引来判断是否显示,而不是文本
|
|
287
|
+
const shouldShow = selectedIndices.includes(i)
|
|
288
|
+
|
|
289
|
+
// 显示/隐藏最后一行的 th(对应实际列)
|
|
290
|
+
if (this.theadNode[i]) {
|
|
291
|
+
this.theadNode[i].style.display = shouldShow ? '' : 'none'
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
// 显示/隐藏对应的 td
|
|
295
|
+
if (td[i]) {
|
|
296
|
+
td[i].style.display = shouldShow ? '' : 'none'
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
// 处理第一行的 th(根据子列的显示状态来决定是否隐藏)
|
|
302
|
+
if (this.allTheadRows && this.allTheadRows.length > 1) {
|
|
303
|
+
this.updateFirstRowThs()
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
this.show = false
|
|
307
|
+
},
|
|
308
|
+
// 更新第一行 th 的显示状态(根据子列的显示状态)
|
|
309
|
+
updateFirstRowThs () {
|
|
310
|
+
if (!this.allTheadRows || this.allTheadRows.length < 2 || !this.theadNode || !this.originalColspans) return
|
|
311
|
+
|
|
312
|
+
const firstRowThs = this.allTheadRows[0]
|
|
313
|
+
let currentColIndex = 0
|
|
314
|
+
|
|
315
|
+
for (let i = 0; i < firstRowThs.length; i++) {
|
|
316
|
+
const th = firstRowThs[i]
|
|
317
|
+
const originalColspan = this.originalColspans[i] || parseInt(th.getAttribute('colspan') || '1', 10)
|
|
318
|
+
|
|
319
|
+
// 统计当前分组下可见的子列数量
|
|
320
|
+
let visibleCount = 0
|
|
321
|
+
for (let j = 0; j < originalColspan && currentColIndex + j < this.theadNode.length; j++) {
|
|
322
|
+
const childTh = this.theadNode[currentColIndex + j]
|
|
323
|
+
if (childTh && childTh.style.display !== 'none') {
|
|
324
|
+
visibleCount++
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
// 没有任何可见子列,则隐藏这一组表头
|
|
329
|
+
if (visibleCount === 0) {
|
|
330
|
+
if (th) {
|
|
331
|
+
th.style.display = 'none'
|
|
332
|
+
// 保留原始的 colspan 记录,方便后续再次计算
|
|
333
|
+
th.setAttribute('colspan', originalColspan)
|
|
334
|
+
}
|
|
335
|
+
} else {
|
|
336
|
+
// 有可见子列,显示这一组表头,并将 colspan 设置为可见子列数,保证上下表头对齐
|
|
337
|
+
if (th) {
|
|
338
|
+
th.style.display = ''
|
|
339
|
+
th.setAttribute('colspan', visibleCount)
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
// 更新列索引(使用原始 colspan,因为我们需要按照原始结构遍历)
|
|
344
|
+
currentColIndex += originalColspan
|
|
345
|
+
}
|
|
346
|
+
},
|
|
347
|
+
// 多选框初始化
|
|
348
|
+
selectInit () {
|
|
349
|
+
this.rowsdata = []
|
|
350
|
+
this.checkAll = []
|
|
351
|
+
this.radio = []
|
|
352
|
+
},
|
|
353
|
+
// 返回选择数据(合并二维数组并去空)
|
|
354
|
+
getRowData () {
|
|
355
|
+
let data = []
|
|
356
|
+
// 合并
|
|
357
|
+
for (let array of this.rowsdata) {
|
|
358
|
+
data.push.apply(data, array)
|
|
359
|
+
}
|
|
360
|
+
// 去空
|
|
361
|
+
data = this.removeEmpty(data)
|
|
362
|
+
return data
|
|
363
|
+
},
|
|
364
|
+
removeEmpty (data) {
|
|
365
|
+
for (var i = 0; i < data.length; i++) {
|
|
366
|
+
if (data[i] == "" || typeof (data[i]) == "undefined") {
|
|
367
|
+
data.splice(i, 1);
|
|
368
|
+
i--;
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
return data;
|
|
372
|
+
},
|
|
373
|
+
selectAll () {
|
|
374
|
+
let index = this.model.pageIndex - 1
|
|
375
|
+
console.log('全选', this.checkAll[index])
|
|
376
|
+
if (!this.radio[index]) {
|
|
377
|
+
this.radio.$set(index, [])
|
|
378
|
+
}
|
|
379
|
+
if (this.checkAll[index]) {
|
|
380
|
+
// 数据
|
|
381
|
+
this.rowsdata[index] = Object.assign([], this.model.rows)
|
|
382
|
+
// 勾选
|
|
383
|
+
for (let i = 0; i < this.model.rows.length; i++) {
|
|
384
|
+
this.radio[index].$set(i, true)
|
|
385
|
+
}
|
|
386
|
+
} else {
|
|
387
|
+
// 数据
|
|
388
|
+
this.rowsdata[index] = []
|
|
389
|
+
// 不勾选
|
|
390
|
+
for (let i = 0; i < this.model.rows.length; i++) {
|
|
391
|
+
this.radio[index].$set(i, false)
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
selectOne (event, row, i) {
|
|
396
|
+
console.log('单选', event.target.checked)
|
|
397
|
+
let index = this.model.pageIndex - 1
|
|
398
|
+
if (!this.rowsdata[index]) {
|
|
399
|
+
this.rowsdata[index] = []
|
|
400
|
+
}
|
|
401
|
+
if (!this.radio[index]) {
|
|
402
|
+
this.radio.$set(index, [])
|
|
403
|
+
}
|
|
404
|
+
if (event.target.checked) {
|
|
405
|
+
// 数据
|
|
406
|
+
this.rowsdata[index][i] = row
|
|
407
|
+
// 勾选
|
|
408
|
+
this.radio[index].$set(i, true)
|
|
409
|
+
// 判断是否全部选中
|
|
410
|
+
var allState = true
|
|
411
|
+
if (this.model.rows.length != this.radio[index].length) {
|
|
412
|
+
allState = false
|
|
413
|
+
}
|
|
414
|
+
for (var state of this.radio[index]) {
|
|
415
|
+
if (!state) {
|
|
416
|
+
allState = false
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
if (allState) {
|
|
420
|
+
this.checkAll.$set(index, true)
|
|
421
|
+
} else {
|
|
422
|
+
this.checkAll.$set(index, false)
|
|
423
|
+
}
|
|
424
|
+
} else {
|
|
425
|
+
// 数据
|
|
426
|
+
this.rowsdata[index][i] = []
|
|
427
|
+
// 不勾选
|
|
428
|
+
this.radio[index].$set(i, false)
|
|
429
|
+
// 任意取消一个则全选状态设为false
|
|
430
|
+
this.checkAll.$set(index, false)
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
},
|
|
434
|
+
watch: {
|
|
435
|
+
'all' (val) {
|
|
436
|
+
this.modelval = []
|
|
437
|
+
if (val) {
|
|
438
|
+
for (let row of this.theadval) {
|
|
439
|
+
this.modelval.push(row.index)
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
},
|
|
443
|
+
'model.rows' () {
|
|
444
|
+
this.selectStore.selected = null
|
|
445
|
+
if (this.model.rows) {
|
|
446
|
+
this.displayColumnSettings('watch')
|
|
447
|
+
this.$dispatch('dataGrid', this.model.rows)
|
|
448
|
+
}
|
|
449
|
+
},
|
|
450
|
+
'model.pageIndex' () {
|
|
451
|
+
if(this.isScrollto){
|
|
452
|
+
this.$els.grid.scrollTo(0,0)
|
|
453
|
+
}
|
|
454
|
+
},
|
|
455
|
+
deep: true
|
|
456
|
+
},
|
|
457
|
+
computed: {
|
|
458
|
+
// 判断页面框选中
|
|
459
|
+
ischecked () {
|
|
460
|
+
return function (index, i) {
|
|
461
|
+
// console.log("计算属性")
|
|
462
|
+
if (!this.radio[index]) {
|
|
463
|
+
return false
|
|
464
|
+
}
|
|
465
|
+
return this.radio[index][i]
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
},
|
|
469
|
+
mixins: [Selector]
|
|
470
|
+
}
|
|
471
|
+
</script>
|
|
472
|
+
<style>
|
|
473
|
+
th.stickToLeft {
|
|
474
|
+
position: relative;
|
|
475
|
+
z-index: 1;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
th.stickToRight {
|
|
479
|
+
position: relative;
|
|
480
|
+
z-index: 1;
|
|
481
|
+
}
|
|
482
|
+
</style>
|
|
483
|
+
|
|
@@ -201,10 +201,10 @@
|
|
|
201
201
|
>
|
|
202
202
|
</div>
|
|
203
203
|
<div class="col-sm-2 form-group">
|
|
204
|
-
<label class="font_normal_body"
|
|
204
|
+
<label class="font_normal_body">小于等于</label>
|
|
205
205
|
<input style="width:60%" type="number" class="input_search"
|
|
206
206
|
v-model="model.f_money_end" placeholder='小于等于'
|
|
207
|
-
condition="f_money
|
|
207
|
+
condition="f_money <= {}"
|
|
208
208
|
@keyup.enter="search"
|
|
209
209
|
v-el:xq v-next-el='f_day' v-el:area
|
|
210
210
|
>
|
|
@@ -5,60 +5,17 @@
|
|
|
5
5
|
<criteria partial='criteria' @condition-changed='$parent.search' v-ref:cri>
|
|
6
6
|
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
7
7
|
<div class="row">
|
|
8
|
-
|
|
9
|
-
<div class="col-sm-2 form-group">
|
|
10
|
-
<label class="font_normal_body">客户编号</label>
|
|
11
|
-
<input @keyup.enter="search" style="width:60%" type="text" class="input_search"
|
|
12
|
-
v-model="model.f_userinfo_code" placeholder='客户编号'
|
|
13
|
-
condition="u.f_userinfo_code like '%{}%'" v-next-el='f_userinfo_code' v-el:meternumber
|
|
14
|
-
>
|
|
15
|
-
</div>
|
|
16
|
-
<div class="col-sm-2 form-group">
|
|
17
|
-
<label class="font_normal_body">客户名称</label>
|
|
18
|
-
<input @keyup.enter="search" style="width:60%" type="text" class="input_search"
|
|
19
|
-
v-model="model.f_username" placeholder='客户名称'
|
|
20
|
-
condition="u.f_user_name like '%{}%'" v-next-el='userid' v-el:username>
|
|
21
|
-
</div>
|
|
22
|
-
<div class="col-sm-2 form-group">
|
|
23
|
-
<label class="font_normal_body">客户地址</label>
|
|
24
|
-
<input @keyup.enter="search" style="width:60%" type="text" class="input_search"
|
|
25
|
-
v-model="model.f_address" placeholder='地址'
|
|
26
|
-
condition="a.f_address like '%{}%'" v-el:xq v-next-el='address' v-el:area
|
|
27
|
-
>
|
|
28
|
-
</div>
|
|
29
|
-
<div class="col-sm-2 form-group">
|
|
30
|
-
<label class="font_normal_body">表  号</label>
|
|
31
|
-
<input @keyup.enter="search" style="width:60%" type="text" class="input_search"
|
|
32
|
-
v-model="model.f_meternumber" placeholder='表钢号'
|
|
33
|
-
condition="uf.f_meternumber like '%{}%'" v-next-el='meternumber' v-el:meternumber
|
|
34
|
-
>
|
|
35
|
-
</div>
|
|
36
|
-
<div class="span" style="float:right;margin-top:10px">
|
|
37
|
-
<button class="button_search button_spacing" @click="search()">查询</button>
|
|
38
|
-
<button class="button_clear button_spacing" @click="$parent.$parent.clearmsg">清空</button>
|
|
39
|
-
<export-excel :data="$parent.$parent.getCondition" class="button_export button_spacing"
|
|
40
|
-
:field="$parent.$parent.getfield"
|
|
41
|
-
sqlurl="api/af-revenue/logic/openapi/exportfile" sql-name="webmeter_getNewHandChanceList" template-name='抄表分析'
|
|
42
|
-
:choose-col="true"></export-excel>
|
|
43
|
-
<button class="button_export button_spacing" @click="$parent.$parent.showEcharts()">显示图表</button>
|
|
44
|
-
<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>
|
|
45
|
-
</div>
|
|
46
|
-
</div>
|
|
47
|
-
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
48
8
|
<div class="col-sm-2 form-group">
|
|
49
9
|
<label class="font_normal_body">公  司</label>
|
|
50
10
|
<right-tree @re-res="$parent.$parent.getRes"
|
|
51
11
|
:initresid='$parent.$parent.orgid'></right-tree>
|
|
52
|
-
<!-- <label class="font_normal_body">组织机构</label>-->
|
|
53
|
-
<!-- <res-select :initresid="$parent.$parent.orgid"-->
|
|
54
|
-
<!-- style="width:60%"-->
|
|
55
|
-
<!-- @res-select="$parent.$parent.getRes"-->
|
|
56
|
-
<!-- restype='organization'>-->
|
|
57
|
-
<!-- </res-select>-->
|
|
12
|
+
<!-- <label class="font_normal_body">组织机构</label>-->
|
|
13
|
+
<!-- <res-select :initresid="$parent.$parent.orgid"-->
|
|
14
|
+
<!-- style="width:60%"-->
|
|
15
|
+
<!-- @res-select="$parent.$parent.getRes"-->
|
|
16
|
+
<!-- restype='organization'>-->
|
|
17
|
+
<!-- </res-select>-->
|
|
58
18
|
</div>
|
|
59
|
-
<res-select-group :show-component="$parent.$parent.resshow" :selectin="true" :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
60
|
-
|
|
61
|
-
<!-- <res-select-group :initres="$parent.$parent.initres" :show-component="['company']" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>-->
|
|
62
19
|
<div class="col-sm-2 form-group">
|
|
63
20
|
<label class="font_normal_body">用户类型</label>
|
|
64
21
|
<v-select style="width:60%" id="f_user_type"
|
|
@@ -71,17 +28,6 @@
|
|
|
71
28
|
close-on-select>
|
|
72
29
|
</v-select>
|
|
73
30
|
</div>
|
|
74
|
-
<div class="col-sm-2 form-group">
|
|
75
|
-
<label class="font_normal_body">用气性质</label>
|
|
76
|
-
<v-select style="width:60%" id="f_gasproperties"
|
|
77
|
-
v-model="model.f_gasproperties"
|
|
78
|
-
placeholder='用气性质'
|
|
79
|
-
:value.sync="model.f_gasproperties"
|
|
80
|
-
:options='$parent.$parent.gasproperties'
|
|
81
|
-
condition="uf.f_gasproperties = '{}'"
|
|
82
|
-
close-on-select>
|
|
83
|
-
</v-select>
|
|
84
|
-
</div>
|
|
85
31
|
<div class="col-sm-2 form-group">
|
|
86
32
|
<label class="font_normal_body">气表品牌</label>
|
|
87
33
|
<v-select
|
|
@@ -95,37 +41,19 @@
|
|
|
95
41
|
v-model="model.f_meter_brand">
|
|
96
42
|
</v-select>
|
|
97
43
|
</div>
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
<!-- </v-select>-->
|
|
109
|
-
<!-- </div>-->
|
|
110
|
-
<div class="col-sm-2 form-group" >
|
|
111
|
-
<label class="font_normal_body">气表型号</label>
|
|
112
|
-
<v-select
|
|
113
|
-
placeholder='气表型号'
|
|
114
|
-
:value.sync="model.f_meter_style"
|
|
115
|
-
v-model="model.f_meter_style"
|
|
116
|
-
:options='$parent.$parent.meterstyle[model.f_meter_brand]'
|
|
117
|
-
close-on-select
|
|
118
|
-
condition="gm.f_meter_style='{}'">
|
|
119
|
-
</v-select>
|
|
120
|
-
<!-- <v-select v-if="!$parent.$parent.styles"-->
|
|
121
|
-
<!-- placeholder='气表型号'-->
|
|
122
|
-
<!-- :value.sync="model.f_meter_style"-->
|
|
123
|
-
<!-- v-model="model.f_meter_style"-->
|
|
124
|
-
<!-- :options='$parent.$parent.Warningstyles'-->
|
|
125
|
-
<!-- close-on-select-->
|
|
126
|
-
<!-- condition="f_meter_style='{}'">-->
|
|
127
|
-
<!-- </v-select>-->
|
|
44
|
+
|
|
45
|
+
<div class="span" style="float:right;margin-top:10px">
|
|
46
|
+
<button class="button_search button_spacing" @click="search()">查询</button>
|
|
47
|
+
<button class="button_clear button_spacing" @click="$parent.$parent.clearmsg">清空</button>
|
|
48
|
+
<export-excel :data="$parent.$parent.getCondition" class="button_export button_spacing"
|
|
49
|
+
:field="$parent.$parent.getfield"
|
|
50
|
+
sqlurl="api/af-revenue/logic/openapi/exportfile" sql-name="webmeter_getNewHandChanceList" template-name='抄表分析'
|
|
51
|
+
:choose-col="true"></export-excel>
|
|
52
|
+
<button class="button_export button_spacing" @click="$parent.$parent.showEcharts()">显示图表</button>
|
|
53
|
+
<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>
|
|
128
54
|
</div>
|
|
55
|
+
</div>
|
|
56
|
+
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
129
57
|
<div class="col-sm-2 form-group">
|
|
130
58
|
<label class="font_normal_body" style="word-break:keep-all;">上报时间</label>
|
|
131
59
|
<datepicker style="width:60%" placeholder="起始时间"
|
|
@@ -142,48 +70,6 @@
|
|
|
142
70
|
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
143
71
|
></datepicker>
|
|
144
72
|
</div>
|
|
145
|
-
<div class="col-sm-2 form-group">
|
|
146
|
-
<label class="font_normal_body">气价类型</label>
|
|
147
|
-
<v-select :value.sync="model.pricetype" v-model="model.pricetype"
|
|
148
|
-
@change="$parent.$parent.pricetypechanged"
|
|
149
|
-
placeholder='气价类型' :options="$parent.$parent.pricetypes"
|
|
150
|
-
close-on-select v-ref:type>
|
|
151
|
-
</v-select>
|
|
152
|
-
</div>
|
|
153
|
-
<div class="col-sm-2 form-group">
|
|
154
|
-
<label class="font_normal_body">气价名称</label>
|
|
155
|
-
<v-select :value.sync="model.f_price_id"
|
|
156
|
-
v-model="model.f_price_id"
|
|
157
|
-
:multiple="true"
|
|
158
|
-
:options="$parent.$parent.getPricenames"
|
|
159
|
-
condition="uf.f_price_id in {}"
|
|
160
|
-
></v-select>
|
|
161
|
-
</div>
|
|
162
|
-
<!-- <div class="col-sm-2 form-group">-->
|
|
163
|
-
<!-- <label class="font_normal_body">壁 挂 炉</label>-->
|
|
164
|
-
<!-- <v-select id="f_meter_brand"-->
|
|
165
|
-
<!-- v-model="model.f_usetype"-->
|
|
166
|
-
<!-- placeholder='壁挂炉'-->
|
|
167
|
-
<!-- :value.sync="model.f_usetype"-->
|
|
168
|
-
<!-- :options='$parent.$parent.usetypes'-->
|
|
169
|
-
<!-- condition="" :search="false"-->
|
|
170
|
-
<!-- close-on-select style="width: 60%">-->
|
|
171
|
-
<!-- </v-select>-->
|
|
172
|
-
<!-- </div>-->
|
|
173
|
-
<!-- <div class="col-sm-2 form-group">-->
|
|
174
|
-
<!-- <label class="font_normal_body">房屋类型</label>-->
|
|
175
|
-
<!-- <v-select :value.sync="model.f_house_type" v-model="model.f_house_type"-->
|
|
176
|
-
<!-- :options='$parent.$parent.houseTypes' placeholder='请选择'-->
|
|
177
|
-
<!-- close-on-select-->
|
|
178
|
-
<!-- condition=""></v-select>-->
|
|
179
|
-
<!-- </div>-->
|
|
180
|
-
<!-- <div class="col-sm-2 form-group">-->
|
|
181
|
-
<!-- <label class="font_normal_body">安装位置</label>-->
|
|
182
|
-
<!-- <v-select :value.sync="model.f_position" v-model="model.f_position"-->
|
|
183
|
-
<!-- :options='$parent.$parent.positions' placeholder='请选择'-->
|
|
184
|
-
<!-- condition=""-->
|
|
185
|
-
<!-- close-on-select></v-select>-->
|
|
186
|
-
<!-- </div>-->
|
|
187
73
|
</div>
|
|
188
74
|
</div>
|
|
189
75
|
</criteria>
|
|
@@ -194,10 +80,10 @@
|
|
|
194
80
|
<th style="text-align:center"><nobr>上报日期</nobr></th>
|
|
195
81
|
<th style="text-align:center" title="安装户数=正常户数+停用户数+未注册户数"><nobr>安装户数</nobr></th>
|
|
196
82
|
|
|
197
|
-
<th style="text-align:center" title="停用户数:表具状态为停用的用户数"><nobr>停用户数</nobr></th
|
|
198
|
-
<th style="text-align:center" title="在用户数:表具状态为正常的用户数"><nobr>在用户数</nobr></th
|
|
83
|
+
<!-- <th style="text-align:center" title="停用户数:表具状态为停用的用户数"><nobr>停用户数</nobr></th>-->
|
|
84
|
+
<!-- <th style="text-align:center" title="在用户数:表具状态为正常的用户数"><nobr>在用户数</nobr></th>-->
|
|
199
85
|
|
|
200
|
-
<th style="text-align:center" title="用户使用率=在用户数/正常户数"><nobr>用户使用率</nobr></th
|
|
86
|
+
<!-- <th style="text-align:center" title="用户使用率=在用户数/正常户数"><nobr>用户使用率</nobr></th>-->
|
|
201
87
|
<th style="text-align:center"><nobr>抄表成功户数</nobr></th>
|
|
202
88
|
<th style="text-align:center"><nobr>总用气量</nobr></th>
|
|
203
89
|
<th style="text-align:center"><nobr>总用气金额</nobr></th>
|
|
@@ -214,10 +100,10 @@
|
|
|
214
100
|
<td style="text-align:center;width: 170px;"><nobr>{{row.f_insert_date}}</nobr></td>
|
|
215
101
|
<td style="text-align:center">{{row.anzhuang}}</td>
|
|
216
102
|
|
|
217
|
-
<th style="text-align:center">{{row.c0}}</th
|
|
218
|
-
<td style="text-align:center"><nobr>{{row.c}}</nobr></td
|
|
103
|
+
<!-- <th style="text-align:center">{{row.c0}}</th>-->
|
|
104
|
+
<!-- <td style="text-align:center"><nobr>{{row.c}}</nobr></td>-->
|
|
219
105
|
|
|
220
|
-
<td style="text-align:center"><nobr>{{row.user_bv}}%</nobr></td
|
|
106
|
+
<!-- <td style="text-align:center"><nobr>{{row.user_bv}}%</nobr></td>-->
|
|
221
107
|
<!--<td style="text-align:center"><nobr>{{row.f_gas}}</nobr></td>-->
|
|
222
108
|
<td style="text-align:center">{{row.c1}}</td>
|
|
223
109
|
<td style="text-align:center">{{row.f_gas_all}}</td>
|
|
@@ -300,8 +186,6 @@
|
|
|
300
186
|
"rownumber":"序号",
|
|
301
187
|
"f_insert_date":"上报日期",
|
|
302
188
|
"anzhuang":"安装户数",
|
|
303
|
-
"c0":"停用户数",
|
|
304
|
-
"c":"在用户数","user_bv":"用户使用率",
|
|
305
189
|
"c1":"抄表成功户数",
|
|
306
190
|
"f_gas_all":"总用气量",
|
|
307
191
|
"f_fee_all":"总用气金额",
|
|
@@ -284,6 +284,9 @@
|
|
|
284
284
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
285
285
|
期间充值金额: {{sumsmodel.f_collection}}
|
|
286
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_curbalance}}
|
|
289
|
+
</td>
|
|
287
290
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
288
291
|
一阶气量合计: {{sumsmodel.f_stairamount1}}
|
|
289
292
|
</td>
|
|
@@ -357,6 +360,7 @@
|
|
|
357
360
|
f_oughtamount: 0,
|
|
358
361
|
f_oughtfee: 0,
|
|
359
362
|
f_collection:0,
|
|
363
|
+
f_curbalance: 0,
|
|
360
364
|
f_stairamount1:0,
|
|
361
365
|
f_stair1fee:0,
|
|
362
366
|
f_stairamount2:0,
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|