manage-client 4.1.161 → 4.1.163

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.
File without changes
File without changes
File without changes
@@ -0,0 +1,2 @@
1
+ #Thu Jun 04 15:26:04 CST 2026
2
+ gradle.version=9.3.0
Binary file
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manage-client",
3
- "version": "4.1.161",
3
+ "version": "4.1.163",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -407,7 +407,7 @@
407
407
  <th colspan="5">
408
408
  <nobr>建档信息</nobr>
409
409
  </th>
410
- <th colspan="6">
410
+ <th colspan="7">
411
411
  <nobr>燃气表</nobr>
412
412
  </th>
413
413
  <th colspan="62">
@@ -460,6 +460,9 @@
460
460
  <th>
461
461
  <nobr>表向</nobr>
462
462
  </th>
463
+ <th>
464
+ <nobr>生产时间</nobr>
465
+ </th>
463
466
  <th>
464
467
  <nobr>生产年月</nobr>
465
468
  </th>
@@ -572,6 +575,7 @@
572
575
  <td style="text-align: center;"><nobr>{{row.f_meter_type}}</nobr></td>
573
576
  <td style="text-align: center;"><nobr>{{row.f_meter_style}}</nobr></td>
574
577
  <td style="text-align: center;"><nobr>{{row.f_aroundmeter}}</nobr></td>
578
+ <td style="text-align: center;"><nobr>{{row.f_produce_date}}</nobr></td>
575
579
  <td style="text-align: center;"><nobr>{{row.f_factory_date}}</nobr></td>
576
580
  <td style="text-align: center;"><nobr>{{row.f_user_state}}</nobr></td>
577
581
  <td style="text-align: center;"><nobr>{{row.f_userinfo_code}}</nobr></td>
@@ -18,6 +18,7 @@ export default {
18
18
  'f_room': '门牌号',
19
19
  'f_user_state': '客户状态',
20
20
  'f_createfile_date': '建档日期',
21
+ 'f_produce_date': '生产日期',
21
22
  'f_createfile_person': '建档人',
22
23
  'f_comments': '备注',
23
24
  'f_bank_accopen': '银行户名',
@@ -3,7 +3,7 @@ export default{
3
3
  // 把打印需要默认选中的字段名放在config数组中
4
4
  userConfig: { 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_user_phone': '客户电话',
5
5
  'f_idnumber': '身份证号', 'f_balance': '账户余额', 'f_address': '客户地址', 'f_residential_area': '小区',
6
- 'f_building': '楼栋', 'f_unit': '单元', 'f_floor': '楼层', 'f_room': '门牌号',
6
+ 'f_building': '楼栋', 'f_unit': '单元', 'f_floor': '楼层', 'f_room': '门牌号', 'f_produce_date': '生产时间',
7
7
  'f_user_state': '客户状态', 'f_createfile_date': '建档日期', 'f_createfile_person': '建档人', 'f_comments': '备注'
8
8
  , 'f_bank_accopen': '银行户名', 'f_bank_name': '银行名称', 'f_bank_account': '银行账号',
9
9
  'f_bank_idnumber': '银行身份证号', 'f_bank_pay_number': '缴费编号', 'f_gas_date': '点火时间'
@@ -2,7 +2,6 @@
2
2
  import Vue from 'vue'
3
3
 
4
4
  export default function () {
5
- // 收费查询
6
5
  Vue.component('charge-query', (resolve) => { require(['./ChargeQuery'], resolve) })
7
6
  Vue.component('print-data-rc', (resolve) => { require(['./PrintData'], resolve) })
8
7
  Vue.component('print-table-rc', (resolve) => { require(['./PrintTable'], resolve) })