manage-client 3.3.209 → 3.3.211-by

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.
Files changed (49) hide show
  1. package/build/dev-server.js +193 -190
  2. package/package.json +111 -111
  3. package/src/components/SellReport/yangchun/YcBusSummaryes.vue +229 -0
  4. package/src/components/sale/businessquery/ChargeQuery.vue +8 -8
  5. package/src/components/sale/businessquery/HandplanQuery.vue +33 -33
  6. package/src/components/sale/businessquery/WebHandplanQuery.vue +24 -4
  7. package/src/components/sale/common/PrintTableManage.vue +242 -0
  8. package/src/components/sale/config/exportConfig.js +0 -1
  9. package/src/components/sale/config/tableConfig.js +2 -1
  10. package/src/components/sale/filesquery/FireQuery.vue +20 -1
  11. package/src/components/webmeter/DrillData/GetNoMetereadData.vue +25 -1
  12. package/src/components/webmeter/newwebmeter/NewException/MeterExceptionList.vue +59 -94
  13. package/src/components/webmeter/report/ReportList.vue +2 -2
  14. package/src/filiale/bayan/config/DefaultPrint.js +6 -0
  15. package/src/filiale/bayan/config/exportConfig.js +2642 -0
  16. package/src/filiale/bayan/config/tableConfig.js +59 -0
  17. package/src/filiale/bayan/webmeter/GetNoMetereadData.vue +425 -0
  18. package/src/filiale/bayan/webmeter/LostContactAnalysisList.vue +719 -0
  19. package/src/filiale/bayan/webmeter/MeterExceptionList.vue +591 -0
  20. package/src/filiale/bayan/webmeter/NewGasStatistics.vue +665 -0
  21. package/src/filiale/bayan/webmeter/NewQueryInstruct.vue +650 -0
  22. package/src/filiale/bayan/webmeter/NewWebmeterSettlementAnalysis.vue +464 -0
  23. package/src/filiale/bayan/webmeter/RechargeList.vue +430 -0
  24. package/src/filiale/bayan/webmeter/ReportDataQuery.vue +343 -0
  25. package/src/filiale/bayan/webmeter/ReportList.vue +555 -0
  26. package/src/filiale/bayan/webmeter/UserLostContactAnalysis.vue +674 -0
  27. package/src/filiale/bayan/webmeterManage.js +26 -0
  28. package/src/filiale/kelai/feimin_style_kl.vue +1 -1
  29. package/src/filiale/macheng/ArrearsQuery.vue +11 -3
  30. package/src/filiale/macheng/config/exportConfig.js +5 -5
  31. package/src/filiale/yuncheng/ChangeMeterQuery.vue +17 -0
  32. package/src/filiale/yuncheng/MeterQuery.vue +995 -0
  33. package/src/filiale/yuncheng/config/exportConfig.js +4 -0
  34. package/src/filiale/yuncheng/sale.js +4 -0
  35. package/src/main.js +76 -68
  36. package/src/plugins/LodopFuncs.js +159 -124
  37. package/src/reportManage.js +5 -0
  38. package/src/saleManage.js +2 -0
  39. package/.gradle/7.4/checksums/checksums.lock +0 -0
  40. package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
  41. package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
  42. package/.gradle/7.4/executionHistory/executionHistory.bin +0 -0
  43. package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
  44. package/.gradle/7.4/fileChanges/last-build.bin +0 -0
  45. package/.gradle/7.4/fileHashes/fileHashes.bin +0 -0
  46. package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
  47. package/.gradle/7.4/gc.properties +0 -0
  48. package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  49. package/.gradle/file-system.probe +0 -0
