manage-client 3.3.237 → 3.3.239

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.
@@ -497,6 +497,12 @@
497
497
  <th>
498
498
  <nobr>公司</nobr>
499
499
  </th>
500
+ <th>
501
+ <nobr>抵扣单价</nobr>
502
+ </th>
503
+ <th>
504
+ <nobr>抵扣金额</nobr>
505
+ </th>
500
506
  <th>
501
507
  <nobr>附件</nobr>
502
508
  </th>
@@ -653,6 +659,12 @@
653
659
  <td style="text-align: center;">
654
660
  <nobr>{{ row.f_orgname }}</nobr>
655
661
  </td>
662
+ <td style="text-align: center;">
663
+ <nobr>{{ row.f_gas_type }}</nobr>
664
+ </td>
665
+ <td style="text-align: center;">
666
+ <nobr>{{ row.f_current_deduct_amount }}</nobr>
667
+ </td>
656
668
  <td style="text-align: center;">
657
669
  <nobr>
658
670
  <button class="button_search button_spacing width-60" @click.stop="$parent.$parent.$parent.view(row)">
@@ -252,7 +252,9 @@ export default {
252
252
  'f_stair3fee': '三阶气费',
253
253
  'f_inputtor': '抄表员',
254
254
  'f_residential_area': '小区',
255
- 'f_serial_number': '业务单号'
255
+ 'f_serial_number': '业务单号',
256
+ 'f_gas_type': '抵扣单价',
257
+ 'f_current_deduct_amount': '抵扣金额'
256
258
  },
257
259
  loginQueryConfig: {
258
260
  'userid': '登录人编号', 'username': '登录人名称', 'logindate': '登录时间', 'type': '类型'
@@ -664,6 +666,7 @@ export default {
664
666
  'f_changemeter_fee': '换表费',
665
667
  'f_meternumber_old': '旧表号',
666
668
  'f_meternumber': '新表号',
669
+ 'f_meter_base_old': '旧表底数',
667
670
  'f_initial_base': '新表初始底数',
668
671
  'f_meter_brand_old': '旧气表品牌',
669
672
  'f_meter_brand': '新气表品牌',
@@ -835,7 +838,9 @@ export default {
835
838
  'f_stair3amount': '三阶气量',
836
839
  'f_stair3price': '三阶单价',
837
840
  'f_stair3fee': '三阶气费',
838
- 'f_rest_date': '所属年月'
841
+ 'f_rest_date': '所属年月',
842
+ 'f_gas_type': '抵扣单价',
843
+ 'f_current_deduct_amount': '抵扣金额'
839
844
  },
840
845
  handplanInfoConfig: {
841
846
  'f_userinfo_code': '用户号',
@@ -21,4 +21,12 @@ export default function () {
21
21
  Vue.component('handplan-query', (resolve) => {
22
22
  require(['./HandplanQuery'], resolve)
23
23
  })
24
+ // 换表查询
25
+ Vue.component('change-meter-query', (resolve) => {
26
+ require(['./ChangeMeterQuery'], resolve)
27
+ })
28
+ // 收费查询
29
+ Vue.component('charge-query', (resolve) => {
30
+ require(['./ChargeQuery'], resolve)
31
+ })
24
32
  }