manage-client 3.3.100 → 3.3.102

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manage-client",
3
- "version": "3.3.100",
3
+ "version": "3.3.102",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -91,6 +91,11 @@
91
91
  condition="f_state in {}"
92
92
  close-on-select></v-select>
93
93
  </div>
94
+ <div class="col-sm-2 form-group">
95
+ <label class="font_normal_body">团缴编号</label>
96
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_customer"
97
+ condition="f_customer like '%{}%'" placeholder="团缴编号">
98
+ </div>
94
99
  </div>
95
100
  </div>
96
101
  </criteria>
@@ -101,6 +106,9 @@
101
106
  <th>
102
107
  <nobr>收费编号</nobr>
103
108
  </th>
109
+ <th>
110
+ <nobr>团缴编号</nobr>
111
+ </th>
104
112
  <th>
105
113
  <nobr>客户姓名</nobr>
106
114
  </th>
@@ -172,6 +180,9 @@
172
180
  <td style="text-align: center;">
173
181
  <nobr>{{row.id}}</nobr>
174
182
  </td>
183
+ <td style="text-align: center;">
184
+ <nobr>{{row.f_customer}}</nobr>
185
+ </td>
175
186
  <td style="text-align: center;">
176
187
  <nobr>{{row.f_user_name}}</nobr>
177
188
  </td>
@@ -52,7 +52,7 @@ export default{
52
52
  'f_address': '客户地址'
53
53
  },