@@ -0,0 +1,229 @@
1
+ <template>
2
+ <div class="basic-main" style="height: 100%">
3
+ <criteria-paged :model="model" :pager='false' v-ref:paged>
4
+ <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:criteria>
5
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
6
+ <div class="row">
7
+ <div class="col-sm-2 form-group" >
8
+ <label class="font_normal_body" for="startDate">开始日期:</label>
9
+ <datepicker id="startDate" placeholder="开始日期" style="width: 60%"
10
+ v-model="model.startDate"
11
+ :value.sync="model.startDate"
12
+ :disabled-days-of-Week="[]"
13
+ :format="'yyyy-MM-dd HH:mm:ss'"
14
+ :show-reset-button="reset">
15
+ </datepicker>
16
+ </div>
17
+ <div class="col-sm-2 form-group" >
18
+ <label class="font_normal_body" for="endDate">结束日期:</label>
19
+ <datepicker id="endDate" placeholder="结束日期" style="width: 60%"
20
+ v-model="model.endDate"
21
+ :value.sync="model.endDate"
22
+ :disabled-days-of-Week="[]"
23
+ :format="'yyyy-MM-dd HH:mm:ss'"
24
+ :show-reset-button="reset">
25
+ </datepicker>
26
+ </div><!--
27
+ <div class="col-sm-2 form-group">
28
+ <label class="font_normal_body">&nbsp;&nbsp;&nbsp;公司&nbsp;&nbsp;&nbsp; </label>
29
+ <right-tree @re-res="$parent.$parent.getRes" style="width: 60%"></right-tree>
30
+ </div>
31
+ <div class="col-sm-2 form-group">
32
+ <label class="font_normal_body">&nbsp;&nbsp;&nbsp;部门&nbsp;&nbsp;&nbsp; </label>
33
+ <res-select restype='department'
34
+ is-mul="false"
35
+ @res-select="$parent.$parent.getdep"
36
+ :parentresid="$parent.$parent.depresid"
37
+ :initresid='$parent.$parent.depid'>
38
+ </res-select>
39
+
40
+ </div>
41
+ <div class="col-sm-2 form-group">
42
+ <label class="font_normal_body">&nbsp;&nbsp;&nbsp;人员&nbsp;&nbsp;&nbsp; </label>
43
+ <res-select restype='user'
44
+ is-mul="false"
45
+ @res-select="$parent.$parent.getuser"
46
+ :parentresid="$parent.$parent.userresid"
47
+ :initresid='$parent.$parent.operatorid'>
48
+ </res-select>
49
+ </div>
50
+ -->
51
+ <res-select-group :show-component="$parent.$parent.resshow" :selectin="true" :initres="$parent.$parent.initres" :cascade =true @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
52
+ </div>
53
+ <div class="span" style = "float:right;">
54
+ <button class="button_search" @click="$parent.$parent.searchData()">查询</button>
55
+ <report-print id='gasprice' top='3cm' left='0' width='100%' height='100%' :preview="true"></report-print>
56
+ <report-excel id='gasprice'></report-excel>
57
+ <!-- <div style="float: right" class="button_spacing" :class="{'button_shrink_top':$parent.$parent.criteriaShow,-->
58
+ <!-- 'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.hidden()"></div>-->
59
+ </div>
60
+ <!-- <div class="row" v-show="$parent.$parent.criteriaShow">-->
61
+ <!-- <div class="col-sm-2 form-group">-->
62
+ <!-- <label class="font_normal_body">用户类型</label>-->
63
+ <!-- <v-select :value.sync="$parent.$parent.f_user_type"-->
64
+ <!-- v-model="$parent.$parent.f_user_type"-->
65
+ <!-- :options='$parent.$parent.user_type' placeholder='请选择'-->
66
+ <!-- condition="f_user_type = '{}'"-->
67
+ <!-- close-on-select></v-select>-->
68
+ <!-- </div>-->
69
+ <!-- &lt;!&ndash;<div class="col-sm-2 form-group">&ndash;&gt;-->
70
+ <!-- &lt;!&ndash;<label class="font_normal_body">收费状态</label>&ndash;&gt;-->
71
+ <!-- &lt;!&ndash;<v-select :value.sync="$parent.$parent.f_state" multiple&ndash;&gt;-->
72
+ <!-- &lt;!&ndash;v-model="$parent.$parent.f_state"&ndash;&gt;-->
73
+ <!-- &lt;!&ndash;:options='$parent.$parent.charge_state' placeholder='请选择'&ndash;&gt;-->
74
+ <!-- &lt;!&ndash;condition="f_state in {}"&ndash;&gt;-->
75
+ <!-- &lt;!&ndash;close-on-select></v-select>&ndash;&gt;-->
76
+ <!-- &lt;!&ndash;</div>&ndash;&gt;-->
77
+ <!-- </div>-->
78
+ </div>
79
+ </criteria>
80
+ <div partial='list' v-el:handcollect id='gasprice' style="overflow-y: scroll">
81
+ <table class='tableprint' style="margin: 0px auto">
82
+ <thead>
83
+ <tr>
84
+ <th :colspan='$parent.spans' style="font-weight: normal; text-align: left;">
85
+ <h3 style="text-align: center">收费结账汇总</h3>
86
+ </th>
87
+ </tr>
88
+ <tr>
89
+ <th :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
90
+ 开始时间:{{model.model.startDate}}&nbsp;&nbsp;&nbsp;
91
+ 结束时间:{{ model.model.endDate }}&nbsp;&nbsp;<br/>
92
+ <!--打印时间:{{{$parent.printTime}}}-->
93
+ 打印时间:{{$parent.printTime}}
94
+ <!--收费员:{{// $parent.operatorname}}-->
95
+ </th>
96
+ </tr>
97
+ <tr>
98
+ <th :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
99
+ <div>
100
+ <span style="font-weight: normal;text-align: center;margin:5px 15px" v-show="$parent.orgname">公司:{{$parent.orgname}}</span>
101
+ <span v-show="$parent.depname"> 部门:{{$parent.depname}}</span>
102
+ <span style="font-weight: normal;text-align: center;margin:5px 15px" v-show="$parent.operatorname">人员:{{$parent.operatorname}}</span>
103
+ </div>
104
+ </th>
105
+ </tr>
106
+ </thead>
107
+ <tr>
108
+ <td :colspan='$parent.spans' class="noborder">
109
+ {{{ model.data.substring(26,model.data.length-8) }}}
110
+ </td>
111
+ </tr>
112
+ <tfoot>
113
+ <tr style="text-align: left">
114
+ <th :colspan='Math.floor($parent.spans/3)'>财务审核:</th>
115
+ <th :colspan='Math.floor($parent.spans/3)'>收款审核:</th>
116
+ <th :colspan='Math.floor($parent.spans/3)'>收款员:</th>
117
+ </tr>
118
+ </tfoot>
119
+ </table>
120
+ {{{ $parent.reportStr}}}
121
+ </div>
122
+ </criteria-paged>
123
+ </div>
124
+ </template>
125
+
126
+ <script>
127
+ import { DataModel } from 'vue-client'
128
+ import co from 'co'
129
+
130
+ export default {
131
+ title: '收费结账汇总',
132
+ props: ['data'],
133
+ data () {
134
+ return {
135
+ printTime: this.$login.toStandardTimeString(),
136
+ depresid: [],
137
+ userresid: [],
138
+ f_orgid: this.$login.f.orgid,
139
+ f_depid: this.$login.f.depids,
140
+ // f_operatorid: this.$login.f.id,
141
+ operatorid: [],
142
+ depid: [],
143
+ orgname: '',
144
+ depname: '',
145
+ criteriaShow: false,
146
+ operatorname: '',
147
+ orgCondtionStr: '1=1',
148
+ f_user_type: '',
149
+ f_state:['有效'],
150
+ model: new DataModel('api/af-revenue/report/yc', {startDate: 'this.model.startDate', endDate: 'this.model.endDate',
151
+ f_orgid: 'this.model.f_orgid'}),
152
+ reportStr: null,
153
+ resshow:['company','department','operator'],
154
+ spans: 0,
155
+ initres: {
156
+ org: [this.$login.f.orgid],
157
+ dep: [],
158
+ user: []
159
+ }
160
+ }
161
+ },
162
+ ready () {
163
+ this.$refs.paged.$refs.criteria.model.startDate = this.$login.toStandardDateString() + ' 00:00:00'
164
+ this.$refs.paged.$refs.criteria.model.endDate = this.$login.toStandardDateString() + ' 23:59:59'
165
+ console.log(this.$login.f)
166
+ },
167
+ methods: {
168
+ searchData () {
169
+ this.$refs.paged.$refs.criteria.search()
170
+ },
171
+ selfSearch (args) {
172
+ this.printTime = this.$login.toStandardTimeString()
173
+ let orgcondition = '1=1'
174
+ let orgstr = this.orgCondtionStr
175
+ orgcondition = orgcondition + orgstr
176
+ if (this.f_user_type && this.f_user_type[0]) {
177
+ orgcondition += ` and f_user_type = '${ this.f_user_type} '`
178
+ }
179
+ this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
180
+ this.$refs.paged.search(args)
181
+ },
182
+
183
+ hidden() {
184
+ this.criteriaShow = !this.criteriaShow
185
+ },
186
+ getRes (condition, obj) {
187
+ this.orgCondtionStr = condition
188
+ this.orgname = obj.orgnames[0]
189
+ this.depname = obj.depnames[0]
190
+ console.log(obj,"========")
191
+ this.operatorname = obj.operatornames[0]
192
+ },
193
+ getdep (obj, val) {
194
+ this.depname = val[0]
195
+ this.userresid = obj
196
+ this.f_depid = obj
197
+ },
198
+ getuser ( obj, val) {
199
+ this.operatorname = val[0]
200
+ this.f_operatorid = obj
201
+ }
202
+ },
203
+ watch: {
204
+ 'model.data' (val) {
205
+ let len=0
206
+ let a=val.split('</tr>')
207
+ for(let i=0;i<a.length;i++){
208
+ if(a[i].split('</td>').length-1>len){
209
+ len=a[i].split('</td>').length-1
210
+ }
211
+ }
212
+ this.spans = len
213
+ }
214
+ },
215
+ computed: {
216
+ charge_state() {
217
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('收费状态')]
218
+ },
219
+ user_type () {
220
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('用户类型')]
221
+ }
222
+ }
223
+ }
224
+ </script>
225
+ <style scoped>
226
+ .noborder{
227
+ border: none;
228
+ }
229
+ </style>
@@ -32,9 +32,9 @@
32
32
  condition="f_userinfo_code = '{}' " placeholder="客户编号">
