sale-client 3.6.147 → 3.6.149

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 (27) hide show
  1. package/build/dev-server.js +1 -1
  2. package/package.json +2 -2
  3. package/src/components/FilesManage/MeterinfoTest.vue +14 -1
  4. package/src/components/FilesManage/UserEssentialInfoTest.vue +6 -2
  5. package/src/components/FilesManageNew/UserEssentialInfoTest.vue +6 -3
  6. package/src/components/charge/HandList.vue +1 -1
  7. package/src/components/common/userinfo_detail/ic_detail/HandQueryUser.vue +1 -1
  8. package/src/components/common/userinfo_detail/ic_detail/WebHandQueryUser.vue +1 -1
  9. package/src/components/revenue/changeInsurance/InsuranceAdd.vue +8 -3
  10. package/src/components/revenue/changeInsurance/InsuranceChargesDetails.vue +91 -5
  11. package/src/components/revenue/comprehen/ComprehenOperation/newchangemeter/ChangeMeter.vue +8 -1
  12. package/src/components/revenue/comprehen/StairPrice/GasPriceManage.vue +2 -1
  13. package/src/components/revenue/comprehen/StairPrice/GasPriceUser.vue +2 -1
  14. package/src/components/revenue/comprehen/insurance/insuranceGuanL.vue +13 -1
  15. package/src/components/revenue/machineHandManage/machineHand.vue +0 -4
  16. package/src/filiale/dongguan/components/common/userinfo_detail/ic_detail/HandQueryUser.vue +1 -1
  17. package/src/filiale/liaoyuan/comprehen/StairPrice/GasPriceList.vue +6 -5
  18. package/src/filiale/lixianV3/ic_detail/HandQueryUser.vue +1 -1
  19. package/src/filiale/lixianV3/iotHand.vue +34 -1
  20. package/src/filiale/macheng/ic_detail/HandQueryUser.vue +1 -1
  21. package/src/filiale/macheng/ic_detail/WebHandQueryUser.vue +1 -1
  22. package/src/filiale/qianneng/revenue/common/ic_detail/HandQueryUser.vue +1 -1
  23. package/src/filiale/tongchuan/ChangeMeter.vue +10 -0
  24. package/src/filiale/yuncheng/ChangeMeter.vue +1126 -0
  25. package/src/filiale/yuncheng/sale.js +6 -0
  26. package/src/main.js +1 -1
  27. package/src/plugins/CancelService.js +4 -4
@@ -1,5 +1,5 @@
1
1
  var path = require('path')
2
- const [ serverRul, localUrl ] = ['http://121.36.60.63:8300/', 'http://121.36.60.63:8300/']
2
+ const [ serverRul, localUrl ] = ['https://qnjtkf.cn:7400/', 'https://qnjtkf.cn:7400/']
3
3
  var merge = require('webpack-merge')
4
4
  var baseConfig = require('./webpack.dev.conf')
5
5
  var devConfig = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.6.147",
3
+ "version": "3.6.149",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -24,7 +24,7 @@
24
24
  "qrcodejs2": "0.0.2",
25
25
  "vue": "^1.0.17",
26
26
  "webpack-dev-server": "^2.11.5",
27
- "vue-client": "1.24.113",
27
+ "vue-client": "1.24.116",
28
28
  "yarn": "^1.22.10"
29
29
  },