54
54
  meterConfig: {
55
- 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_olduserinfo_code': '档案编号', 'f_customer': '团缴编号', 'f_userfiles_id': '表ID',
55
+ 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_olduserinfo_code': '档案编号', 'f_userfiles_id': '表ID',
56
56
  'f_user_phone': '客户电话', 'f_rent_phone': '备用电话', 'idnumber': '身份证号', 'f_address': '客户地址', 'f_book_slice_area': '表册片区',
57
57
  'f_balance_amount': '表上余额', 'f_user_type': '客户类型', 'f_usetype': '使用类型', 'f_gasproperties': '用气性质',
58
58
  'f_meternumber': '表号', 'f_card_id': '卡号', 'f_price_name': '气价名称', 'value': '气价详情', 'f_meter_brand': '气表品牌',
@@ -1033,7 +1033,7 @@ export default{
1033
1033
  'finaltotal': '一日'
1034
1034
  },
1035
1035
  GroupCharge: {
1036
- 'id': '收费编号', 'f_user_name': '客户姓名', 'f_user_type': '客户类型', 'f_address': '客户地址','f_pregas': '气量','f_preamount': '气费','f_delay': '应交违约金','f_delaypay': '实交违约金',
1036
+ 'id': '收费编号', 'f_customer': '团缴编号', 'f_user_name': '客户姓名', 'f_user_type': '客户类型', 'f_address': '客户地址','f_pregas': '气量','f_preamount': '气费','f_delay': '应交违约金','f_delaypay': '实交违约金',
1037
1037
  'f_balance': '上期余额','f_curbalance': '本期余额','f_newbalance': '账户支出', 'f_newcurbalance': '账户存入', 'f_collection': '收款','f_state': '收费状态','f_operate_date': '收费日期','f_payment': '付款方式','f_type': '收费类型','f_comments': '备注',
1038
1038
  'f_operator': '收费人','f_orgname': '部门','f_depname': '公司'
1039
1039
  },
@@ -880,6 +880,7 @@
880
880
  //小区
881
881
  residentialArea: [],
882
882
  sumsmodel: {},
883
+ condition: '',
883
884
  f_filialeid: this.$login.f.orgid,
884
885
  wxstate:[
885
886
  {label: '全部', value: ''},
@@ -1077,6 +1078,7 @@
1077
1078
  if (this.batchid) {
1078
1079
  args.condition += ` and f_batch_id=${this.batchid}`
1079
1080
  }
1081
+ this.condition = args.condition
1080
1082
  this.model.search(args.condition, args.model)
1081
1083
  this.sumsmodel = this.$refs.paged.$refs.grid.model.sums;
1082
1084
  this.card=''
@@ -1246,7 +1248,7 @@
1246
1248
  return {
1247
1249
  startDate: this.$refs.paged.$refs.cri.model.startDate,
1248
1250
  endDate: this.$refs.paged.$refs.cri.model.endDate,
1249
- condition: `${this.$refs.paged.$refs.cri.condition}` + this.orgCondtionStr,
1251
+ condition: `${this.condition}` + this.orgCondtionStr,
1250
1252
  orderitem: this.orderitem?`${this.orderitem}`: " f_operate_date desc"
1251
1253
  }
1252
1254
  },
@@ -719,8 +719,8 @@
719
719
  <td style="text-align: center;"><nobr>{{row.f_total_gas}}</nobr></td>
720
720
  <td style="text-align: center;"><nobr>{{row.f_total_fee}}</nobr></td>
721
721
 
722
- <td style="text-align: center;"><nobr>{{row.f_inputtor}}</nobr></td>
723
722
  <td style="text-align: center;"><nobr>{{row.f_book_inputtor}}</nobr></td>
723
+ <td style="text-align: center;"><nobr>{{row.f_inputtor}}</nobr></td>
724
724
  <td style="text-align: center;"><nobr>{{row.f_userfiles_address}}</nobr></td>
725
725
  <td style="text-align: center;"><nobr>{{row.f_install_person}}</nobr></td>
726
726
  <td style="text-align: center;"><nobr>{{row.f_gas_person}}</nobr></td>
@@ -318,7 +318,7 @@
318
318
  <nobr>抄表状态</nobr>
319
319
  </th>
320
320
  <th>
321
- <nobr>纪录状态</nobr>
321
+ <nobr>表单状态</nobr>
322
322
  </th>
323
323
  <th>
324
324
  <nobr>下发人员</nobr>
@@ -64,7 +64,7 @@ export default{
64
64
  webhandplanConfig: {
65
65
  'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_olduserinfo_code': '档案编号', 'f_address': '客户地址', 'f_zones': '片区', 'phone': '客户手机',
66
66
  'f_last_tablebase': '上期底数', 'f_tablebase': '本期底数', 'f_oughtamount': '用气量', 'f_oughtfee': '用气金额','f_meternumber': '表号', 'ym_data': '数据年月',
67
- 'f_balance': '上期余额', 'f_curbalance': '本期余额', 'f_hand_date': '下发日期', 'f_input_date': '录入日期', 'f_meter_state': '抄表状态', 'f_hand_state': '记录状态',
67
+ 'f_balance': '上期余额', 'f_curbalance': '本期余额', 'f_hand_date': '下发日期', 'f_input_date': '录入日期', 'f_meter_state': '抄表状态', 'f_hand_state': '表单状态',
68
68
  'f_inputtor': '抄表员', 'f_book_slice_area': '表册片区', 'f_user_type': '客户类型', 'f_gasproperties': '用气性质', 'f_operator': '操作员', 'f_depname': '部门', 'f_orgname': '公司',
69
69
  'f_stair1amount': '一阶气量', 'f_stair1price': '一阶单价', 'f_stair1fee': '一阶气费','f_stair2amount': '二阶气量', 'f_stair2price': '二阶单价', 'f_stair2fee': '二阶气费',
70
70
  'f_stair3amount': '三阶气量','f_stair3price': '三阶单价', 'f_stair3fee': '三阶气费', 'belongmonth': '所属年月'
@@ -163,7 +163,7 @@
163
163
  <v-select :value.sync="model.f_has_pepe"
164
164
  v-model="model.f_has_pepe"
165
165
  :options='$parent.$parent.haspipe' placeholder='请选择'
166
- condition="f_has_pepe {}" close-on-select
166
+ condition="f_has_pipe {}" close-on-select
167
167
  ></v-select>
168
168
  </div>
169
169
  <div class="col-sm-2 form-group" >