33
33
  </div>
34
34
  <div class="col-sm-2 form-group">
35
- <label class="font_normal_body" title="旧客户编号">档案编号</label>
36
- <input type="text" style="width:60%" class="input_search" v-model="model.f_olduserinfo_code"
37
- condition="f_olduserinfo_code = '{}' " placeholder="档案编号">
35
+ <label class="font_normal_body">表&emsp;&emsp;号</label>
36
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"
37
+ condition="f_meternumber = '{}'" placeholder='表号'>
38
38
  </div>
39
39
 
40
40
  <div class="span" style="float:right;">
@@ -66,6 +66,11 @@
66
66
  </div>
67
67
  <div class="row" v-show="$parent.$parent.criteriaShow">
68
68
  <res-select-group :show-component="$parent.$parent.resshow" :initres="$parent.$parent.initres" :cascade =true @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
69
+ <div class="col-sm-2 form-group">
70
+ <label class="font_normal_body" title="旧客户编号">档案编号</label>
71
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_olduserinfo_code"
72
+ condition="f_olduserinfo_code = '{}' " placeholder="档案编号">
73
+ </div>
69
74
  <div class="col-sm-2 form-group">
70
75
  <label class="font_normal_body">客户名称</label>
71
76
  <input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
@@ -170,11 +175,6 @@
170
175
  <input type="text" style="width:60%" class="input_search" v-model="model.f_user_id"