30
30
  "devDependencies": {
@@ -240,7 +240,7 @@
240
240
  :options='meterbookoptions' placeholder='抄表册'
241
241
  close-on-select></v-select>
242
242
  </div>
243
- <div class="col-sm-4 form-group" v-show="true" :class="[$m.f_install_date.required ? 'has-error' : '']">
243
+ <div class="col-sm-4 form-group" v-if="config.f_install_date" :class="[$m.f_install_date.required ? 'has-error' : '']">
244
244
  <input type="text" v-model="$refs.f_install_date.value" v-show="false" v-validate:f_install_date='{required: true }'>
245
245
  <label for="f_install_date" class="font_normal_body">&ensp;安装日期</label>
246
246
  <datepicker style="width:60%" id="startDate" placeholder="安装日期" width='100%'
@@ -252,6 +252,18 @@
252
252
  :show-reset-button="true">
253
253
  </datepicker>
254
254
  </div>
255
+ <div class="col-sm-4 form-group" v-if="!config.f_install_date" :class="[$m.f_install_date.required ? 'has-error' : '']">
256
+ <input type="text" v-model="$refs.f_install_date.value" v-show="false">
257
+ <label for="f_install_date" class="font_normal_body">&ensp;安装日期</label>
258
+ <datepicker style="width:60%" id="startDate" placeholder="安装日期" width='100%'
259
+ v-model="row.f_install_date"
260
+ :value.sync="row.f_install_date"
261
+ class="datepicker"
262
+ v-ref:f_install_date
263
+ :format="'yyyy-MM-dd HH:mm:ss'"
264
+ :show-reset-button="true">
265
+ </datepicker>
266
+ </div>
255
267
  <div class="col-sm-4 form-group">
256
268
  <label for="f_adjustable" class="font_normal_body">&ensp;调&ensp;压&ensp;箱</label>
257
269
  <v-select :value.sync="row.f_adjustable" :options='adjustables' placeholder='调压箱' close-on-select
@@ -539,6 +551,7 @@
539
551
  // 卡控流量计相关字段显示
540
552
  stuckFlowmeterShow: false,
541
553
  overduesetShow: true,
554
+ f_install_date: true,
542
555
  open_way: '指令开户'
543
556
  },
544
557
  mapShow: false,
@@ -44,13 +44,13 @@
44
44
  </div>
45
45
  <div style="" class="col-sm-8 form-group"
46
46
  :class="[$v.f_idnumber2.identityCardValid ? 'has-error' : '']"
47
- v-if="baseinfo.base.f_credentials === '身份证'">
47
+ v-if="baseinfo.base.f_credentials === '身份证' && config.f_idnumber ">
48
48
  <label for="f_idnumber" class="font_normal_body">*证件号码</label>
49
49
  <input type="text" maxlength="18" v-model="baseinfo.base.f_idnumber"
50
50
  v-validate:f_idnumber2='{identityCardValid: true}' class="input_search" style="width:80%"
51
51
  placeholder="证件号码">
52
52
  </div>
53
- <div style="" class="col-sm-8 form-group" v-if="baseinfo.base.f_credentials !== '身份证'">
53
+ <div style="" class="col-sm-8 form-group" v-if="baseinfo.base.f_credentials !== '身份证' || !config.f_idnumber ">
54
54
  <label class="font_normal_body">&ensp;证件号码</label>
55
55
  <input type="text" v-model="baseinfo.base.f_idnumber" class="input_search" style="width:80%"
56
56
  placeholder="证件号码">
@@ -234,6 +234,7 @@
234
234
  let result = await http.load('GET', `rs/vue/EditUserState.json`, {}, {resolveMsg: null, rejectMsg: null})
235
235
  console.log(result.data.EditUserState)
236
236
  self.edituserstate = result.data.EditUserState
237
+ self.config.f_idnumber = result.data.f_idnumber
237
238
  } catch (e) {
238
239
  console.log(e)
239
240
  }
