manage-client 3.2.299 → 3.3.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/webmeter/DrillData/UserLostContactAnalysis.vue +36 -2
- package/src/components/webmeter/recharge/RechargeList.vue +3 -0
- package/src/filiale/qianneng/OtherChargeQuery.vue +12 -2
- package/src/filiale/qianneng/QnJgqCbjbZD.vue +1 -1
- package/src/filiale/qianneng/QnJgqCbwlwZD.vue +13 -1
- package/src/filiale/qianneng/exportConfig.js +2 -2
- package/src/filiale/shanxian/FmyGasDeviceQuery.vue +97 -22
- package/src/filiale/shanxian/GasDeviceQuery.vue +19 -3
- package/src/filiale/shanxian/InspectListUserNew.vue +32 -25
- package/src/filiale/tongchuan/ChargeQuery.vue +10 -1
- package/src/filiale/tongchuan/HandplanQuery.vue +4 -4
- package/src/filiale/wenxi/GasStatistics.vue +3 -0
- package/src/filiale/wenxi/NewGasStatistics.vue +3 -1
- package/src/filiale/wenxi/WebHandQuery.vue +15 -13
- package/src/filiale/xinkang/GasStatistics.vue +27 -33
package/package.json
CHANGED
|
@@ -124,6 +124,29 @@
|
|
|
124
124
|
close-on-select condition="f_user_state ='{}'">
|
|
125
125
|
</v-select>
|
|
126
126
|
</div>
|
|
127
|
+
|
|
128
|
+
<div class="col-sm-2 form-group">
|
|
129
|
+
<label class="font_normal_body">开始时间</label>
|
|
130
|
+
<datepicker style="width:60%" id="startdate" placeholder="开始时间"
|
|
131
|
+
v-model="model.startDate"
|
|
132
|
+
:value.sync="model.startDate"
|
|
133
|
+
:disabled-days-of-Week="[]"
|
|
134
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
135
|
+
|
|
136
|
+
:show-reset-button="reset">
|
|
137
|
+
</datepicker>
|
|
138
|
+
</div>
|
|
139
|
+
<div class="col-sm-2 form-group">
|
|
140
|
+
<label class="font_normal_body">结束时间</label>
|
|
141
|
+
<datepicker style="width:60%" id="enddate" placeholder="结束日期"
|
|
142
|
+
v-model="model.endDate"
|
|
143
|
+
:value.sync="model.endDate"
|
|
144
|
+
:disabled-days-of-Week="[]"
|
|
145
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
146
|
+
|
|
147
|
+
:show-reset-button="reset">
|
|
148
|
+
</datepicker>
|
|
149
|
+
</div>
|
|
127
150
|
<div class="col-sm-2 form-group flex-row" style="white-space: nowrap">
|
|
128
151
|
<label class="font_normal_body">失联天数 </label>
|
|
129
152
|
<div class="row">
|
|
@@ -308,10 +331,14 @@
|
|
|
308
331
|
import UserGasEcharts from './UserGasEcharts'
|
|
309
332
|
import plugin from 'system-clients/src/plugins/GetLoginInfoService'
|
|
310
333
|
import {HttpResetClass} from 'vue-client'
|
|
334
|
+
import * as Util from '../../../Util'
|
|
311
335
|
let readySomething = async function (self) {
|
|
312
336
|
|
|
313
337
|
await self.$MagLoadParams.loadParam()
|
|
314
338
|
self.initParams()
|
|
339
|
+
let year = new Date().getFullYear()
|
|
340
|
+
self.$refs.paged.$refs.cri.model.startDate = year+'-01-01 00:00:00'
|
|
341
|
+
self.$refs.paged.$refs.cri.model.endDate = Util.toStandardDateString() + ' 23:59:59'
|
|
315
342
|
self.$refs.paged.$refs.cri.model.notappear='不包含'
|
|
316
343
|
self.$refs.paged.$refs.cri.model.SLday1=10
|
|
317
344
|
self.$refs.paged.$refs.cri.model.f_user_state='正常'
|
|
@@ -324,7 +351,10 @@
|
|
|
324
351
|
|
|
325
352
|
data() {
|
|
326
353
|
return {
|
|
327
|
-
model: new PagedList('rs/sql/webmeter_getUserLoseQuery', 20
|
|
354
|
+
model: new PagedList('rs/sql/webmeter_getUserLoseQuery', 20 ,{
|
|
355
|
+
startDate: 'this.model.startDate',
|
|
356
|
+
endDate: 'this.model.endDate'
|
|
357
|
+
}),
|
|
328
358
|
getfield:{
|
|
329
359
|
"f_userinfo_code":"客户编号","f_user_name":"客户名称",
|
|
330
360
|
"f_address":"客户地址","f_user_type":"客户类型","f_gasproperties":"用气性质",
|
|
@@ -524,7 +554,11 @@
|
|
|
524
554
|
}
|
|
525
555
|
return {
|
|
526
556
|
|
|
527
|
-
condition:
|
|
557
|
+
condition: {
|
|
558
|
+
condition: condition ,
|
|
559
|
+
startDate:`${this.$refs.paged.$refs.cri.model.startDate}`,
|
|
560
|
+
endDate:`${this.$refs.paged.$refs.cri.model.endDate}`
|
|
561
|
+
}
|
|
528
562
|
}
|
|
529
563
|
},
|
|
530
564
|
usertypes() {
|
|
@@ -165,6 +165,9 @@
|
|
|
165
165
|
</criteria-paged>
|
|
166
166
|
</div>
|
|
167
167
|
</div>
|
|
168
|
+
<div class="flex" style="width:99%;height:98%;margin-bottom:0px" v-if="show">
|
|
169
|
+
<user-info-detail-manage-new :f_userinfo_id="rowdata.f_userinfo_id" @cancel-main="cancel"></user-info-detail-manage-new>
|
|
170
|
+
</div>
|
|
168
171
|
</div>
|
|
169
172
|
</template>
|
|
170
173
|
|
|
@@ -37,7 +37,11 @@
|
|
|
37
37
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
38
38
|
condition="f_user_name like '%{}%'" placeholder="客户名称">
|
|
39
39
|
</div>
|
|
40
|
-
|
|
40
|
+
<div class="col-sm-2 form-group">
|
|
41
|
+
<label class="font_normal_body">安装电话</label>
|
|
42
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_contact_phone"
|
|
43
|
+
condition="f_contact_phone like '%{}%'" placeholder="安装联系电话">
|
|
44
|
+
</div>
|
|
41
45
|
<div class="span" style="float:right;">
|
|
42
46
|
<button class="button_search button_spacing" @click="search()">查询</button>
|
|
43
47
|
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
@@ -199,6 +203,9 @@
|
|
|
199
203
|
<th>
|
|
200
204
|
<nobr>客户电话</nobr>
|
|
201
205
|
</th>
|
|
206
|
+
<th>
|
|
207
|
+
<nobr>安装联系电话</nobr>
|
|
208
|
+
</th>
|
|
202
209
|
<th>
|
|
203
210
|
<nobr>气表类型</nobr>
|
|
204
211
|
</th>
|
|
@@ -287,6 +294,9 @@
|
|
|
287
294
|
<td style="text-align: center;">
|
|
288
295
|
<nobr>{{row.f_user_phone}}</nobr>
|
|
289
296
|
</td>
|
|
297
|
+
<td style="text-align: center;">
|
|
298
|
+
<nobr>{{row.f_contact_phone}}</nobr>
|
|
299
|
+
</td>
|
|
290
300
|
<td style="text-align: center;">
|
|
291
301
|
<nobr>{{row.f_meter_classify}}</nobr>
|
|
292
302
|
</td>
|
|
@@ -455,7 +465,7 @@
|
|
|
455
465
|
all: false,
|
|
456
466
|
fields: {},
|
|
457
467
|
config: {
|
|
458
|
-
defaultPrint: ['f_userinfo_code', 'f_user_name', 'f_brand_spec', 'f_typename', 'f_typenumber', 'f_unitprice', 'f_number', 'f_money','f_operate_date', 'f_operator']
|
|
468
|
+
defaultPrint: ['f_userinfo_code', 'f_user_name', 'f_contact_phone', 'f_brand_spec', 'f_typename', 'f_typenumber', 'f_unitprice', 'f_number', 'f_money','f_operate_date', 'f_operator']
|
|
459
469
|
},
|
|
460
470
|
//默认打印列
|
|
461
471
|
defaultfield: [],
|
|
@@ -69,6 +69,12 @@
|
|
|
69
69
|
<th>
|
|
70
70
|
<nobr>地址</nobr>
|
|
71
71
|
</th>
|
|
72
|
+
<th>
|
|
73
|
+
<nobr>起方</nobr>
|
|
74
|
+
</th>
|
|
75
|
+
<th>
|
|
76
|
+
<nobr>止方</nobr>
|
|
77
|
+
</th>
|
|
72
78
|
<th>
|
|
73
79
|
<nobr>气量</nobr>
|
|
74
80
|
</th>
|
|
@@ -111,6 +117,12 @@
|
|
|
111
117
|
<td style="text-align: center;">
|
|
112
118
|
<nobr>{{row.c_dz}}</nobr>
|
|
113
119
|
</td>
|
|
120
|
+
<td style="text-align: center;">
|
|
121
|
+
<nobr>{{row.d_qf}}</nobr>
|
|
122
|
+
</td>
|
|
123
|
+
<td style="text-align: center;">
|
|
124
|
+
<nobr>{{row.e_zf}}</nobr>
|
|
125
|
+
</td>
|
|
114
126
|
<td style="text-align: center;">
|
|
115
127
|
<nobr>{{row.g_ql}}</nobr>
|
|
116
128
|
</td>
|
|
@@ -184,7 +196,7 @@ let readySomething = async function (self) {
|
|
|
184
196
|
}
|
|
185
197
|
|
|
186
198
|
export default {
|
|
187
|
-
title: '
|
|
199
|
+
title: '物联网抄表报表',
|
|
188
200
|
data() {
|
|
189
201
|
return {
|
|
190
202
|
other:[],
|
|
@@ -83,7 +83,7 @@ export default{
|
|
|
83
83
|
'f_bank_name': '银行名称', 'f_oughtfee': '欠费金额'
|
|
84
84
|
},
|
|
85
85
|
otherchargeConfig: {
|
|
86
|
-
'f_userinfo_code': '客户编号', 'f_olduserinfo_code': '档案编号', 'f_user_name': '客户名称', 'f_address': '客户地址', 'f_user_phone': '客户电话', 'f_meter_classify': '气表类型',
|
|
86
|
+
'f_userinfo_code': '客户编号', 'f_olduserinfo_code': '档案编号', 'f_user_name': '客户名称', 'f_address': '客户地址', 'f_user_phone': '客户电话', 'f_contact_phone': '安装联系电话', 'f_meter_classify': '气表类型',
|
|
87
87
|
'f_meter_brand': '气表品牌', 'f_bill_number': '收据票号', 'f_brand_spec': '收费类型', 'f_typename': '品名规格',
|
|
88
88
|
'f_typenumber': '型号', 'f_unitprice': '单价', 'f_number': '数量', 'f_money': '应收',
|
|
89
89
|
'f_collection': '收款', 'f_newbalance': '支出', 'f_newcurbalance': '收入', 'f_payment': '付款方式', 'f_state': '状态',
|
|
@@ -190,7 +190,7 @@ export default{
|
|
|
190
190
|
'h_je':'金额','i_yd':'月度','j_bh':'表号','k_yhlx':'用户类型','l_yqxz':'用气性质','m_jgmc':'价格名称','n_cby':'抄表员','o_blx':'表类型','p_jbcb':'机表抄表'
|
|
191
191
|
},
|
|
192
192
|
qnJgqCbwlwZD:{
|
|
193
|
-
'a_khbm':'客户编码','b_yhmc':'用户名称','c_dz':'地址','g_ql':'气量',
|
|
193
|
+
'a_khbm':'客户编码','b_yhmc':'用户名称','c_dz':'地址','d_qf':'起方','e_zf':'止方','g_ql':'气量',
|
|
194
194
|
'h_je':'金额','i_yd':'月度','j_bh':'表号','k_yhlx':'用户类型','l_yqxz':'用气性质','m_jgmc':'价格名称','n_cby':'抄表员','o_blx':'表类型','p_jbcb':'物联网抄表'
|
|
195
195
|
},
|
|
196
196
|
qnJgqSfZD:{
|
|
@@ -93,6 +93,29 @@
|
|
|
93
93
|
<input type="number" style="width:60%" class="input_search" v-model="model.diffAllyear2"
|
|
94
94
|
condition="diffAllyear <= {}" placeholder="最大值">
|
|
95
95
|
</div>
|
|
96
|
+
<div class="col-sm-2 form-group">
|
|
97
|
+
<label class="font_normal_body">客户类型</label>
|
|
98
|
+
<v-select
|
|
99
|
+
:value.sync="model.f_user_type"
|
|
100
|
+
@change="$parent.$parent.userTypeChange()"
|
|
101
|
+
:options="$parent.$parent.usertypes"
|
|
102
|
+
placeholder="请选择"
|
|
103
|
+
v-model="model.f_user_type"
|
|
104
|
+
condition="f_user_type = '{}'"
|
|
105
|
+
close-on-select
|
|
106
|
+
></v-select>
|
|
107
|
+
</div>
|
|
108
|
+
<div class="col-sm-2 form-group">
|
|
109
|
+
<label class="font_normal_body">用气性质</label>
|
|
110
|
+
<v-select
|
|
111
|
+
:value.sync="model.f_gasproperties"
|
|
112
|
+
v-model="model.f_gasproperties"
|
|
113
|
+
:options="$parent.$parent.gasproperties"
|
|
114
|
+
placeholder="请选择"
|
|
115
|
+
condition="f_gasproperties = '{}'"
|
|
116
|
+
close-on-select
|
|
117
|
+
></v-select>
|
|
118
|
+
</div>
|
|
96
119
|
<div class="col-sm-2 form-group">
|
|
97
120
|
<label class="font_normal_body"> 小区 </label>
|
|
98
121
|
<v-select :value.sync="model.f_residential_area"
|
|
@@ -113,26 +136,30 @@
|
|
|
113
136
|
<template partial='head'>
|
|
114
137
|
<tr>
|
|
115
138
|
<th rowspan="2"><nobr>序号</nobr></th>
|
|
116
|
-
<th colspan="
|
|
139
|
+
<th colspan="12"><nobr>用户信息</nobr></th>
|
|
117
140
|
<th colspan="8"><nobr>燃气计量装置</nobr></th>
|
|
118
141
|
<th colspan="6"><nobr>控制器设备</nobr></th>
|
|
119
142
|
<th colspan="6"><nobr>燃气连接管</nobr></th>
|
|
120
143
|
<th colspan="7"><nobr>调压设备</nobr></th>
|
|
121
144
|
<th colspan="11"><nobr>燃气报警器装置</nobr></th>
|
|
122
|
-
<th colspan="
|
|
145
|
+
<th colspan="5"><nobr>建档信息</nobr></th>
|
|
123
146
|
<th colspan="6"><nobr>安检信息</nobr></th>
|
|
147
|
+
<th colspan="2"><nobr>初次充值信息</nobr></th>
|
|
148
|
+
<th colspan="2"><nobr>最新充值信息</nobr></th>
|
|
124
149
|
<th rowspan="2"><nobr>备注</nobr></th>
|
|
125
150
|
</tr>
|
|
126
151
|
|
|
127
152
|
<tr>
|
|
128
|
-
<th><nobr>营业执照名称</nobr></th>
|
|
129
153
|
<th><nobr>统一社会信用代码</nobr></th>
|
|
154
|
+
<th><nobr>单位名称</nobr></th>
|
|
155
|
+
<th><nobr>经营名称</nobr></th>
|
|
156
|
+
<th><nobr>经营场所</nobr></th>
|
|
130
157
|
<th><nobr>法定代表人/经营者</nobr></th>
|
|
158
|
+
<th><nobr>电话号码</nobr></th>
|
|
131
159
|
<th><nobr>身份证号</nobr></th>
|
|
132
|
-
<th><nobr
|
|
133
|
-
<th><nobr
|
|
134
|
-
<th><nobr
|
|
135
|
-
<th><nobr>项目地址</nobr></th>
|
|
160
|
+
<th><nobr>代理人</nobr></th>
|
|
161
|
+
<th><nobr>身份证号(代理人)</nobr></th>
|
|
162
|
+
<th><nobr>代理人电话</nobr></th>
|
|
136
163
|
<th><nobr>用气设备</nobr></th>
|
|
137
164
|
<th><nobr>变更记录</nobr></th>
|
|
138
165
|
|
|
@@ -183,15 +210,22 @@
|
|
|
183
210
|
<th><nobr>供用气合同编号</nobr></th>
|
|
184
211
|
<th><nobr>通气日期</nobr></th>
|
|
185
212
|
<th><nobr>通气人员</nobr></th>
|
|
186
|
-
<th><nobr>通气年限</nobr></th
|
|
213
|
+
<!-- <th><nobr>通气年限</nobr></th>-->
|
|
187
214
|
<th><nobr>变更记录</nobr></th>
|
|
188
215
|
|
|
189
216
|
<th><nobr>安检日期</nobr></th>
|
|
190
217
|
<th><nobr>安检人员</nobr></th>
|
|
191
218
|
<th><nobr>用气总量</nobr></th>
|
|
192
|
-
<th><nobr
|
|
219
|
+
<th><nobr>充值次数</nobr></th>
|
|
220
|
+
<!-- <th><nobr>剩余气量</nobr></th>-->
|
|
193
221
|
<th><nobr>发现问题</nobr></th>
|
|
194
222
|
<th><nobr>整改日期</nobr></th>
|
|
223
|
+
|
|
224
|
+
<th><nobr>充值金额</nobr></th>
|
|
225
|
+
<th><nobr>充值日期</nobr></th>
|
|
226
|
+
|
|
227
|
+
<th><nobr>充值金额</nobr></th>
|
|
228
|
+
<th><nobr>充值日期</nobr></th>
|
|
195
229
|
</tr>
|
|
196
230
|
</template>
|
|
197
231
|
<template partial='body'>
|
|
@@ -202,17 +236,17 @@
|
|
|
202
236
|
<!--用户信息-->
|
|
203
237
|
<td style="text-align: center;">
|
|
204
238
|
<nobr>
|
|
205
|
-
{{row.
|
|
239
|
+
{{row.f_taxpayer_id}}
|
|
206
240
|
</nobr>
|
|
207
241
|
</td>
|
|
208
242
|
<td style="text-align: center;">
|
|
209
|
-
<nobr>{{row.
|
|
243
|
+
<nobr>{{row.f_paper_name}}</nobr>
|
|
210
244
|
</td>
|
|
211
245
|
<td style="text-align: center;">
|
|
212
|
-
<nobr>{{row.
|
|
246
|
+
<nobr>{{row.f_user_name}}</nobr>
|
|
213
247
|
</td>
|
|
214
248
|
<td style="text-align: center;">
|
|
215
|
-
<nobr>{{row.
|
|
249
|
+
<nobr>{{row.f_address}}</nobr>
|
|
216
250
|
</td>
|
|
217
251
|
<td style="text-align: center;">
|
|
218
252
|
<nobr>{{row.f_legal_name}}</nobr>
|
|
@@ -221,13 +255,19 @@
|
|
|
221
255
|
<nobr>{{row.f_user_phone}}</nobr>
|
|
222
256
|
</td>
|
|
223
257
|
<td style="text-align: center;">
|
|
224
|
-
<nobr>{{row.
|
|
258
|
+
<nobr>{{row.f_idnumber}}</nobr>
|
|
225
259
|
</td>
|
|
226
260
|
<td style="text-align: center;">
|
|
227
|
-
<nobr>{{row.
|
|
261
|
+
<nobr>{{row.f_agent_name}}</nobr>
|
|
262
|
+
</td>
|
|
263
|
+
<td style="text-align: center;">
|
|
264
|
+
<nobr>{{row.f_agent_credentials}}</nobr>
|
|
265
|
+
</td>
|
|
266
|
+
<td style="text-align: center;">
|
|
267
|
+
<nobr>{{row.f_agent_phone}}</nobr>
|
|
228
268
|
</td>
|
|
229
269
|
<td style="text-align: center;">
|
|
230
|
-
<nobr
|
|
270
|
+
<nobr></nobr>
|
|
231
271
|
</td>
|
|
232
272
|
<td style="text-align: center;">
|
|
233
273
|
<nobr>
|
|
@@ -384,9 +424,9 @@
|
|
|
384
424
|
<td style="text-align: center;">
|
|
385
425
|
<nobr>{{row.f_gas_person}}</nobr>
|
|
386
426
|
</td>
|
|
387
|
-
<td style="text-align: center;" :style="$parent.$parent.$parent.ventilationYear(row.diffallyear)"
|
|
388
|
-
<nobr>{{row.ventilation_years}}</nobr
|
|
389
|
-
</td
|
|
427
|
+
<!-- <td style="text-align: center;" :style="$parent.$parent.$parent.ventilationYear(row.diffallyear)">-->
|
|
428
|
+
<!-- <nobr>{{row.ventilation_years}}</nobr>-->
|
|
429
|
+
<!-- </td>-->
|
|
390
430
|
<td style="text-align: center;">
|
|
391
431
|
<nobr>
|
|
392
432
|
<span @click="$parent.$parent.$parent.dealmsg(row,'','建档信息')"><a><b>变更记录</b></a></span>
|
|
@@ -403,9 +443,9 @@
|
|
|
403
443
|
<td style="text-align: center;">
|
|
404
444
|
<nobr>{{row.f_total_gas}}</nobr>
|
|
405
445
|
</td>
|
|
406
|
-
<td style="text-align: center;"
|
|
407
|
-
<nobr>{{row.f_balance_gas}}</nobr
|
|
408
|
-
</td
|
|
446
|
+
<!-- <td style="text-align: center;">-->
|
|
447
|
+
<!-- <nobr>{{row.f_balance_gas}}</nobr>-->
|
|
448
|
+
<!-- </td>-->
|
|
409
449
|
<td style="text-align: center;">
|
|
410
450
|
<nobr>{{row.f_defect_content}}</nobr>
|
|
411
451
|
</td>
|
|
@@ -413,6 +453,20 @@
|
|
|
413
453
|
<nobr>{{row.f_repair_date}}</nobr>
|
|
414
454
|
</td>
|
|
415
455
|
|
|
456
|
+
<td style="text-align: center;">
|
|
457
|
+
<nobr>{{row.f_collection}}</nobr>
|
|
458
|
+
</td>
|
|
459
|
+
<td style="text-align: center;">
|
|
460
|
+
<nobr>{{row.f_operate_date}}</nobr>
|
|
461
|
+
</td>
|
|
462
|
+
|
|
463
|
+
<td style="text-align: center;">
|
|
464
|
+
<nobr>{{row.f_collection1}}</nobr>
|
|
465
|
+
</td>
|
|
466
|
+
<td style="text-align: center;">
|
|
467
|
+
<nobr>{{row.f_operate_date1}}</nobr>
|
|
468
|
+
</td>
|
|
469
|
+
|
|
416
470
|
<!--备注-->
|
|
417
471
|
<td style="text-align: center;">
|
|
418
472
|
<nobr>{{row.f_comments}}</nobr>
|
|
@@ -472,6 +526,7 @@
|
|
|
472
526
|
titles:'',
|
|
473
527
|
other:[],
|
|
474
528
|
footer:[],
|
|
529
|
+
gasproperties: [],
|
|
475
530
|
model: new PagedList('rs/sql/fmyGasDeviceQuery', 20, {orderitem: this.orderitem?'"' + this.orderitem + ' "':`'f_userinfo_code desc'`}),
|
|
476
531
|
criteriaShow: false,
|
|
477
532
|
orgCondtionStr: '',
|
|
@@ -671,6 +726,20 @@
|
|
|
671
726
|
return
|
|
672
727
|
}
|
|
673
728
|
},
|
|
729
|
+
userTypeChange() {
|
|
730
|
+
this.gasproperties = [];
|
|
731
|
+
if (this.$refs.paged.$refs.cri.model !== null) {
|
|
732
|
+
this.$refs.paged.$refs.cri.model.f_gasproperties = "";
|
|
733
|
+
|
|
734
|
+
// console.log("查看客户类型",this.$refs.paged.$refs.cri.model.f_user_type[0])
|
|
735
|
+
this.gasproperties = this.$appdata.getParam(
|
|
736
|
+
this.$refs.paged.$refs.cri.model.f_user_type[0]
|
|
737
|
+
);
|
|
738
|
+
// this.gasproperties.push({label: '全部', value: ''})
|
|
739
|
+
} else {
|
|
740
|
+
this.gasproperties = [{ label: "全部", value: "" }];
|
|
741
|
+
}
|
|
742
|
+
},
|
|
674
743
|
//把数据库查询数据转换为下拉数据
|
|
675
744
|
calculate(rows){
|
|
676
745
|
let data = []
|
|
@@ -833,6 +902,12 @@
|
|
|
833
902
|
getExportField() {
|
|
834
903
|
return exportConfig.userConfig
|
|
835
904
|
},
|
|
905
|
+
usertypes() {
|
|
906
|
+
return [
|
|
907
|
+
{ label: " 全部 ", value: "" },
|
|
908
|
+
...this.$appdata.getParam("用户类型"),
|
|
909
|
+
];
|
|
910
|
+
},
|
|
836
911
|
addressstate() {
|
|
837
912
|
return [{label: '全部', value: ''}, ...this.$appdata.getParam('地址状态')]
|
|
838
913
|
}
|
|
@@ -457,10 +457,10 @@
|
|
|
457
457
|
|
|
458
458
|
<!--每年充值-->
|
|
459
459
|
<td style="text-align: center;">
|
|
460
|
-
<nobr>{{row.
|
|
460
|
+
<nobr>{{row.f_max_operate_date}}</nobr>
|
|
461
461
|
</td>
|
|
462
462
|
<td style="text-align: center;">
|
|
463
|
-
<nobr>{{row.
|
|
463
|
+
<nobr>{{row.f_max_preamount}}</nobr>
|
|
464
464
|
</td>
|
|
465
465
|
|
|
466
466
|
<!--安检信息-->
|
|
@@ -483,7 +483,7 @@
|
|
|
483
483
|
<!--<nobr>{{row.f_balance_gas}}</nobr>-->
|
|
484
484
|
<!--</td>-->
|
|
485
485
|
<td style="text-align: center;">
|
|
486
|
-
<nobr>{{row.f_defect_content}}</nobr>
|
|
486
|
+
<nobr>{{$parent.$parent.$parent.trouble(row.f_defect_content)}}</nobr>
|
|
487
487
|
</td>
|
|
488
488
|
<td style="text-align: center;">
|
|
489
489
|
<nobr>{{row.f_complete}}</nobr>
|
|
@@ -633,6 +633,22 @@
|
|
|
633
633
|
})
|
|
634
634
|
},
|
|
635
635
|
methods: {
|
|
636
|
+
//转换json数值
|
|
637
|
+
trouble(val) {
|
|
638
|
+
const defect_content = JSON.parse(val)
|
|
639
|
+
let result = ''
|
|
640
|
+
if (defect_content.data) {
|
|
641
|
+
const jsonData = defect_content.data
|
|
642
|
+
for (const itemdata of jsonData) {
|
|
643
|
+
const keys = Object.keys(itemdata)
|
|
644
|
+
for (const itm of keys) {
|
|
645
|
+
const value = itemdata[itm]
|
|
646
|
+
result += itm + ':' + value
|
|
647
|
+
}
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
return result
|
|
651
|
+
},
|
|
636
652
|
async dealmsg(row,id,type){
|
|
637
653
|
this.titles = type+'变更记录'
|
|
638
654
|
this.filechangeHistorys.rows = []
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
|
|
8
8
|
<div class="row">
|
|
9
9
|
<div class="col-sm-2">
|
|
10
|
-
<label class="font_normal_body"
|
|
10
|
+
<label class="font_normal_body">组织机构</label>
|
|
11
11
|
<right-tree @re-res="$parent.$parent.getorg"
|
|
12
12
|
:initresid='$parent.$parent.org'></right-tree>
|
|
13
13
|
</div>
|
|
@@ -56,6 +56,7 @@
|
|
|
56
56
|
style="width:60%"
|
|
57
57
|
:value.sync="model.startDate"
|
|
58
58
|
:disabled-days-of-Week="[]"
|
|
59
|
+
condition="delivery_date >= '{} 00:00:00'"
|
|
59
60
|
:format="'yyyy-MM-dd'"
|
|
60
61
|
:show-reset-button="reset">
|
|
61
62
|
</datepicker>
|
|
@@ -66,6 +67,7 @@
|
|
|
66
67
|
v-model="model.endDate"
|
|
67
68
|
style="width:60%"
|
|
68
69
|
:value.sync="model.endDate"
|
|
70
|
+
condition="delivery_date <= '{} 23:59:59'"
|
|
69
71
|
:disabled-days-of-Week="[]"
|
|
70
72
|
:format="'yyyy-MM-dd'"
|
|
71
73
|
:show-reset-button="reset">
|
|
@@ -136,11 +138,11 @@
|
|
|
136
138
|
condition="collection <= {} " placeholder="">
|
|
137
139
|
</div>
|
|
138
140
|
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
condition="f_meternumber = '{}'" placeholder='表号'
|
|
143
|
-
|
|
141
|
+
<!--<div class="col-sm-2 form-group">-->
|
|
142
|
+
<!--<label class="font_normal_body">  表号</label>-->
|
|
143
|
+
<!--<input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"-->
|
|
144
|
+
<!--condition="f_meternumber = '{}'" placeholder='表号'>-->
|
|
145
|
+
<!--</div>-->
|
|
144
146
|
<div class="col-sm-2 form-group">
|
|
145
147
|
<label class="font_normal_body">用户类型</label>
|
|
146
148
|
<v-select :value.sync="model.f_user_type"
|
|
@@ -156,16 +158,16 @@
|
|
|
156
158
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_userinfo_code"
|
|
157
159
|
condition="f_userinfo_code = '{}' " placeholder="用户编号">
|
|
158
160
|
</div>
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
condition="f_olduserinfo_code = '{}' " placeholder="档案编号"
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
condition="f_user_phone like '%{}%'" placeholder="用户电话"
|
|
168
|
-
|
|
161
|
+
<!--<div class="col-sm-2 form-group">-->
|
|
162
|
+
<!--<label class="font_normal_body" title="旧用户编号">档案编号</label>-->
|
|
163
|
+
<!--<input type="text" style="width:60%" class="input_search" v-model="model.f_olduserinfo_code"-->
|
|
164
|
+
<!--condition="f_olduserinfo_code = '{}' " placeholder="档案编号">-->
|
|
165
|
+
<!--</div>-->
|
|
166
|
+
<!--<div class="col-sm-2 form-group">-->
|
|
167
|
+
<!--<label class="font_normal_body">用户电话</label>-->
|
|
168
|
+
<!--<input type="text" style="width:60%" class="input_search" v-model="model.f_user_phone"-->
|
|
169
|
+
<!--condition="f_user_phone like '%{}%'" placeholder="用户电话">-->
|
|
170
|
+
<!--</div>-->
|
|
169
171
|
<div class="col-sm-2 form-group">
|
|
170
172
|
<label for="startDate" class="font_normal_body">建档开始</label>
|
|
171
173
|
<datepicker id="createFileStartDate" placeholder="建档开始日期"
|
|
@@ -196,11 +198,13 @@
|
|
|
196
198
|
<template partial='head'>
|
|
197
199
|
<tr>
|
|
198
200
|
<th><nobr>序号</nobr></th>
|
|
201
|
+
<th><nobr>组织机构</nobr></th>
|
|
202
|
+
<th><nobr>小区名称</nobr></th>
|
|
199
203
|
<th><nobr>用户名称</nobr></th>
|
|
200
|
-
<th><nobr
|
|
204
|
+
<th><nobr>详细地址</nobr></th>
|
|
201
205
|
<th><nobr>用户编号</nobr></th>
|
|
202
206
|
<th><nobr>用户电话</nobr></th>
|
|
203
|
-
|
|
207
|
+
<!--<th><nobr>档案编号</nobr></th>-->
|
|
204
208
|
<th><nobr>表号</nobr></th>
|
|
205
209
|
<th><nobr>用户状态</nobr></th>
|
|
206
210
|
<th><nobr>建档日期</nobr></th>
|
|
@@ -210,6 +214,7 @@
|
|
|
210
214
|
<th><nobr>气表品牌</nobr></th>
|
|
211
215
|
<th><nobr>气价名称</nobr></th>
|
|
212
216
|
<th><nobr>最后购气日期</nobr></th>
|
|
217
|
+
<th><nobr>未购气天数</nobr></th>
|
|
213
218
|
<th><nobr>总购气次数</nobr></th>
|
|
214
219
|
<!-- <th v-show="$parent.$parent.$parent.meter_classify === '机表'"><nobr>总抄表次数</nobr></th>-->
|
|
215
220
|
|
|
@@ -219,18 +224,20 @@
|
|
|
219
224
|
|
|
220
225
|
<th><nobr>累计未购气天数</nobr></th>
|
|
221
226
|
<!-- <th v-show="$parent.$parent.$parent.meter_classify === '机表'"><nobr>累计未抄表天数</nobr></th>-->
|
|
222
|
-
|
|
227
|
+
|
|
223
228
|
</tr>
|
|
224
229
|
</template>
|
|
225
230
|
<template partial='body'>
|
|
226
231
|
<td style="text-align: center;"><nobr>{{$index+1}}</nobr></td>
|
|
232
|
+
<th style="text-align: center;"><nobr>{{row.f_orgname}}</nobr></th>
|
|
233
|
+
<th style="text-align: center;"><nobr>{{row.f_residential_area}}</nobr></th>
|
|
227
234
|
<th style="text-align: center;"><nobr>{{row.f_user_name}}</nobr></th>
|
|
228
235
|
<th style="text-align: center;"><nobr>{{row.f_address}}</nobr></th>
|
|
229
236
|
<td style="text-align: center;"><nobr>
|
|
230
237
|
<span @click="$parent.$parent.$parent.showmsg(row)"><a>{{row.f_userinfo_code}}</a></span>
|
|
231
238
|
</nobr> </td>
|
|
232
239
|
<td style="text-align: center;"><nobr>{{row.f_user_phone}}</nobr></td>
|
|
233
|
-
|
|
240
|
+
<!--<td style="text-align: center;"><nobr>{{row.f_olduserinfo_code}}</nobr></td>-->
|
|
234
241
|
<td style="text-align: center;"><nobr>{{row.f_meternumber}}</nobr></td>
|
|
235
242
|
<th style="text-align: center;"><nobr>{{row.f_user_state}}</nobr></th>
|
|
236
243
|
<th style="text-align: center;"><nobr>{{row.f_createfile_date}}</nobr></th>
|
|
@@ -240,12 +247,12 @@
|
|
|
240
247
|
<th style="text-align: center;"><nobr>{{row.f_meter_brand}}</nobr></th>
|
|
241
248
|
<th style="text-align: center;"><nobr>{{row.f_price_name}}</nobr></th>
|
|
242
249
|
<th style="text-align: center;"><nobr>{{row.delivery_date}}</nobr></th>
|
|
250
|
+
<th style="text-align: center;"><nobr>{{row.diffday}}</nobr></th>
|
|
243
251
|
|
|
244
252
|
<th style="text-align: center;"><nobr>{{row.cishu}}</nobr></th>
|
|
245
253
|
<th style="text-align: center;"><nobr>{{row.pregas}}</nobr></th>
|
|
246
254
|
<th style="text-align: center;"><nobr>{{row.collection}}</nobr></th>
|
|
247
255
|
<th style="text-align: center;"><nobr>{{row.diffday}}</nobr></th>
|
|
248
|
-
<th style="text-align: center;"><nobr>{{row.f_orgname}}</nobr></th>
|
|
249
256
|
</template>
|
|
250
257
|
</data-grid>
|
|
251
258
|
</criteria-paged>
|
|
@@ -291,11 +298,11 @@
|
|
|
291
298
|
filialeCodeStr: `and f_orgid = ${this.$login.f.orgid}`,
|
|
292
299
|
userid: this.$login.f.id,
|
|
293
300
|
source: `tool.getFullTree(this.getRights().where(row.getType() == $organization$))`,
|
|
294
|
-
getfield:{"
|
|
295
|
-
"
|
|
301
|
+
getfield:{"f_orgname":"组织机构","f_residential_area":"小区名称","f_user_name":"用户名称","f_userinfo_code":"用户编号","f_address":"详细地址",
|
|
302
|
+
"f_meternumber":"表号", "f_user_state":"用户状态","f_user_phone":"用户电话","f_createfile_date":"建档日期","f_user_type":"用户类型",
|
|
296
303
|
"f_gasproperties":"用气性质","f_table_state":"表具状态","f_meter_brand":"气表品牌","f_price_name":"气价名称",
|
|
297
|
-
"delivery_date":"最后购气日期","cishu":"总购气次数","pregas":"总购气量","collection":"总购金额"
|
|
298
|
-
|
|
304
|
+
"delivery_date":"最后购气日期","diffday":"未购气总天数","cishu":"总购气次数","pregas":"总购气量","collection":"总购金额"
|
|
305
|
+
},
|
|
299
306
|
model: new PagedList('rs/sql/inspectListNew', 50,{startDate:'this.model.startDate',endDate:'this.model.endDate'},{pregas: 0,collection: 0}),
|
|
300
307
|
rows: null,
|
|
301
308
|
//orgid:'',
|
|
@@ -333,6 +333,14 @@
|
|
|
333
333
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_terminal_num"
|
|
334
334
|
condition="f_terminal_num like '{}'" placeholder='终端号'>
|
|
335
335
|
</div>
|
|
336
|
+
<div class="col-sm-2 form-group">
|
|
337
|
+
<label class="font_normal_body"> 壁挂炉 </label>
|
|
338
|
+
<v-select :value.sync="model.isbgl"
|
|
339
|
+
v-model="model.isbgl"
|
|
340
|
+
:options='$parent.$parent.bgl' placeholder='请选择'
|
|
341
|
+
condition="isbgl = '{}'"
|
|
342
|
+
close-on-select></v-select>
|
|
343
|
+
</div>
|
|
336
344
|
</div>
|
|
337
345
|
</div>
|
|
338
346
|
</criteria>
|
|
@@ -912,7 +920,8 @@
|
|
|
912
920
|
lastorgstr:'',
|
|
913
921
|
// pos设备列表
|
|
914
922
|
posEquipment: [{label: '全部',value: ''}],
|
|
915
|
-
showbottomsum:false //页面下方是否有合计: 默认为false, 在watch修改
|
|
923
|
+
showbottomsum:false, //页面下方是否有合计: 默认为false, 在watch修改
|
|
924
|
+
bgl:[{label: '全部', value: ''},{label: '是', value: '是'},{label: '否', value: '否'}]
|
|
916
925
|
}
|
|
917
926
|
},
|
|
918
927
|
ready() {
|
|
@@ -131,10 +131,10 @@
|
|
|
131
131
|
</div>
|
|
132
132
|
<div class="col-sm-2 form-group">
|
|
133
133
|
<label class="font_normal_body"> 壁挂炉 </label>
|
|
134
|
-
<v-select :value.sync="model.
|
|
135
|
-
v-model="model.
|
|
134
|
+
<v-select :value.sync="model.isbgl"
|
|
135
|
+
v-model="model.isbgl"
|
|
136
136
|
:options='$parent.$parent.bgl' placeholder='请选择'
|
|
137
|
-
condition="
|
|
137
|
+
condition="isbgl = '{}'"
|
|
138
138
|
close-on-select></v-select>
|
|
139
139
|
</div>
|
|
140
140
|
<div class="col-sm-2 form-group">
|
|
@@ -777,7 +777,7 @@
|
|
|
777
777
|
},
|
|
778
778
|
batchmoneyShow:false,
|
|
779
779
|
prices: [],
|
|
780
|
-
bgl:[{label: '全部', value: ''},{label: '
|
|
780
|
+
bgl:[{label: '全部', value: ''},{label: '是', value: '是'},{label: '否', value: '否'}],
|
|
781
781
|
meterbooks:[{label: '全部',value: ''}], //抄表册
|
|
782
782
|
tempfalg :false,
|
|
783
783
|
lastorgstr:'',
|
|
@@ -274,6 +274,9 @@
|
|
|
274
274
|
</tr>
|
|
275
275
|
</table>
|
|
276
276
|
</div>
|
|
277
|
+
<div class="flex" style="width:99%;height:98%;margin-bottom:0px" v-if="show">
|
|
278
|
+
<user-info-detail-manage-new :f_userinfo_id="rowdata.f_userinfo_id" @cancel-main="cancel"></user-info-detail-manage-new>
|
|
279
|
+
</div>
|
|
277
280
|
</div>
|
|
278
281
|
</div>
|
|
279
282
|
</template>
|
|
@@ -274,6 +274,9 @@
|
|
|
274
274
|
</tr>
|
|
275
275
|
</table>
|
|
276
276
|
</div>
|
|
277
|
+
<div class="flex" style="width:99%;height:98%;margin-bottom:0px" v-if="show">
|
|
278
|
+
<user-info-detail-manage-new :f_userinfo_id="rowdata.f_userinfo_id" @cancel-main="cancel"></user-info-detail-manage-new>
|
|
279
|
+
</div>
|
|
277
280
|
</div>
|
|
278
281
|
</div>
|
|
279
282
|
</template>
|
|
@@ -402,7 +405,6 @@
|
|
|
402
405
|
this.rowdata=obj
|
|
403
406
|
this.show=true
|
|
404
407
|
},
|
|
405
|
-
|
|
406
408
|
search (args) {
|
|
407
409
|
args.condition = `${args.condition}`+this.orgcondition
|
|
408
410
|
this.condition = args.condition
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
<div class="col-sm-2">
|
|
19
19
|
<label class="font_normal_body">客户编号</label>
|
|
20
20
|
<input @keyup.enter="search" style="width:60%" type="text" class="input_search" v-model="model.f_userinfo_code" placeholder='客户编号'
|
|
21
|
-
condition="f_userinfo_code = '{}'" v-next-el='f_userinfo_code' v-el:meternumber
|
|
21
|
+
condition="f_userinfo_code = '{}'" v-next-el='f_userinfo_code' v-el:meternumber
|
|
22
22
|
>
|
|
23
23
|
</div>
|
|
24
24
|
<div class="col-sm-2">
|
|
@@ -238,6 +238,9 @@
|
|
|
238
238
|
</data-grid>
|
|
239
239
|
</criteria-paged>
|
|
240
240
|
</div>
|
|
241
|
+
<div class="flex" style="width:99%;height:98%;margin-bottom:0px" v-if="show">
|
|
242
|
+
<user-info-detail-manage-new :f_userinfo_id="rowdata.f_userinfo_id" @cancel-main="cancel"></user-info-detail-manage-new>
|
|
243
|
+
</div>
|
|
241
244
|
</div>
|
|
242
245
|
</div>
|
|
243
246
|
</template>
|
|
@@ -281,7 +284,7 @@
|
|
|
281
284
|
orgCondtionStr: '',
|
|
282
285
|
model: new PagedList('rs/sql/manage_webmeterHandQuery', 50,{
|
|
283
286
|
startDate: 'this.model.startDate',
|
|
284
|
-
endDate: 'this.model.endDate'
|
|
287
|
+
endDate: 'this.model.endDate'
|
|
285
288
|
}),
|
|
286
289
|
showbottomsum:false //页面下方是否有合计: 默认为false, 在watch修改
|
|
287
290
|
}
|
|
@@ -298,15 +301,15 @@
|
|
|
298
301
|
// this.$refs.paged.$refs.criteria.search()
|
|
299
302
|
},
|
|
300
303
|
methods: {
|
|
301
|
-
inputChange () {
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
},
|
|
304
|
+
// inputChange () {
|
|
305
|
+
// if (this.$refs.paged.$refs.criteria.model.f_userinfo_code){
|
|
306
|
+
// this.$refs.paged.$refs.criteria.model.startDate = ''
|
|
307
|
+
// this.$refs.paged.$refs.criteria.model.endDate = ''
|
|
308
|
+
// }else{
|
|
309
|
+
// this.$refs.paged.$refs.criteria.model.startDate = Util.addDate(new Date(),0).substring(0,10) + ' 00:00:00'
|
|
310
|
+
// this.$refs.paged.$refs.criteria.model.endDate = Util.addDate(new Date(),0).substring(0,10) + ' 23:59:59'
|
|
311
|
+
// }
|
|
312
|
+
// },
|
|
310
313
|
initParams() {
|
|
311
314
|
// 初始化气表品牌
|
|
312
315
|
let brandArr = []
|
|
@@ -401,8 +404,7 @@
|
|
|
401
404
|
return {
|
|
402
405
|
condition: this.condition,
|
|
403
406
|
startDate:`${this.$refs.paged.$refs.criteria.model.startDate}`,
|
|
404
|
-
endDate:`${this.$refs.paged.$refs.criteria.model.endDate}
|
|
405
|
-
f_userinfo_code:`${this.$refs.paged.$refs.criteria.model.f_userinfo_code}`
|
|
407
|
+
endDate:`${this.$refs.paged.$refs.criteria.model.endDate}`
|
|
406
408
|
}
|
|
407
409
|
},
|
|
408
410
|
getstart(){
|
|
@@ -189,11 +189,11 @@
|
|
|
189
189
|
<th><nobr>表号</nobr></th>
|
|
190
190
|
<th><nobr>表具类型</nobr></th>
|
|
191
191
|
<th><nobr>表描述</nobr></th>
|
|
192
|
-
<th><nobr>气价名称</nobr></th
|
|
192
|
+
<!-- <th><nobr>气价名称</nobr></th>-->
|
|
193
193
|
|
|
194
|
-
<th><nobr>一阶气价</nobr></th
|
|
195
|
-
<th><nobr>二阶气价</nobr></th
|
|
196
|
-
<th><nobr>三阶气价</nobr></th
|
|
194
|
+
<!-- <th><nobr>一阶气价</nobr></th>-->
|
|
195
|
+
<!-- <th><nobr>二阶气价</nobr></th>-->
|
|
196
|
+
<!-- <th><nobr>三阶气价</nobr></th>-->
|
|
197
197
|
|
|
198
198
|
<th><nobr>用气性质</nobr></th>
|
|
199
199
|
<th><nobr>期初余额</nobr></th>
|
|
@@ -221,11 +221,11 @@
|
|
|
221
221
|
<th style="text-align:center"><nobr>{{row.f_meternumber}}</nobr></th>
|
|
222
222
|
<th style="text-align:center"><nobr>{{row.f_meter_classify}}</nobr></th>
|
|
223
223
|
<th style="text-align:center"><nobr>{{row.f_meter_title}}</nobr></th>
|
|
224
|
-
<th style="text-align:center"><nobr>{{row.f_price_name}}</nobr></th
|
|
224
|
+
<!-- <th style="text-align:center"><nobr>{{row.f_price_name}}</nobr></th>-->
|
|
225
225
|
|
|
226
|
-
<th style="text-align:center"><nobr>{{row.f_stair1price}}</nobr></th
|
|
227
|
-
<th style="text-align:center"><nobr>{{row.f_stair2price}}</nobr></th
|
|
228
|
-
<th style="text-align:center"><nobr>{{row.f_stair3price}}</nobr></th
|
|
226
|
+
<!-- <th style="text-align:center"><nobr>{{row.f_stair1price}}</nobr></th>-->
|
|
227
|
+
<!-- <th style="text-align:center"><nobr>{{row.f_stair2price}}</nobr></th>-->
|
|
228
|
+
<!-- <th style="text-align:center"><nobr>{{row.f_stair3price}}</nobr></th>-->
|
|
229
229
|
|
|
230
230
|
<th style="text-align:center"><nobr>{{row.f_gasproperties}}</nobr></th>
|
|
231
231
|
|
|
@@ -261,24 +261,24 @@
|
|
|
261
261
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
262
262
|
期间充值金额: {{sumsmodel.f_collection}}
|
|
263
263
|
</td>
|
|
264
|
-
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold"
|
|
265
|
-
一阶气量合计: {{sumsmodel.f_stairamount1}}
|
|
266
|
-
</td
|
|
267
|
-
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold"
|
|
268
|
-
一阶气费合计: {{sumsmodel.f_stair1fee}}
|
|
269
|
-
</td
|
|
270
|
-
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold"
|
|
271
|
-
二阶气量合计: {{sumsmodel.f_stairamount2}}
|
|
272
|
-
</td
|
|
273
|
-
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold"
|
|
274
|
-
二阶气费合计: {{sumsmodel.f_stair2fee}}
|
|
275
|
-
</td
|
|
276
|
-
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold"
|
|
277
|
-
三阶气量合计: {{sumsmodel.f_stairamount3}}
|
|
278
|
-
</td
|
|
279
|
-
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold"
|
|
280
|
-
三阶气费合计: {{sumsmodel.f_stair3fee}}
|
|
281
|
-
</td
|
|
264
|
+
<!-- <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">-->
|
|
265
|
+
<!-- 一阶气量合计: {{sumsmodel.f_stairamount1}}-->
|
|
266
|
+
<!-- </td>-->
|
|
267
|
+
<!-- <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">-->
|
|
268
|
+
<!-- 一阶气费合计: {{sumsmodel.f_stair1fee}}-->
|
|
269
|
+
<!-- </td>-->
|
|
270
|
+
<!-- <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">-->
|
|
271
|
+
<!-- 二阶气量合计: {{sumsmodel.f_stairamount2}}-->
|
|
272
|
+
<!-- </td>-->
|
|
273
|
+
<!-- <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">-->
|
|
274
|
+
<!-- 二阶气费合计: {{sumsmodel.f_stair2fee}}-->
|
|
275
|
+
<!-- </td>-->
|
|
276
|
+
<!-- <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">-->
|
|
277
|
+
<!-- 三阶气量合计: {{sumsmodel.f_stairamount3}}-->
|
|
278
|
+
<!-- </td>-->
|
|
279
|
+
<!-- <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">-->
|
|
280
|
+
<!-- 三阶气费合计: {{sumsmodel.f_stair3fee}}-->
|
|
281
|
+
<!-- </td>-->
|
|
282
282
|
</tr>
|
|
283
283
|
</table>
|
|
284
284
|
</div>
|
|
@@ -329,13 +329,7 @@
|
|
|
329
329
|
},{
|
|
330
330
|
f_oughtamount: 0,
|
|
331
331
|
f_oughtfee: 0,
|
|
332
|
-
f_collection:0
|
|
333
|
-
f_stairamount1:0,
|
|
334
|
-
f_stair1fee:0,
|
|
335
|
-
f_stairamount2:0,
|
|
336
|
-
f_stair2fee:0,
|
|
337
|
-
f_stairamount3:0,
|
|
338
|
-
f_stair3fee:0
|
|
332
|
+
f_collection:0
|
|
339
333
|
}),
|
|
340
334
|
showbottomsum:false //页面下方是否有合计: 默认为false, 在watch修改
|
|
341
335
|
}
|