171
176
  condition="f_user_id = '{}'" placeholder='表编号'>
172
177
  </div>
173
- <div class="col-sm-2 form-group">
174
- <label class="font_normal_body">表&emsp;&emsp;号</label>
175
- <input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"
176
- condition="f_meternumber = '{}'" placeholder='表号'>
177
- </div>
178
178
  <div class="col-sm-2 form-group">
179
179
  <label class="font_normal_body">卡&emsp;&emsp;号</label>
180
180
  <input type="text" style="width:60%" class="input_search" v-model="model.f_card_id"
@@ -34,11 +34,11 @@
34
34
  <button class="button_search button_spacing" @click="search()">查询</button>
35
35
  <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
36
36
 
37
- <button class="btn btn-default" @click="$parent.$parent.Fileinput()">反盘导入</button>
38
- <export-excel :data="$parent.$parent.getCondition"
39
- :field="$parent.$parent.getBankfield" :header="$parent.$parent.other"
40
- sqlurl="api/af-revenue/logic/openapi/exportfile" sql-name="newhandplanQuery" template-name='送盘导出' btn-name="送盘导出"
41
- :choose-col="true"></export-excel>
37
+ <!-- <button class="btn btn-default" @click="$parent.$parent.Fileinput()">反盘导入</button>-->
38
+ <!-- <export-excel :data="$parent.$parent.getCondition"-->
39
+ <!-- :field="$parent.$parent.getBankfield" :header="$parent.$parent.other"-->
40
+ <!-- sqlurl="api/af-revenue/logic/openapi/exportfile" sql-name="newhandplanQuery" template-name='送盘导出' btn-name="送盘导出"-->
41
+ <!-- :choose-col="true"></export-excel>-->
42
42
  <export-excel :data="$parent.$parent.getCondition" :footer="$parent.$parent.footer"