@@ -246,6 +247,9 @@
246
247
  return {
247
248
  showselectaddress: false,
248
249
  site: '',
250
+ config: {
251
+ f_idnumber: true
252
+ },
249
253
  showphone: false,
250
254
  areas: [],
251
255
  streets: [],
@@ -36,14 +36,14 @@
36
36
  </div>
37
37
  <div style="" class="col-sm-8 form-group"
38
38
  :class="[$v.f_idnumber2.identityCardValid ? 'has-error' : '']"
39
- v-if="baseinfo.base.f_credentials === '身份证'||baseinfo.base.f_credentials[0] === '身份证'">
39
+ v-if="(baseinfo.base.f_credentials === '身份证'||baseinfo.base.f_credentials[0] === '身份证') && config.f_idnumber ">
40
40
  <label for="f_idnumber" class="font_normal_body color-red">*证件号码</label>
41
41
  <input type="text" maxlength="18" v-model="baseinfo.base.f_idnumber"
42
42
  v-validate:f_idnumber2='{identityCardValid: true}' class="input_search" style="width:80%"
43
43
  placeholder="证件号码">
44
44
  </div>
45
45
  <div style="" class="col-sm-8 form-group"
46
- v-if="baseinfo.base.f_credentials !== '身份证'&&baseinfo.base.f_credentials[0] !== '身份证'">
46
+ v-if="(baseinfo.base.f_credentials !== '身份证'&&baseinfo.base.f_credentials[0] !== '身份证')|| !config.f_idnumber ">
47
47
  <label class="font_normal_body">&ensp;证件号码</label>
48
48
  <input type="text" v-model="baseinfo.base.f_idnumber" class="input_search" style="width:80%"
49
49
  placeholder="证件号码">
@@ -222,6 +222,7 @@
222
222
  self.config.f_print_dh = result.data.f_print_dh
223
223
  self.baseinfo.base.f_print_dh = (self.baseinfo.base.f_print_dh && self.baseinfo.base.f_print_dh != '' && self.baseinfo.base.f_print_dh != '否') ? self.baseinfo.base.f_print_dh : result.data.f_print_dh
224
224
  self.edituserstate = result.data.EditUserState
225
+ self.config.f_idnumber = result.data.f_idnumber
225
226
  } catch (e) {
226
227
  console.log(e)
227
228
  }
@@ -237,7 +238,9 @@
237
238
  areas: [],
238
239
  streets: [],
239
240
  residentials: [],
240
- config: {},
241
+ config: {
242
+ f_idnumber: true,
243
+ },
241
244
  inputtores: this.$appdata.getParam('抄表员'),
242
245
  credentials: this.$appdata.getParam('证件类型'),
243
246
  costtypes: this.$appdata.getParam('缴费类型'),
@@ -34,7 +34,7 @@
34
34
  <!--</div>-->
35
35
  <div class="row">
36
36
  <label class = "col-sm-4">用气量:</label>
37
- <pre style="text-align:left" class = "col-sm-2">{{row.f_oughtamount}}</pre>
37
+ <span style="text-align:left" class = "col-sm-2">{{row.f_oughtamount}}</span>
38
38
  <label class = "col-sm-4">用气金额:</label>
39
39
  <span class = "col-sm-2" style="text-align:left">{{row.f_oughtfee}}</span>
40
40
  </div>
@@ -155,7 +155,7 @@
155
155
  二阶用气金额合计:&emsp;{{model.sums.f_stair2fee}}
156
156
  </td>
157
157
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
158
- 三阶用气金额合计:&emsp;{{model.sums.f_stair3amount}}
158
+ 三阶用气量合计:&emsp;{{model.sums.f_stair3amount}}
159
159
  </td>
160
160
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
161
161
  三阶用气金额合计:&emsp;{{model.sums.f_stair3fee}}
@@ -148,7 +148,7 @@
148
148
  二阶用气金额合计:&emsp;{{model.sums.f_stair2fee}}
149
149
  </td>
150
150
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
151
- 三阶用气金额合计:&emsp;{{model.sums.f_stair3amount}}
151
+ 三阶用气量合计:&emsp;{{model.sums.f_stair3amount}}
152
152
  </td>
153
153
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
154
154
  三阶用气金额合计:&emsp;{{model.sums.f_stair3fee}}
@@ -145,11 +145,16 @@
145
145
  <input type="text" v-model="model.f_ok_number" style="width: 60%"
146
146
  class="input_search">
147
147
  </div>
148
- <div class="col-sm-6" v-show="false">
148
+ <div class="col-sm-6 form-group">
149
+ <label class="font_normal_body">&emsp;&emsp;&emsp;&emsp;保险单号</label>
150
+ <input type="text" v-model="model.f_ins_number" style="width: 60%"
151
+ class="input_search">
152
+ </div>
153
+ <div class="col-sm-6 form-group" v-show="false">
149
154
  <label class="font_normal_body">&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;公司 </label>
150
155
  <right-tree @re-res="getRes"></right-tree>
151
156
  </div>
152
- <div class="col-sm-6">
157
+ <div class="col-sm-6 form-group">
153
158
  <label class="font_normal_body">&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;部门</label>
