manage-client 3.3.101 → 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.101",
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
  },