manage-client 3.3.72 → 3.3.73
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
|
@@ -27,6 +27,11 @@
|
|
|
27
27
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_olduserinfo_code"
|
|
28
28
|
condition="f_olduserinfo_code = '{}' " placeholder="档案编号">
|
|
29
29
|
</div>
|
|
30
|
+
<div class="col-sm-2 form-group">
|
|
31
|
+
<label class="font_normal_body" title="旧客户编号">合同编号</label>
|
|
32
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_contract_id"
|
|
33
|
+
condition="f_contract_id = '{}' " placeholder="合同编号">
|
|
34
|
+
</div>
|
|
30
35
|
|
|
31
36
|
|
|
32
37
|
|
|
@@ -278,6 +278,16 @@
|
|
|
278
278
|
:options='$parent.$parent.hairpin' placeholder='请选择'
|
|
279
279
|
close-on-select></v-select>
|
|
280
280
|
</div>
|
|
281
|
+
<div class="col-sm-2 form-group">
|
|
282
|
+
<label class="font_normal_body">表号</label>
|
|
283
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"
|
|
284
|
+
condition="f_meternumber = '{}' " placeholder="表号">
|
|
285
|
+
</div>
|
|
286
|
+
<div class="col-sm-2 form-group">
|
|
287
|
+
<label class="font_normal_body">卡号</label>
|
|
288
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_card_id"
|
|
289
|
+
condition="f_card_id = '{}' " placeholder="卡号">
|
|
290
|
+
</div>
|
|
281
291
|
|
|
282
292
|
</div>
|
|
283
293
|
</div>
|
|
@@ -323,6 +333,9 @@
|
|
|
323
333
|
<th>
|
|
324
334
|
<nobr>表号</nobr>
|
|
325
335
|
</th>
|
|
336
|
+
<th>
|
|
337
|
+
<nobr>卡号</nobr>
|
|
338
|
+
</th>
|
|
326
339
|
<th>
|
|
327
340
|
<nobr>小区</nobr>
|
|
328
341
|
</th>
|
|
@@ -421,6 +434,9 @@
|
|
|
421
434
|
<td :class="row.f_user_state !== '正常'? 'back-red' : 'back-blue'" style="text-align: center;">
|
|
422
435
|
<nobr>{{row.f_meternumber}}</nobr>
|
|
423
436
|
</td>
|
|
437
|
+
<td :class="row.f_user_state !== '正常'? 'back-red' : 'back-blue'" style="text-align: center;">
|
|
438
|
+
<nobr>{{row.f_card_id}}</nobr>
|
|
439
|
+
</td>
|
|
424
440
|
<td :class="row.f_user_state !== '正常'? 'back-red' : 'back-blue'" style="text-align: center;">
|
|
425
441
|
<nobr>{{row.f_residential_area}}</nobr>
|
|
426
442
|
</td>
|
|
@@ -2,7 +2,7 @@ export default{
|
|
|
2
2
|
// 把打印需要默认选中的字段名放在config数组中
|
|
3
3
|
userConfig: { 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_olduserinfo_code': '档案编号', 'f_user_phone': '客户电话',
|
|
4
4
|
'f_idnumber': '身份证号', 'f_balance': '账户余额', 'f_user_level': '客户等级', 'f_user_type': '用户类型',
|
|
5
|
-
'f_address': '客户地址', 'f_residential_area': '小区',
|
|
5
|
+
'f_address': '客户地址', 'f_meternumber': '表号', 'f_card_id': '卡号', 'f_residential_area': '小区',
|
|
6
6
|
'f_building': '楼栋', 'f_unit': '单元', 'f_floor': '楼层', 'f_room': '门牌号',
|
|
7
7
|
'f_user_state': '客户状态', 'f_createfile_date': '建档日期', 'f_createfile_person': '建档人', 'f_comments': '备注'
|
|
8
8
|
, 'f_bank_accopen': '银行户名', 'f_bank_name': '银行名称', 'f_bank_account': '银行账号', 'f_inputtor': '抄表员',
|