154
159
  <res-select restype='department'
155
160
  :is-mul="mul"
@@ -158,7 +163,7 @@
158
163
  :initresid='depid'>
159
164
  </res-select>
160
165
  </div>
161
- <div class="col-sm-6">
166
+ <div class="col-sm-6 form-group">
162
167
  <label class="font_normal_body">&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;人员</label>
163
168
  <res-select restype='user'
164
169
  @res-select="getuser"
@@ -34,13 +34,17 @@
34
34
  </div>
35
35
  <div style="float: right">
36
36
  <button class="button_search" @click="search()">查 询</button>
37
+ <export-excel :data="$parent.$parent.getCondition"
38
+ :field="$parent.$parent.getExportField"
39
+ sqlurl="rs/logic/saleExport" sql-name="getInsuranceChargesList" template-name='保险明细查询导出'
40
+ :choose-col="true"></export-excel>
37
41
  <div class="button_spacing" style="float:right;"
38
42
  :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
39
43
  @click="$parent.$parent.hidden()"></div>
40
44
  </div>
41
45
  </div>
42
46
  <div class="row" v-show="$parent.$parent.criteriaShow" >
43
- <res-select-group :initres="$parent.$parent.initres" :show-component="['company','department']" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
47
+ <res-select-group :initres="$parent.$parent.initres" :show-component="['company','department','operator']" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
44
48
  <div class="col-sm-2 form-group">
45
49
  <label class="font_normal_body">购买年限</label>
46
50
  <input type="text" class="input_search" style="width: 60%" v-model="model.f_salecount"
@@ -71,7 +75,7 @@
71
75
  <nobr>客户编号</nobr>
72
76
  </th>
73
77
  <th>
74
- <nobr>客户姓名</nobr>
78
+ <nobr>投保人</nobr>
75
79
  </th>
76
80
  <th>
77
81
  <nobr>客户地址</nobr>
@@ -113,7 +117,7 @@
113
117
  <nobr>缴费时间</nobr>
114
118
  </th>
115
119
  <th>
116
- <nobr>确认书编号</nobr>
120
+ <nobr>保险单号</nobr>
117
121
  </th>
118
122
  <th>
119
123
  <nobr>险种</nobr>
@@ -124,6 +128,9 @@
124
128
  <th>
125
129
  <nobr>备注信息</nobr>
126
130
  </th>
131
+ <th>
132
+ <nobr>变更记录</nobr>
133
+ </th>
127
134
  </template>
128
135
  <template partial='body'>
129
136
  <td style="text-align: center;">
@@ -177,7 +184,7 @@
177
184
  <nobr>{{row.f_operate_date}}</nobr>
178
185
  </td>
179
186
  <td style="text-align: center;">
180
- <nobr>{{row.f_ok_number}}</nobr>
187
+ <nobr>{{row.f_ins_number}}</nobr>
181
188
  </td>
182
189
  <td style="text-align: center;">
183
190
  <nobr>{{row.f_insurance_type}}</nobr>
@@ -188,9 +195,42 @@
188
195
  <td style="text-align: center;">
189
196
  <nobr>{{row.f_comments}}</nobr>
190
197
  </td>
198
+ <td style="text-align: center;">
199
+ <nobr>
200
+ <span @click="$parent.$parent.$parent.changeDetail(row)"><a><b>变更记录</b></a></span>
201
+ </nobr>
202
+ </td>
191
203
  </template>
192
204
  </data-grid>
193
205
  </criteria-paged>
