manage-client 3.3.39 → 3.3.42

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.
@@ -78,16 +78,16 @@
78
78
  <!-- condition="f_user_type ='{}'"-->
79
79
  <!-- ></v-select>-->
80
80
  <!-- </div>-->
81
- <!-- <div class="col-sm-2 form-group">-->
82
- <!-- <label class="font_normal_body">用气性质</label>-->
83
- <!-- <v-select style="width:60%" :value.sync="model.f_gasproperties" v-model="model.f_gasproperties"-->
84
- <!-- placeholder='用气性质'-->
85
- <!-- value-single="true"-->
86
- <!-- :options='$parent.$parent.Gasproperties'-->
87
- <!-- close-on-select-->
88
- <!-- condition="f_gasproperties = '{}'"-->
89
- <!-- ></v-select>-->
90
- <!-- </div>-->
81
+ <div class="col-sm-2 form-group">
82
+ <label class="font_normal_body">用气性质</label>
83
+ <v-select style="width:60%" :value.sync="model.f_gasproperties" v-model="model.f_gasproperties"
84
+ placeholder='用气性质'
85
+ value-single="true"
86
+ :options='$parent.$parent.Gasproperties'
87
+ close-on-select
88
+ condition="f_gasproperties = '{}'"
89
+ ></v-select>
90
+ </div>
91
91
  <div class="col-sm-2 form-group">
92
92
  <label class="font_normal_body">表&ensp;&ensp;&ensp;&ensp;号</label>
93
93
  <input
@@ -93,7 +93,7 @@ export default{
93
93
  },
94
94
  chargeConfig: {
95
95
  'id': '收费编号', 'f_userinfo_code': '客户编号', 'f_olduserinfo_code': '档案编号', 'f_user_name': '客户名称', 'f_user_phone': '客户电话', 'f_address': '客户地址','f_idnumber':'身份证号', 'f_zones': '片区', 'f_user_type': '客户类型',
96
- 'f_gasproperties': '用气性质', 'f_meternumber': '表号', 'f_meter_brand': '气表品牌', 'f_times': '购气次数', 'f_price_name': '气价名称',
96
+ 'f_gasproperties': '用气性质', 'f_meternumber': '表号', 'f_meter_brand': '气表品牌', 'f_table_state': '表具状态', 'f_times': '购气次数', 'f_price_name': '气价名称',
97
97
  'f_last_tablebase': '上期底数', 'f_tablebase': '本期底数', 'f_pregas': '气量', 'fee': '金额', 'f_preamount': '燃气费', 'f_collection': '收款', 'f_privilege_money': '优惠金额', 'f_balance': '上期结余',
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': '公司',
@@ -380,6 +380,9 @@
380
380
  <th>
381
381
  <nobr>气表品牌</nobr>
382
382
  </th>
383
+ <th>
384
+ <nobr>表具状态</nobr>
385
+ </th>
383
386
  <th>
384
387
  <nobr>卡号</nobr>
385
388
  </th>
@@ -589,6 +592,9 @@
589
592
  <td style="text-align: center;">
590
593
  <nobr>{{row.f_meter_brand}}</nobr>
591
594
  </td>
595
+ <td style="text-align: center;">
596
+ <nobr>{{row.f_table_state}}</nobr>
597
+ </td>
592
598
  <td style="text-align: center;">
593
599
  <nobr>{{row.f_card_id}}</nobr>
594
600
  </td>
@@ -636,8 +636,8 @@
636
636
 
637
637
  <script>
638
638
  import {HttpResetClass, PagedList} from 'vue-client'
639
- import defaultPrint from '../../components/sale/config/DefaultPrint'
640
- import exportConfig from '../../components/sale/config/exportConfig'
639
+ import defaultPrint from './config/DefaultPrint'
640
+ import exportConfig from './config/exportConfig'
641
641
  let cardBtnGen = async function (self, val) {
642
642
  self.cardInfo = val.data
643
643
 
@@ -0,0 +1,6 @@
1
+ export default{
2
+ //把打印需要默认选中的字段名放在config数组中
3
+ config: [
4
+ "f_userinfo_code","f_user_name","f_user_phone","f_pregas","f_preamount","f_collection","f_balance","f_curbalance","f_idnumber"
5
+ ]
6
+ }