43
43
  :field="$parent.$parent.getfield" :header="$parent.$parent.other"
44
44
  sqlurl="api/af-revenue/logic/openapi/exportfile" sql-name="handplanQuery" template-name='抄表查询导出'
@@ -295,14 +295,14 @@
295
295
  condition="f_accounts_state = '{}'"
296
296
  close-on-select></v-select>
297
297
  </div>
298
- <div class="col-sm-2 form-group">
299
- <label class="font_normal_body">&ensp;壁挂炉&ensp;</label>
300
- <v-select :value.sync="model.f_bgl"
301
- v-model="model.f_bgl"
302
- :options='$parent.$parent.bgl' placeholder='请选择'
303
- condition="f_bgl = '{}'"
304
- close-on-select></v-select>
305
- </div>
298
+ <!-- <div class="col-sm-2 form-group">-->
299
+ <!-- <label class="font_normal_body">&ensp;壁挂炉&ensp;</label>-->
300
+ <!-- <v-select :value.sync="model.f_bgl"-->
301
+ <!-- v-model="model.f_bgl"-->
302
+ <!-- :options='$parent.$parent.bgl' placeholder='请选择'-->
303
+ <!-- condition="f_bgl = '{}'"-->
304
+ <!-- close-on-select></v-select>-->
305
+ <!-- </div>-->
306
306
  </div>
307
307
  </div>
308
308
  </criteria>
@@ -360,9 +360,9 @@
360
360
  <th>
361
361
  <nobr>用气量</nobr>
362
362
  </th>
363
- <th>
364
- <nobr>违约金</nobr>
365
- </th>
363
+ <!-- <th>-->
364
+ <!-- <nobr>违约金</nobr>-->
365
+ <!-- </th>-->
366
366
  <th>
367
367
  <nobr>用气金额</nobr>
368
368
  </th>
@@ -392,14 +392,14 @@
392
392
  <th>
393
393
  <nobr>收费人员</nobr>
394
394
  </th>
395
- <th>
396
- <!-- <nobr>冲正时间</nobr>-->
397
- <data-order field="f_corrhand_date" name="冲正时间"
398
- :order.sync="$parent.$parent.$parent.orderFields.f_corrhand_date"></data-order>
399
- </th>
400
- <th>
401
- <nobr>冲正人员</nobr>
402
- </th>
395
+ <!-- <th>-->
396
+ <!--&lt;!&ndash; <nobr>冲正时间</nobr>&ndash;&gt;-->
397
+ <!-- <data-order field="f_corrhand_date" name="冲正时间"-->
398
+ <!-- :order.sync="$parent.$parent.$parent.orderFields.f_corrhand_date"></data-order>-->
399
+ <!-- </th>-->
400
+ <!-- <th>-->
401
+ <!-- <nobr>冲正人员</nobr>-->
402
+ <!-- </th>-->
403
403
  <th>
404
404
  <!-- <nobr>下发日期</nobr>-->
405
405
  <data-order field="f_hand_date" name="下发日期"
@@ -521,9 +521,9 @@
521
521
  <td style="text-align: center;">
522
522
  <nobr>{{row.f_oughtamount}}</nobr>
523
523
  </td>
524
- <td style="text-align: center;">
525
- <nobr>{{row.overdue}}</nobr>
526
- </td>
524
+ <!-- <td style="text-align: center;">-->
525
+ <!-- <nobr>{{row.overdue}}</nobr>-->
526
+ <!-- </td>-->
527
527
  <td style="text-align: center;">
528
528
  <nobr>{{row.f_oughtfee}}</nobr>
529
529
  </td>
@@ -551,12 +551,12 @@
551
551
  <td style="text-align: center;">
552
552
  <nobr>{{row.f_sell_operator}}</nobr>
553
553
  </td>