206
+ <modal :show.sync="insChnageDetailShow" v-ref:insChnageDetailShow backdrop="false" class="insChnageDetailShow">
207
+ <header slot="modal-header" class="modal-header" style="text-align: center">
208
+ <h4 class="modal-title">保险变更记录</h4>
209
+ </header>
210
+ <article slot="modal-body" class="modal-body">
211
+ <data-grid class="list_area table_sy" :model="insChangeHistorys" partial='list'>
212
+ <template partial='head'>
213
+ <th style="text-align: center"><nobr>序号</nobr></th>
214
+ <th style="text-align: center"><nobr>更改内容</nobr></th>
215
+ <th style="text-align: center"><nobr>更改前</nobr></th>
216
+ <th style="text-align: center"><nobr>更改后</nobr></th>
217
+ <th style="text-align: center"><nobr>变更时间</nobr></th>
218
+ <th style="text-align: center"><nobr>变更人</nobr></th>
219
+ </template>
220
+ <template partial='body'>
221
+ <td style="text-align: center">{{$index+1}}</td>
222
+ <td style="text-align: center"><nobr>{{row.f_field_name}}</nobr></td>
223
+ <td style="text-align: center"><nobr>{{row.f_used_content}}</nobr></td>
224
+ <td style="text-align: center"><nobr>{{row.f_new_content}}</nobr></td>
225
+ <td style="text-align: center"><nobr>{{row.f_operate_date}}</nobr></td>
226
+ <td style="text-align: center"><nobr>{{row.f_operator}}</nobr></td>
227
+ </template>
228
+ </data-grid>
229
+ </article>
230
+ <footer slot="modal-footer" class="modal-footer">
231
+ <button type="button" class="btn btn-default" @click='insChnageDetailShow = false'>关闭</button>
232
+ </footer>
233
+ </modal>
194
234
  </div>
195
235
  </div>
196
236
  </div>
@@ -218,8 +258,32 @@
218
258
  model: new PagedList('rs/sql/getInsuranceChargesList', 20),
219
259
  // 控制查询条件显示
220
260
  criteriaShow: false,
261
+ condition: '1=1',
221
262
  // 公司下拉
222
263
  curorgid: [this.$login.f.orgid],
264
+ insChangeHistorys: {rows: []},
265
+ insChnageDetailShow: false,
266
+ getExportField: {
267
+ 'f_userinfo_code': '客户编号',
268
+ 'f_user_name': '投保人',
269
+ 'f_address': '客户地址',
270
+ 'f_idnumber': '身份证号',
271
+ 'f_user_phone': '电话',
272
+ 'f_fee_type': '费用类型',
273
+ 'f_buy_date': '购买日期',
274
+ 'f_expiration_date': '到期日期',
275
+ 'f_shengxiao_date': '保费开始日期',
276
+ 'f_last_insexpiration_date': '上期保费截至日期',
277
+ 'f_days': '到期剩余天数',
278
+ 'f_money': '金额',
279
+ 'f_payment': '收款方式',
280
+ 'f_state': '状态',
281
+ 'f_operate_date': '缴费时间',
282
+ 'f_ins_number': '保险单号',
283
+ 'f_insurance_type': '险种',
284
+ 'f_salecount': '购买年限',
285
+ 'f_comments': '备注信息'
286
+ },
223
287
  f_filialeid: this.$login.f.orgid,
224
288
  percent: 0
225
289
  }
@@ -228,6 +292,21 @@
228
292
  this.$refs.paged.$refs.criteria.search()
229
293
  },
230
294
  methods: {
295
+ async changeDetail (row) {
296
+ this.insChangeHistorys.rows = []
297
+ let data = {
298
+ tablename: `t_ins_change`,
299
+ items: '*',
300
+ condition: `1=1 and f_ins_id = '${row.id}'`,
301
+ orderitem: 'f_ins_id desc'
302
+ }
303
+ let urlParam = 'rs/sql/singleTable_OrderBy'
304
+ let res = await this.$resetpost(urlParam, {data: data}, {rejectMsg: '获取变更记录出错', resolveMsg: null})
305
+ if (res) {
306
+ this.insChangeHistorys.rows = res.data
307
+ }
308
+ this.insChnageDetailShow = true
309
+ },
231
310
  hidden () {
232
311
  this.criteriaShow = !this.criteriaShow
233
312
  },
@@ -246,10 +325,17 @@
246
325
  } else {
247
326
  args.condition = `${args.condition}` + this.orgCondtionStr
248
327
  }
328
+ this.condition = args.condition
249
329
  this.model.search(args.condition, args.model)
250
330
  }
251
331
  },
252
- computed: {}
332
+ computed: {
333
+ getCondition () {
334
+ return {
335
+ condition: this.condition
336
+ }
337
+ }
338
+ }
253
339
  }
