manage-client 3.3.128 → 3.3.130

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.
@@ -107,6 +107,26 @@
107
107
  v-model="model.f_end_date"
108
108
  ></datepicker>
109
109
  </div>
110
+ <div class="col-sm-2 form-group">
111
+ <label class="font_normal_body">操作类型</label>
112
+ <v-select
113
+ :options='$parent.$parent.operatetypes'
114
+
115
+ :value.sync="model.f_instruct_title"
116
+ close-on-select
117
+ condition="f_instruct_title='{}'"
118
+ placeholder='操作类型'
119
+ style="width:60%"
120
+ v-model="model.f_instruct_title">
121
+ </v-select>
122
+ </div>
123
+ <div class="col-sm-2 form-group">
124
+ <label class="font_normal_body">气表类型</label>
125
+ <v-select :value.sync="model.f_meter_type" multiple
126
+ :options='$parent.$parent.metertypes' placeholder='请选择' v-model="model.f_meter_type"
127
+ condition="s.f_meter_type in {}"
128
+ close-on-select></v-select>
129
+ </div>
110
130
  </div>
111
131
  </div>
112
132
  </criteria>
@@ -306,13 +326,18 @@
306
326
 
307
327
  },
308
328
  computed: {
309
- userType () {
329
+ userType () {
310
330
  return [{label: '全部', value: ''}, ...this.$appdata.getParam('用户类型')]
311
331
  },
312
- Gasproperties () {
313
- return [{label: '全部', value: ''}, ...this.$appdata.getParam('用气性质')]
314
- }
315
-
332
+ Gasproperties () {
333
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('用气性质')]
334
+ },
335
+ operatetypes () {
336
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('开关阀操作类型')]
337
+ },
338
+ metertypes () {
339
+ return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('气表类型')]
340
+ }
316
341
  }
317
342
  }
318
343
  </script>
@@ -98,7 +98,7 @@ export default{
98
98
  'f_curbalance': '本期结余', 'f_type': '收费类型', 'f_payment': '付款方式', 'f_bank_type': '支付渠道', 'f_state': '状态', 'f_operate_date': '收费日期', 'f_serial_id': '流水号',
99
99
  'f_delaypay': '违约金', 'f_comments': '备注', 'f_operator': '操作员', 'f_depname': '部门', 'f_orgname': '公司',
100
100
  'f_yucun': '预存金额', 'f_card_id': '卡号', 'f_stairamount1': '一阶气量', 'f_stair1price': '一阶单价', 'f_stair1fee': '一阶气费',
101
- 'f_stair2amount': '二阶气量', 'f_stair2price': '二阶单价', 'f_stair2fee': '二阶气费',
101
+ 'f_stair2amount': '二阶气量', 'f_stair2price': '二阶单价', 'f_stair2fee': '二阶气费', 'f_fm_state': '阀门状态', 'f_fm_reason': '开关阀原因',
102
102
  'f_stair3amount': '三阶气量', 'f_stair3price': '三阶单价', 'f_stair3fee': '三阶气费', 'f_inputtor': '抄表员','f_residential_area':'小区','f_serial_number':'业务单号', 'f_user_comments': '用户档案备注'
103
103
  },