554
- <td style="text-align: center;">
555
- <nobr>{{row.f_corrhand_date}}</nobr>
556
- </td>
557
- <td style="text-align: center;">
558
- <nobr>{{row.f_corrhand_operator}}</nobr>
559
- </td>
554
+ <!-- <td style="text-align: center;">-->
555
+ <!-- <nobr>{{row.f_corrhand_date}}</nobr>-->
556
+ <!-- </td>-->
557
+ <!-- <td style="text-align: center;">-->
558
+ <!-- <nobr>{{row.f_corrhand_operator}}</nobr>-->
559
+ <!-- </td>-->
560
560
  <td style="text-align: center;">
561
561
  <nobr>{{row.f_hand_date}}</nobr>
562
562
  </td>
@@ -149,9 +149,6 @@
149
149
  condition="f_meter_brand in {}"
150
150
  close-on-select></v-select>
151
151
  </div>
152
-
153
-
154
-
155
152
  <div class="col-sm-2 form-group">
156
153
  <label class="font_normal_body" >抄&nbsp;&nbsp;表&nbsp;员</label>
157
154
  <v-select :value.sync="model.f_inputtor"
@@ -181,6 +178,19 @@
181
178
  close-on-select
182
179
  condition="f_meter_book_num in {}"></v-select>
183
180
  </div>
181
+ <div class="col-sm-2 form-group">
182
+ <label class="font_normal_body">阀门状态</label>
183
+ <v-select :value.sync="model.f_valve_state"
184
+ v-model="model.f_valve_state"
185
+ :options='$parent.$parent.valvestate' placeholder='阀门状态'
186
+ condition="f_valve_state = '{}'"
187
+ close-on-select></v-select>
188
+ </div>
189
+ <div class="col-sm-2 form-group">
190
+ <label class="font_normal_body">余额小于</label>
191
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_curbalance"
192
+ condition="f_curbalance < '{}' " placeholder="本期余额小于">
193
+ </div>
184
194
  </div>
185
195
  </div>
186
196
  </criteria>
@@ -209,6 +219,9 @@
209
219
  <th>
210
220
  <nobr>客户手机</nobr>
211
221
  </th>
222
+ <th>
223
+ <nobr>阀门状态</nobr>
224
+ </th>
212
225
  <th>
213
226
  <nobr>表号</nobr>
214
227
  </th>
@@ -327,6 +340,10 @@
327
340
  <td style="text-align: center;">
328
341
  <nobr>{{row.phone}}</nobr>
329
342
  </td>
343
+ <td style="text-align: center;">
344
+ <nobr>{{row.f_valve_state}}</nobr>
345
+ </td>
346
+
330
347
  <td style="text-align: center;">
331
348
  <nobr>{{row.f_meternumber}}</nobr>
332
349
  </td>
@@ -891,7 +908,7 @@
891
908
  },
892
909
  getfield() {
893
910
  return {
894
- 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_olduserinfo_code': '档案编号', 'f_address': '客户地址', 'f_zones': '片区', 'phone': '客户手机',
911
+ 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_olduserinfo_code': '档案编号', 'f_address': '客户地址', 'f_zones': '片区', 'phone': '客户手机', 'f_valve_state': '阀门状态',
895
912
  'f_last_tablebase': '上期底数', 'f_tablebase': '本期底数', 'f_oughtamount': '用气量', 'f_oughtfee': '用气金额','f_meternumber': '表号', 'ym_data': '数据年月',
896
913
  'f_balance': '上期余额', 'f_curbalance': '本期余额', 'f_hand_date': '抄表日期','f_meter_state': '抄表状态', 'f_hand_state': '记录状态',
897
914
  'f_inputtor': '抄表员', 'f_book_slice_area': '表册片区', 'f_user_type': '客户类型', 'f_gasproperties': '用气性质', 'f_operator': '操作员', 'f_depname': '部门', 'f_orgname': '公司',
@@ -911,6 +928,9 @@
911
928
  handstate() {
912
929
  return [{label: '全部', value: ''}, ...this.$appdata.getParam('表单状态')]
913
930
  },
931
+ valvestate() {
932
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('阀门状态')]
933
+ },
914
934
  pricetypes() {
915
935
  return [{label: '全部', value: ''}, ...this.$appdata.getParam('气价类型')]
916
936
  },