254
340
  </script>
255
341
  <style>
@@ -17,9 +17,15 @@
17
17
  close-on-select clear-button>
18
18
  </v-select>
19
19
  </div>
20
- <div class="col-sm-4 form-group">
20
+ <div class="col-sm-4 form-group" v-if="!config.f_change_operator">
21
+ <label for="f_change_operator" class=" font_normal_body">换&ensp;表&ensp;人</label>
22
+ <input class="input_search" style="width:60%" type="text" v-model="model.f_change_operator"
23
+ placeholder="换表人">
24
+ </div>
25
+ <div class="col-sm-4 form-group" v-if="config.f_change_operator" :class="[$v.f_change_operator.required ? 'has-error' : '']">
21
26
  <label for="f_change_operator" class=" font_normal_body">换&ensp;表&ensp;人</label>
22
27
  <input class="input_search" style="width:60%" type="text" v-model="model.f_change_operator"
28
+ v-validate:f_change_operator="{required: true }"
23
29
  placeholder="换表人">
24
30
  </div>
25
31
 
@@ -413,6 +419,7 @@ export default {
413
419
  payment: '现金缴费',
414
420
  open_way: '指令开户',
415
421
  hasArrearsChange: false, // 是否可以有欠费换表
422
+ f_change_operator: false, // 换表人是否必填
416
423
  castInt: true,
417
424
  dispatch: false, // 是否派工
418
425
  showupload: true, //
@@ -8,7 +8,7 @@
8
8
  <price-record v-show="changeView" v-ref:update :row="row" @select-changed="selected2"></price-record>
9
9
  </div>
10
10
  <div class="binary-right" v-if="usershow" :style="{width: usershow ? '50%' : 'auto'}">
11
- <gasprice-user :priceid="priceid" :pricename="pricename" :priceorgid="priceorgid"></gasprice-user>
11
+ <gasprice-user :priceid="priceid" :islowincome="f_islow_income" :pricename="pricename" :priceorgid="priceorgid"></gasprice-user>
12
12
  </div>
13
13
  </div>
14
14
  <div v-if="!listpage">
@@ -46,6 +46,7 @@ export default {
46
46
  parentData: '',
47
47
  isdetail: false,
48
48
  priceid: '',
49
+ f_islow_income: '',
49
50
  pricename: '',
50
51
  priceorgid: '',
51
52
  gasPriceShow: false,
@@ -264,7 +264,7 @@
264
264
  blodid: '临时id' + Date.now()
265
265
  }
266
266
  },