104
104
  loginQueryConfig:{
@@ -553,6 +553,12 @@
553
553
  <th>
554
554
  <nobr>三阶气费</nobr>
555
555
  </th>
556
+ <th>
557
+ <nobr>阀门状态</nobr>
558
+ </th>
559
+ <th>
560
+ <nobr>开关阀原因</nobr>
561
+ </th>
556
562
 
557
563
  <th><nobr>附件</nobr></th>
558
564
  </tr>
@@ -770,6 +776,12 @@
770
776
  <td style="text-align: center;">
771
777
  <nobr>{{(row.f_stair3fee - 0).toFixed(2)}}</nobr>
772
778
  </td>
779
+ <td style="text-align: center;">
780
+ <nobr>{{row.f_fm_state}}</nobr>
781
+ </td>
782
+ <td style="text-align: center;">
783
+ <nobr>{{row.f_fm_reason}}</nobr>
784
+ </td>
773
785
  <td style="text-align: center;"><nobr>
774
786
  <button style=" height: 28px;line-height: 16px;" class="button_search button_spacing width-60" @click.stop="$parent.$parent.$parent.view(row)">查看</button>
775
787
  </nobr></td>
@@ -1052,7 +1052,7 @@ export default{
1052
1052
  'f_orgname': '所属公司'
1053
1053
  },
1054
1054
  reportDetailConfig: {
1055
- 'f_userinfo_code': '用户编号', 'f_user_name': '用户名称', 'f_address': '用户地址', 'f_user_phone': '联系方式',
1055
+ 'f_userinfo_code': '用户编号', 'f_slice_area': '所属片区', 'f_user_name': '用户名称', 'f_address': '用户地址', 'f_user_phone': '联系方式',
1056
1056
  'f_user_nature': '用户类型', 'f_meternumber': '表号', 'f_serial_id': '支付流水号',
1057
1057
  'f_type': '收费类型', 'f_brand_spec': '规格名称', 'f_typenumber': '型号', 'f_unitprice': '单价','f_number': '数量',
1058
1058
  'f_collection': '收款', 'f_payment': '付款方式', 'f_operate_date': '收费日期', 'f_state': '状态',
@@ -75,6 +75,9 @@
75
75
  <th>
76
76
  <nobr>用户编号</nobr>
77
77
  </th>
78
+ <th>
79
+ <nobr>所属片区</nobr>
80
+ </th>
78
81
  <th>
79
82
  <nobr>用户名称</nobr>
80
83
  </th>
@@ -85,7 +88,7 @@
85
88
  <nobr>单价</nobr>
86
89
  </th>
87
90
  <th>
88
- <nobr>总购气量</nobr>
91
+ <nobr>户总购气量</nobr>
89
92
  </th>
90
93
  <th>
91
94
  <nobr>本月购气量</nobr>
@@ -117,6 +120,9 @@
117
120
  <td style="text-align: center;">
118
121
  <nobr>{{row.f_userinfo_code}}</nobr>
119
122
  </td>
123
+ <td style="text-align: center;">
124
+ <nobr>{{row.f_slice_area}}</nobr>
125
+ </td>
120
126
  <td style="text-align: center;">
121
127
  <nobr>{{row.f_user_name}}</nobr>
122
128
  </td>
@@ -173,7 +179,7 @@
173
179
  汇总信息
174
180
  </td>
175
181
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
176
- 总购气量汇总:&emsp;{{sumsmodel.zgougas.toFixed(2)}}
182
+ 户总购气量汇总:&emsp;{{sumsmodel.zgougas.toFixed(2)}}
177
183
  </td>
178
184
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
179
185
  本月购气量汇总:&emsp;{{sumsmodel.gougas.toFixed(2)}}
@@ -279,6 +279,9 @@
279
279
  </div>
280
280
  </div>
281
281
  </div>
282
+ <div class="flex-row" style="width:99%;height:98%;margin-bottom:0px" v-if="showdetail">
283
+ <user-info-detail-manage-new :f_userinfo_id="rowdata.f_userinfo_id" @cancel-main="cancel"></user-info-detail-manage-new>
284
+ </div>
282
285
  </template>
283
286
 
284
287
  <script>
@@ -315,6 +318,7 @@
315
318
  sumsmodel: {},
316
319
  orgid:[this.$login.f.orgid],
317
320
  criteriaShow:false,
321
+ showdetail:false,
318
322
  //默认打印列
319
323
  defaultfield: [],
320
324
  orgCondtionStr: '',
@@ -387,7 +391,7 @@
387
391
  this.criteriaShow = !this.criteriaShow
388
392
  },
389
393
  cancel() {
390
- this.show = false
394
+ this.showdetail = false
391
395
  },
392
396
  clearmsg () {
393
397
  Object.keys(this.$refs.paged.$refs.criteria.model).forEach((key) => {
@@ -401,7 +405,7 @@
401
405
  },
402
406
  showmsg(obj){
403
407
  this.rowdata=obj
404
- this.show=true
408
+ this.showdetail=true
405
409
  },
406
410
 
407
411
  search (args) {
@@ -116,13 +116,13 @@
116
116
  condition="f_meter_book_sort = '{}'" placeholder="册内序号">
117
117
  </div>
118
118
  <div class="col-sm-2 form-group">
119
- <label class="font_normal_body" >表册抄表员</label>
119
+ <label class="font_normal_body" >抄&nbsp;&nbsp;表&nbsp;员</label>
120
120
  <v-select :value.sync="model.f_inputtor"
121
121
  v-model="model.f_inputtor"
122
122
  :options='$parent.$parent.inputtores' placeholder='请选择'
123
123
  condition="f_inputtor = '{}'"
124
124
  @change="$parent.$parent.inputtorchange"
125
- close-on-select :search="false">
125
+ close-on-select :search="true">
126
126
  </v-select>
127
127
  </div>
128
128
  <div class="col-sm-2 form-group">
@@ -227,11 +227,6 @@
227
227
  <input type="text" style="width:60%" class="input_search" v-model="model.c"
228
228
  condition="c > '{}'" placeholder='欠费期数大于'>
229
229
  </div>
230
- <div class="col-sm-2 form-group">
231
- <label class="font_normal_body">实际抄表员</label>
232
- <input type="text" style="width:60%" class="input_search" v-model="model.c"
233
- condition="f_hand_inputtor like '%{}%'" placeholder='实际抄表员'>
234
- </div>
235
230
 
236
231
  </div>
237
232
  </div>
@@ -35,6 +35,7 @@
35
35
 
36
36
  <export-excel :data="$parent.$parent.getCondition" :footer="$parent.$parent.footer"
37
37
  :field="$parent.$parent.getfield" :header="$parent.$parent.other"
38
+ :defaultselect="$parent.$parent.defaultexport"
38
39
  sqlurl="rs/logic/exportfile" sql-name="otherChargeQuery" template-name='其他收费查询导出'
39
40
  :choose-col="true"></export-excel>
40
41
  <print-data :sum-field="$parent.$parent.getfield" :model="$parent.model" :field="$parent.$parent.getfield"
@@ -440,7 +441,7 @@
440
441
  all: false,
441
442
  fields: {},
442
443
  config: {
443
- 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']
444
+ defaultPrint: ['f_userinfo_code', 'f_user_name', 'f_address', 'f_user_phone', 'id', 'f_typename', 'f_unitprice', 'f_number', 'f_payment','f_operate_date']
444
445
  },
445
446
  //排序
446
447
  orderitem:'f_operate_date desc',
@@ -689,6 +690,9 @@
689
690
  getfield() {
690
691
  return exportConfig.otherchargeConfig
691
692
  },
693
+ defaultexport() {
694
+ return exportConfig.otherexportConfig
695
+ },
692
696
  chargetype() {
693
697
  return [{label: '全部', value: ''}, ...this.$appdata.getParam('品名及规格')]
694
698
  },
@@ -107,7 +107,10 @@ export default{
107
107
  chargeexportConfig: {
108
108
  'f_userinfo_code': '用户编号', 'f_user_name': '用户名称', 'f_pregas': '气量', 'f_collection': '收款', 'f_stairamount1': '一阶气量', 'f_stair2amount': '二阶气量', 'f_stair3amount': '三阶气量'
109
109
  },
110
- loginQueryexportConfig:{
110
+ otherexportConfig: {
111
+ 'f_userinfo_code': '用户编号', 'f_user_name': '用户名称', 'f_address': '用户地址', 'id': '收费编号', 'f_typename': '品名规格', 'f_unitprice': '单价', 'f_number': '数量', 'f_payment': '付款方式', 'f_operate_date': '收费日期'
112
+ },
113
+ loginQueryexportConfig: {
111
114
  'f_userinfo_id': '登录人编号','f_user_name': '登录人名称', 'logindate': '登录时间', 'type': '类型'
112
115
  },
113
116
  reverseexportConfig: {