267
- props: ['priceid', 'pricename', 'priceorgid'],
267
+ props: ['priceid', 'pricename', 'priceorgid','islowincome'],
268
268
  ready () {
269
269
  this.search()
270
270
  this.getfield = this.config.excelHeaders
@@ -365,6 +365,7 @@
365
365
  param.f_price_name_old = this.model.rows[0].f_price_name
366
366
  param.f_price_id_old = this.model.rows[0].f_price_id
367
367
  param.f_stairprice_id_old = this.model.rows[0].f_stairprice_id
368
+ param.f_islow_income = this.islowincome
368
369
  let res = await this.$resetpost('rs/logic/pricechangeall', {data: param}, {resolveMsg: '更新成功', rejectMsg: '更新失败'})
369
370
  this.$showMessage(`成功批量修改了${res.data}位用户的气价`)
370
371
  } else {
@@ -60,7 +60,7 @@
60
60
  <nobr>客户编号</nobr>
61
61
  </th>
62
62
  <th>
63
- <nobr>客户姓名</nobr>
63
+ <nobr>投保人</nobr>
64
64
  </th>
65
65
  <th>
66
66
  <nobr>客户电话</nobr>
@@ -207,6 +207,18 @@
207
207
  </v-select>
208
208
  </div>
209
209
  </div>
210
+ <div class="row">
211
+ <div class="col-sm-6 form-group" >
212
+ <label class="font_normal_body">投保人:</label>
213
+ <input type="text" v-model="base.f_user_name" placeholder="投保人" style="width: 60%"
214
+ class="input_search"/>
215
+ </div>
216
+ <div class="col-sm-6 form-group" >
217
+ <label class="font_normal_body">&emsp;&emsp;&emsp;&emsp;保险单号</label>
218
+ <input type="text" v-model="base.f_ins_number" class="input_search" style="width:60%"
219
+ placeholder="保险单号" />
220
+ </div>
221
+ </div>
210
222
  <div class="row">
211
223
  <div class="col-sm-12 form-group">
212
224
  <label class="font_normal_body">备注信息</label>
@@ -281,9 +281,6 @@
281
281
  <th>
282
282
  <nobr>上期结余</nobr>
283
283
  </th>
284
- <th>
285
- <nobr>平均用气量</nobr>
286
- </th>
287
284
  <th>
288
285
  <nobr>表号</nobr>
289
286
  </th>
@@ -376,7 +373,6 @@
376
373
  <!--<td>{{row.f_room}}</td>-->
377
374
  <td>{{row.belongmonth}}</td>
378
375
  <td style="text-align: center;">{{row.f_balance}}</td>
379
- <td style="text-align: center;">{{Math.round(row.avggas)}}</td>
380
376
  <td>{{row.f_meternumber}}</td>
381
377
  <td>{{row.f_user_phone}}</td>
382
378
  <td>{{row.f_last_tablebase}}</td>
@@ -148,7 +148,7 @@
148
148
  二阶用气金额合计:&emsp;{{model.sums.f_stair2fee}}
149
149
  </td>
150
150
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
151
- 三阶用气金额合计:&emsp;{{model.sums.f_stair3amount}}
151
+ 三阶用气量合计:&emsp;{{model.sums.f_stair3amount}}
152
152
  </td>
153
153
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
154
154
  三阶用气金额合计:&emsp;{{model.sums.f_stair3fee}}
@@ -150,7 +150,7 @@
150
150
  <td style="text-align:center">{{row.new_version}}</td>
151
151
  <td style="text-align:center"><nobr>{{row.f_value}}</nobr></td>
152
152
  <td style="text-align:center"><nobr>{{row.f_filiale_name}}</nobr></td>
153
- <td style="text-align:center"><button @click.stop="$parent.$parent.$parent.operate(row.f_price_id,row.f_price_name,row.f_filialeid)" class="btn btn-link"><b>{{row.usercount}}</b></button></td>
153
+ <td style="text-align:center"><button @click.stop="$parent.$parent.$parent.operate(row)" class="btn btn-link"><b>{{row.usercount}}</b></button></td>
154
154
  <td style="text-align:center"><b>{{row.usercountnew}}</b></td>
155
155
  <td style="text-align:center">{{row.f_price_state}}</td>
156
156
  <td style="text-align:center" v-if="$parent.$parent.$parent.config.audit">
@@ -254,11 +254,12 @@
254
254
  this.gasproperties = [{label: '全部', value: ''}]
255
255
  }
256
256
  },
257
- operate (id, pricename, orgid) {
257
+ operate (row) {
258
258
  this.$parent.usershow = true
259
- this.$parent.priceid = id
260
- this.$parent.pricename = pricename
261
- this.$parent.priceorgid = orgid
259
+ this.$parent.priceid = row.f_price_id
260
+ this.$parent.pricename = row.f_price_name
261
+ this.$parent.f_islow_income = row.f_islow_income
262
+ this.$parent.priceorgid = row.f_orgid
262
263
  },
263
264
  search () {
264
265
  this.$refs.paged.$refs.cri.search()
@@ -155,7 +155,7 @@
155
155
  二阶用气金额合计:&emsp;{{sumsmodel.f_stair2fee}}
156
156
  </td>
157
157
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
158
- 三阶用气金额合计:&emsp;{{sumsmodel.f_stair3amount}}
158
+ 三阶用气量合计:&emsp;{{sumsmodel.f_stair3amount}}
159
159
  </td>
160
160
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
161
161
  三阶用气金额合计:&emsp;{{sumsmodel.f_stair3fee}}
@@ -97,7 +97,35 @@
97
97
  <input type="text" style="width:60%" class="input_search" v-model="model.f_address"
98
98
  condition="f_address like '%{}%'" placeholder='客户地址'>
99
99
  </div>
100
-
100
+ <div class="col-sm-2 form-group">
101
+ <label class="font_normal_body">抄表单状态</label>
102
+ <v-select :value.sync="model.f_meter_state" v-model='model.f_meter_state'
103
+ style="width:60%"
104
+ :options='$parent.$parent.meterstates' placeholder='抄表单状态'
105
+ close-on-select
106
+ condition="f_meter_state = '{}'"></v-select>
107
+ </div>
108
+ <div class="col-sm-2 form-group">
109
+ <label class="font_normal_body">抄表时间</label>
110
+ <datepicker placeholder="开始日期"
111
+ style="width:60%"
112
+ class="datepicker"
113
+ v-model="model.startDate"
114
+ condition="f_last_input_date >='{} 00:00:00'"
115
+ :value.sync="model.startDate"
116
+ :format="'yyyy-MM-dd'"
117
+ ></datepicker>
118
+ </div>
119
+ <div class="col-sm-2 form-group">
120
+ <label class="font_normal_body">抄表时间</label>
121
+ <datepicker placeholder="结束日期"
122
+ style="width:60%"
123
+ v-model="model.endDate"
124
+ :value.sync="model.endDate"
125
+ condition="f_last_input_date <='{} 23:59:59'"
126
+ :format="'yyyy-MM-dd'"
127
+ ></datepicker>
128
+ </div>
101
129
  </div>
102
130
  </div>
103
131
  </criteria>
@@ -139,6 +167,9 @@
139
167
  <th>
140
168
  <nobr>本期底数</nobr>
141
169
  </th>
170
+ <th>
171
+ <nobr>最近一次抄表时间</nobr>
172
+ </th>
142
173
  <th>
143
174
  <nobr>抄表员</nobr>
144
175
  </th>
@@ -164,6 +195,7 @@
164
195
  @focus="$parent.$parent.$parent.clearError(row)"
165
196
  :disabled="row.state === '开始'">
166
197
  </div>
198
+ <td>{{ row.f_last_input_date }}</td>
167
199
  <td>{{ row.f_inputtor }}</td>
168
200
  </template>
169
201
  </data-grid>
@@ -200,6 +232,7 @@ export default {
200
232
  downWay: 'downWithUserfiles',
201
233
  downInputtor: []
202
234
  },
235
+ meterstates: this.$appdata.getParam('抄表状态') ? [{label: '全部', value: ''}, ...this.$appdata.getParam('抄表状态')] : [],
203
236
  inputtorModel: {
204
237
  inputtor: [],
205
238
  reason: ''
@@ -155,7 +155,7 @@
155
155
  二阶用气金额合计:&emsp;{{model.sums.f_stair2fee}}
156
156
  </td>
157
157
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
158
- 三阶用气金额合计:&emsp;{{model.sums.f_stair3amount}}
158
+ 三阶用气量合计:&emsp;{{model.sums.f_stair3amount}}
159
159
  </td>
160
160
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
161
161
  三阶用气金额合计:&emsp;{{model.sums.f_stair3fee}}
@@ -148,7 +148,7 @@
148
148
  二阶用气金额合计:&emsp;{{model.sums.f_stair2fee}}
149
149
  </td>
150
150
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
151
- 三阶用气金额合计:&emsp;{{model.sums.f_stair3amount}}
151
+ 三阶用气量合计:&emsp;{{model.sums.f_stair3amount}}
152
152
  </td>
153
153
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
154
154
  三阶用气金额合计:&emsp;{{model.sums.f_stair3fee}}
@@ -148,7 +148,7 @@
148
148
  二阶用气金额合计:&emsp;{{model.sums.f_stair2fee}}
149
149
  </td>
150
150
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
151
- 三阶用气金额合计:&emsp;{{model.sums.f_stair3amount}}
151
+ 三阶用气量合计:&emsp;{{model.sums.f_stair3amount}}
152
152
  </td>
153
153
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
154
154
  三阶用气金额合计:&emsp;{{model.sums.f_stair3fee}}