sale-client 3.6.238 → 3.6.240

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.
Files changed (41) hide show
  1. package/.gradle/5.2.1/fileChanges/last-build.bin +0 -0
  2. package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
  3. package/.gradle/5.2.1/gc.properties +0 -0
  4. package/.gradle/7.4/checksums/checksums.lock +0 -0
  5. package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
  6. package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
  7. package/.gradle/7.4/executionHistory/executionHistory.bin +0 -0
  8. package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
  9. package/.gradle/7.4/fileChanges/last-build.bin +0 -0
  10. package/.gradle/7.4/fileHashes/fileHashes.bin +0 -0
  11. package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
  12. package/.gradle/7.4/gc.properties +0 -0
  13. package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  14. package/.gradle/buildOutputCleanup/cache.properties +2 -0
  15. package/.gradle/file-system.probe +0 -0
  16. package/.gradle/vcs-1/gc.properties +0 -0
  17. package/build/dev-server.js +97 -97
  18. package/package.json +1 -1
  19. package/src/components/FilesManage/UserMeterInfoTest.vue +9 -2
  20. package/src/components/charge/business/IOT/IotChangeFill.vue +2 -1
  21. package/src/components/common/userinfo_detail/ic_detail/HandQueryUser.vue +6 -1
  22. package/src/components/common/userinfo_detail/ic_detail/WebHandQueryUser.vue +6 -1
  23. package/src/components/revenue/comprehen/SpecialUser/BlackList/BlackList.vue +17 -9
  24. package/src/components/revenue/comprehen/wechatpay/wechatValidateManage.vue +30 -22
  25. package/src/components/revenue/machineHandManage/machineDown.vue +1 -1
  26. package/src/filiale/lixianV3/machineHand.vue +51 -47
  27. package/src/filiale/shanxian/UserDeviceInfoTest.vue +13 -8
  28. package/src/filiale/tongchuan/FileUserFiles.vue +5 -14
  29. package/src/filiale/tongchuan/UserEssentialInfoTest.vue +8 -0
  30. package/src/filiale/tongchuan/bill/CustQueryEticketQueryV4.vue +334 -0
  31. package/src/filiale/tongchuan/bill/EticketOpenCard.vue +310 -0
  32. package/src/filiale/tongchuan/bill/EticketOpenJBPage.vue +341 -0
  33. package/src/filiale/tongchuan/bill/EticketOpenPage.vue +333 -0
  34. package/src/filiale/tongchuan/bill/EticketPrint.vue +1 -0
  35. package/src/filiale/tongchuan/plugins/FileManageService.js +1 -0
  36. package/src/filiale/tongchuan/sale.js +8 -0
  37. package/src/filiale/yuncheng/HandplanQuery.vue +1366 -0
  38. package/src/filiale/yuncheng/machineHandAudit.vue +8 -6
  39. package/src/filiale/yuncheng/sale.js +2 -0
  40. package/src/main.js +33 -35
  41. package/src/plugins/CardService.js +1 -0
File without changes
File without changes
@@ -0,0 +1,2 @@
1
+ #Tue Jan 23 18:15:26 CST 2024
2
+ gradle.version=5.2.1
Binary file
File without changes
@@ -1,97 +1,97 @@
1
- var path = require('path')
2
- const [ serverRul, localUrl ] = ['http://192.168.50.4:8400/', 'http://127.0.0.1:8080']
3
- var merge = require('webpack-merge')
4
- var baseConfig = require('./webpack.dev.conf')
5
- var devConfig = {
6
- devServer: {
7
- contentBase: path.join(__dirname, 'src'),
8
- hot: true,
9
- publicPath: baseConfig.output.publicPath,
10
- historyApiFallback: true,
11
- host: '127.0.0.1',
12
- port: 8089,
13
- open: false,
14
- stats: {
15
- colors: false, // 配置控制台输出彩色日志
16
- chunks: false, // 不输出构建 chunk 信息
17
- children: false // 不输出子模块构建信息
18
- },
19
- proxy: {
20
- '/invoice/rs/logic/getInvoice': {
21
- target: serverRul
22
- },
23
- '/rs/file': {
24
- target: serverRul
25
- },
26
- '/webapps': {
27
- target: serverRul
28
- },
29
- '/rs/sql/singleTable': {
30
- target: serverRul
31
- },
32
- '/invoice': {
33
- target: serverRul
34
- },
35
- // 查找资源服务数据
36
- '/rs/search': {
37
- target: serverRul
38
- },
39
- // 查找资源服务数据
40
- '/rs/logic/getLogin': {
41
- target: serverRul
42
- },
43
- // 查找资源服务数据
44
- '/rs/logic/getInitData': {
45
- target: serverRul
46
- },
47
- '/rs/logic/getSaleInitData': {
48
- target: serverRul
49
- },
50
- // 用户登录服务地址
51
- '/rs/user': {
52
- target: serverRul
53
- },
54
- '/rs/path': {
55
- target: serverRul
56
- },
57
- '/rs/data': {
58
- target: serverRul
59
- },
60
- '/rs/license': {
61
- target: serverRul
62
- },
63
- '/rs/db': {
64
- target: serverRul
65
- },
66
- '/excel': {
67
- target: serverRul
68
- },
69
- '/rs/config': {
70
- target: serverRul
71
- },
72
- '/rs/report': {
73
- target: serverRul
74
- },
75
- '/rs/vue': {
76
- target: serverRul
77
- },
78
- // '/rs/logic/webHandReverse': {
79
- // target: 'http://localhost:8085'
80
- // },
81
- '/rs/logic': {
82
- target: localUrl
83
- },
84
- '/rs/sql': {
85
- target: localUrl
86
- },
87
- '/webmeter': {
88
- target: serverRul
89
- },
90
- '/rs': {
91
- target: serverRul
92
- // changeOrigin: true
93
- }
94
- }
95
- }
96
- }
97
- module.exports = merge(baseConfig, devConfig)
1
+ var path = require('path')
2
+ const [ serverRul, localUrl ] = ['http://192.168.50.4:8400/', 'http://192.168.50.4:8400/']
3
+ var merge = require('webpack-merge')
4
+ var baseConfig = require('./webpack.dev.conf')
5
+ var devConfig = {
6
+ devServer: {
7
+ contentBase: path.join(__dirname, 'src'),
8
+ hot: true,
9
+ publicPath: baseConfig.output.publicPath,
10
+ historyApiFallback: true,
11
+ host: '127.0.0.1',
12
+ port: 8089,
13
+ open: false,
14
+ stats: {
15
+ colors: false, // 配置控制台输出彩色日志
16
+ chunks: false, // 不输出构建 chunk 信息
17
+ children: false // 不输出子模块构建信息
18
+ },
19
+ proxy: {
20
+ '/invoice/rs/logic/getInvoice': {
21
+ target: serverRul
22
+ },
23
+ '/rs/file': {
24
+ target: serverRul
25
+ },
26
+ '/webapps': {
27
+ target: serverRul
28
+ },
29
+ '/rs/sql/singleTable': {
30
+ target: serverRul
31
+ },
32
+ '/invoice': {
33
+ target: serverRul
34
+ },
35
+ // 查找资源服务数据
36
+ '/rs/search': {
37
+ target: serverRul
38
+ },
39
+ // 查找资源服务数据
40
+ '/rs/logic/getLogin': {
41
+ target: serverRul
42
+ },
43
+ // 查找资源服务数据
44
+ '/rs/logic/getInitData': {
45
+ target: serverRul
46
+ },
47
+ '/rs/logic/getSaleInitData': {
48
+ target: serverRul
49
+ },
50
+ // 用户登录服务地址
51
+ '/rs/user': {
52
+ target: serverRul
53
+ },
54
+ '/rs/path': {
55
+ target: serverRul
56
+ },
57
+ '/rs/data': {
58
+ target: serverRul
59
+ },
60
+ '/rs/license': {
61
+ target: serverRul
62
+ },
63
+ '/rs/db': {
64
+ target: serverRul
65
+ },
66
+ '/excel': {
67
+ target: serverRul
68
+ },
69
+ '/rs/config': {
70
+ target: serverRul
71
+ },
72
+ '/rs/report': {
73
+ target: serverRul
74
+ },
75
+ '/rs/vue': {
76
+ target: serverRul
77
+ },
78
+ '/rs/logic/webHandReverse': {
79
+ target: 'http://localhost:8085'
80
+ },
81
+ '/rs/logic': {
82
+ target: localUrl
83
+ },
84
+ '/rs/sql': {
85
+ target: localUrl
86
+ },
87
+ '/webmeter': {
88
+ target: serverRul
89
+ },
90
+ '/rs': {
91
+ target: serverRul
92
+ // changeOrigin: true
93
+ }
94
+ }
95
+ }
96
+ }
97
+ module.exports = merge(baseConfig, devConfig)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.6.238",
3
+ "version": "3.6.240",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -19,7 +19,7 @@
19
19
  <!-- <span class="glyphicon glyphicon-plus"></span>-->
20
20
  <!-- &lt;!&ndash;<img :src="imgmeter" alt="图片加载失败" class="img-rounded" style="width: 50px;margin:10px;">&ndash;&gt;-->
21
21
  <!-- </div>-->
22
- <file-user-device-info :devicesinfo.sync="devicesinfo" :show_devices.sync="show_devices"
22
+ <file-user-device-info :devicesinfo.sync="devicesinfo" v-if="show_devices" :show_devices.sync="show_devices" :devicesinfonew.sync="devicesinfo"
23
23
  :f_input_person="f_input_person" :userinfoid='data.baseinfo.base.f_userinfo_id'></file-user-device-info>
24
24
  </div>
25
25
  </template>
@@ -109,11 +109,18 @@ export default {
109
109
 
110
110
  showDevices (index, row) {
111
111
  this.devicesinfo = []
112
- this.show_devices = true
113
112
  this.devicesinfo = row.devicesinfo
114
113
  if (row.f_install_person[0]) {
115
114
  this.f_input_person = row.f_install_person[0]
116
115
  }
116
+ this.devicesinfo.forEach((row) => {
117
+ row.devicetypes = this.$appdata.getParam('设备类型')
118
+ row.pipetypes = []
119
+ row.pipeways = this.$appdata.getParam('连接方式')
120
+ row.devicebrands = [{label:'全部', value: '全部'}]
121
+ })
122
+ console.log('shebei', this.devicesinfo)
123
+ this.show_devices = true
117
124
  console.log('查看设备信息', this.devicesinfo)
118
125
  },
119
126
  showFire (index, row) {
@@ -196,7 +196,8 @@
196
196
  f_userinfo_id: self.row.f_userinfo_id,
197
197
  f_address: self.row.f_address,
198
198
  f_meter_brand: self.row.f_meter_brand,
199
-
199
+ f_meternumber: self.row.f_meternumber,
200
+ f_card_id: self.row.f_card_id,
200
201
  f_old_total_gas: self.row.f_total_gas,
201
202
  f_old_total_fee: self.row.f_total_fee,
202
203
 
@@ -221,7 +221,12 @@
221
221
  'f_detailprice': '结算明细',
222
222
  'datas': '用气周期',
223
223
  'money1': '违约金',
224
- 'price1': '单价',
224
+ 'f_stair1price': '一阶单价',
225
+ 'f_stairamount1': '一阶用量',
226
+ 'f_stair2price': '二阶单价',
227
+ 'f_stair2amount': '二阶用量',
228
+ 'f_stair3price': '三阶单价',
229
+ 'f_stair3amount': '三阶用量',
225
230
  'f_oughtfee1': '应交金额',
226
231
  'f_inputtor': '抄表员',
227
232
  'f_input_date': '抄表日期',
@@ -206,7 +206,12 @@
206
206
  'f_detailprice': '结算明细',
207
207
  'datas': '用气周期',
208
208
  'money1': '违约金',
209
- 'price1': '单价',
209
+ 'f_stair1price': '一阶单价',
210
+ 'f_stairamount1': '一阶用量',
211
+ 'f_stair2price': '二阶单价',
212
+ 'f_stair2amount': '二阶用量',
213
+ 'f_stair3price': '三阶单价',
214
+ 'f_stair3amount': '三阶用量',
210
215
  'f_oughtfee1': '应交金额',
211
216
  'f_inputtor': '抄表员',
212
217
  'f_input_date': '抄表日期',
@@ -47,14 +47,14 @@
47
47
  placeholder="限购次数">
48
48
 
49
49
  </div>
50
- <div class="col-sm-2 form-group" id="f_limit">
50
+ <div :class="[model.isshow ? 'col-sm-2 form-group' : 'col-sm-3 form-group']" id="f_limit">
51
51
  <!-- <label for="f_limit_times" class=" font_normal_body">限购次数</label>-->
52
+ <label v-if="model.isshow" class="font_normal_body">{{ f_limit }}</label>
52
53
  <v-select
53
54
  v-model="f_limit"
54
55
  :value.sync="f_limit"
55
56
  :options='limites'
56
- width="100%"
57
- close-on-select>
57
+ width="80%" v-if="!model.isshow">
58
58
  </v-select>
59
59
  </div>
60
60
  <div class="col-sm-3 form-group" id="f_limit_gas" style="right: 3%;">
@@ -63,7 +63,7 @@
63
63
  v-scale="[model.f_limit_value, 2]"
64
64
  @click="gg()"
65
65
  placeholder="限购气量">
66
- <input class="input_search" type="number" v-if="f_limit=='限购金额'"
66
+ <input class="input_search" style="width:60%" type="number" v-if="f_limit=='限购金额'"
67
67
  v-model="model.f_limit_amount"
68
68
  v-scale="[model.f_limit_amount, 2]"
69
69
  @click="gg()"
@@ -127,9 +127,15 @@
127
127
  self.model.f_address = res.data[0].f_address
128
128
  self.model.f_user_phone = res.data[0].f_user_phone
129
129
  self.model.version = res.data[0].version
130
- self.model.f_limit_value=res.data[0].f_limit_value
131
- self.model.f_limit_times=res.data[0].f_limit_times
132
- self.model.f_limit_amount=res.data[0].f_limit_amount
130
+ self.model.f_limit_value = res.data[0].f_limit_value
131
+ self.model.f_limit_times = res.data[0].f_limit_times
132
+ self.model.f_limit_amount = res.data[0].f_limit_amount
133
+ self.model.isshow = true
134
+ if (typeof res.data[0].f_limit_type === 'undefined') {
135
+ self.f_limit = '限购气量'
136
+ } else {
137
+ self.f_limit = (res.data[0].f_limit_type === '金额') ? '限购金额' : '限购气量'
138
+ }
133
139
  }
134
140
 
135
141
  export default {
@@ -159,7 +165,8 @@
159
165
  // 限购气量
160
166
  f_limit_value: '',
161
167
  // 限购金额
162
- f_limit_amount: ''
168
+ f_limit_amount: '',
169
+ isshow: false
163
170
 
164
171
  },
165
172
  // 编辑控制
@@ -262,7 +269,8 @@
262
269
  f_user_phone: '',
263
270
  f_comments: '',
264
271
  version: null,
265
- isblacklist: 'false'
272
+ isblacklist: 'false',
273
+ isshow: false
266
274
  }
267
275
  },
268
276
  close () {
@@ -4,16 +4,10 @@
4
4
  <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri>
5
5
  <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
6
  <div class="row">
7
- <!--<div class="col-sm-2 form-group">-->
8
- <!--<label class="font_normal_body">组织机构:</label>-->
9
- <!--<res-select :initresid='$parent.$parent.curorgid'-->
10
- <!--@res-select="$parent.$parent.getorg"-->
11
- <!--class="select select_list"-->
12
- <!--restype='organization'-->
13
- <!--style="width: 60%">-->
14
- <!--</res-select>-->
15
- <!--</div>-->
16
- <div class="col-sm-2 form-group">
7
+
8
+ <!-- <res-select-group :initres="$parent.$parent.initres" :show-component="['company']" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>-->
9
+
10
+ <div class="col-sm-2 form-group">
17
11
  <label for="startDate" class="font_normal_body">开始日期</label>
18
12
  <datepicker id="startDate" placeholder="开始日期"
19
13
  v-model="model.startDate" style="width: 60%"
@@ -50,16 +44,7 @@
50
44
  :options='$parent.$parent.letter'
51
45
  close-on-select ></v-select>
52
46
  </div>
53
- <div class="col-sm-2 form-group">
54
- <label class="font_normal_body" title="操作标识">操作标识</label>
55
- <v-select
56
- v-model="model.pay_state"
57
- placeholder='操作标识'
58
- condition="pay_state like '%{}%'"
59
- :value.sync="model.pay_state"
60
- :options='$parent.$parent.paystate'
61
- close-on-select ></v-select>
62
- </div>
47
+
63
48
  <div class="span" style="float:right;">
64
49
  <button class="button_search button_spacing width-60" @click="search()" v-el:cx>查询</button>
65
50
  <div
@@ -71,6 +56,16 @@
71
56
  </div>
72
57
  </div>
73
58
  <div class="row" v-show="$parent.$parent.criteriaShow">
59
+ <div class="col-sm-2 form-group">
60
+ <label class="font_normal_body" title="操作标识">操作标识</label>
61
+ <v-select
62
+ v-model="model.pay_state"
63
+ placeholder='操作标识'
64
+ condition="pay_state like '%{}%'"
65
+ :value.sync="model.pay_state"
66
+ :options='$parent.$parent.paystate'
67
+ close-on-select ></v-select>
68
+ </div>
74
69
  <div class="form-group col-sm-2">
75
70
  <label class="font_normal_body">终端编号</label>
76
71
  <input type="text" class="input_search" style="width:60%" v-model="model.f_terminal_num" placeholder='终端编号'
@@ -86,9 +81,9 @@
86
81
  <input type="text" class="input_search" style="width:60%" v-model="model.f_user_phone" placeholder='电话'
87
82
  condition="f_user_phone like '{}%'">
88
83
  </div>
89
- <div class="form-group col-sm-4">
84
+ <div class="form-group col-sm-2">
90
85
  <label class="font_normal_body">客户地址</label>
91
- <input type="text" class="input_search" style="width:80%" v-model="model.f_address" placeholder='客户地址'
86
+ <input type="text" class="input_search" style="width:60%" v-model="model.f_address" placeholder='客户地址'
92
87
  condition="f_address like '%{}%'">
93
88
  </div>
94
89
  <!--<div class="col-sm-2 form-group">-->
@@ -206,6 +201,10 @@
206
201
  criteriaShow: false,
207
202
  show: false,
208
203
  watchComment: '',
204
+ orgCondtionStr: '',
205
+ initres: {
206
+ org: [this.$login.f.orgid]
207
+ },
209
208
  msgData: []
210
209
  }
211
210
  },
@@ -228,6 +227,9 @@
228
227
  await Vue.resetpost('rs/logic/commonCancel', {data: param}, {resolveMsg: '撤销成功', rejectMsg: '撤销失败'})
229
228
  this.$refs.paged.$refs.cri.search()
230
229
  },
230
+ async getRes(condition,obj) {
231
+ this.orgCondtionStr = condition
232
+ },
231
233
  // 微信单方账单,系统可缴费
232
234
  async charge (row) {
233
235
  row.f_operator=Vue.$login.f.name,
@@ -279,6 +281,12 @@
279
281
  selfSearch (args) {
280
282
  this.model.params.startDate = this.$refs.paged.$refs.cri.model.startDate
281
283
  this.model.params.endDate = this.$refs.paged.$refs.cri.model.endDate
284
+ // if (!this.orgCondtionStr) {
285
+ // args.condition = `${args.condition}` + ' and f_orgid = ' + this.$login.f.orgid
286
+ // } else {
287
+ // args.condition = `${args.condition}` + this.orgCondtionStr
288
+ // }
289
+ args.condition = `${args.condition}` + `and f_orgid = '${this.$login.f.orgid}'`
282
290
  this.model.search(args.condition, args.model)
283
291
  }
284
292
 
@@ -584,7 +584,7 @@
584
584
  msg: '',
585
585
  condition: '',
586
586
  headers: {'username': Vue.$login.f.name, 'blodid': Vue.$login.guid()},
587
- orderDefault: 'f_userinfo_id',
587
+ orderDefault: 'f_userfiles_id',
588
588
  orderFields: {
589
589
  f_userinfo_id: 'no'
590
590
  },
@@ -281,9 +281,9 @@
281
281
  <th>
282
282
  <nobr>上期结余</nobr>
283
283
  </th>
284
- <th>
285
- <nobr>实际结余</nobr>
286
- </th>
284
+ <!-- <th>-->
285
+ <!-- <nobr>实际结余</nobr>-->
286
+ <!-- </th>-->
287
287
  <th>
288
288
  <nobr>表号</nobr>
289
289
  </th>
@@ -307,6 +307,9 @@
307
307
  <th>
308
308
  <nobr>应交金额</nobr>
309
309
  </th>
310
+ <th>
311
+ <nobr>总欠费金额</nobr>
312
+ </th>
310
313
  <th>
311
314
  <nobr>抄表结果状态</nobr>
312
315
  </th>
@@ -379,7 +382,7 @@
379
382
  <!--<td>{{row.f_room}}</td>-->
380
383
  <td>{{row.belongmonth}}</td>
381
384
  <td style="text-align: center;">{{row.f_balance}}</td>
382
- <td style="text-align: center;" >{{row.owefee}}</td>
385
+ <!-- <td style="text-align: center;" >{{row.owefee}}</td>-->
383
386
 
384
387
  <td>{{row.f_meternumber}}</td>
385
388
  <td>{{row.f_user_phone}}</td>
@@ -416,7 +419,7 @@
416
419
  </div>
417
420
  </td>
418
421
  <td style="text-align: center;">{{row.f_oughtfee}}</td>
419
-
422
+ <td style="text-align: center;">{{row.f_all_oughtfee}}</td>
420
423
  <td>
421
424
  <div class="form-group" style="margin-bottom:0px;display: contents;" :class="{
422
425
  'has-success has-feedback': !row.error,
@@ -435,6 +438,7 @@
435
438
  </div>
436
439
  </td>
437
440
  <td style="text-align: center;">{{row.f_whether_pay}}</td>
441
+
438
442
  <td>{{row.f_last_input_date}}</td>
439
443
  <td>{{row.f_hand_date}}</td>
440
444
  <td>
@@ -830,49 +834,49 @@ export default {
830
834
  }),
831
835
  config: {
832
836
 
833
- // 导出列要和查询列相同
834
- excelHeaders: {
835
- 'f_user_id': '表编号',
836
- 'f_meternumber': '表号',
837
- 'f_inputtor': '抄表员',
838
- 'f_balance': '上期结余',
839
- 'owefee': '实际结余',
840
- 'f_last_input_date': '上次抄表',
841
- 'f_hand_date': '下发时间',
842
- 'f_input_date': '抄表日期',
843
- 'f_userinfo_code': '客户编号',
844
- 'f_address': '客户地址',
845
- 'f_residential_area': '小区名称',
846
- 'f_user_name': '客户姓名',
847
- 'f_last_tablebase': '上期底数',
848
- 'f_tablebase': '本期指数',
849
- 'f_oughtfee': '应交金额',
850
- 'f_oughtamount': '应交气量',
851
- 'f_whether_pay': '是否缴费',
852
- 'f_book_name': '抄表册',
853
- 'f_meter_book_sort': '册内排序',
854
- 'f_input_person': '录入人员',
855
- 'f_operator': '下发人员',
856
- 'f_meter_classify': '气表分类',
857
- 'f_meter_style': '气表型号',
858
- 'f_accounts_state': '下账标识',
859
- 'f_user_phone': '客户电话',
860
- 'f_adjustable_id': '表箱号'
837
+ // 导出列要和查询列相同
838
+ excelHeaders: {
839
+ 'f_user_id': '表编号',
840
+ 'f_meternumber': '表号',
841
+ 'f_inputtor': '抄表员',
842
+ 'f_balance': '上期结余',
843
+ 'f_last_input_date': '上次抄表',
844
+ 'f_hand_date': '下发时间',
845
+ 'f_input_date': '抄表日期',
846
+ 'f_userinfo_code': '客户编号',
847
+ 'f_address': '客户地址',
848
+ 'f_residential_area': '小区名称',
849
+ 'f_user_name': '客户姓名',
850
+ 'f_last_tablebase': '上期底数',
851
+ 'f_tablebase': '本期指数',
852
+ 'f_oughtfee': '应交金额',
853
+ 'f_oughtamount': '应交气量',
854
+ 'f_whether_pay': '是否缴费',
855
+ 'f_all_oughtfee': '总欠费金额',
856
+ 'f_book_name': '抄表册',
857
+ 'f_meter_book_sort': '册内排序',
858
+ 'f_input_person': '录入人员',
859
+ 'f_operator': '下发人员',
860
+ 'f_meter_classify': '气表分类',
861
+ 'f_meter_style': '气表型号',
862
+ 'f_accounts_state': '下账标识',
863
+ 'f_user_phone': '客户电话',
864
+ 'f_adjustable_id': '表箱号'
865
+ },
866
+ examine: true,
867
+ customCal: false
861
868
  },
862
- examine: true,
863
- customCal: false
864
- },
865
- meter_state: false, // 是否显示计划下发按钮
866
- downModel: {
867
- downDate: Vue.$login.toStandardTimeString(),
868
- downWay: 'downWithUserfiles',
869
- downInputtor: []
870
- },
871
- inputtorModel: {
872
- inputtor: [],
873
- reason: ''
874
- },
875
- auditState: [{label: '全部', value: ''}, {label: '未抄表', value: '未抄表'}, {label: '待审核', value: '待审核'}, {label: '已抄表', value: '已抄表'}],
869
+ meter_state: false, // 是否显示计划下发按钮
870
+ downModel: {
871
+ downDate: Vue.$login.toStandardTimeString(),
872
+ downWay: 'downWithUserfiles',
873
+ downInputtor: []
874
+ },
875
+ inputtorModel: {
876
+ inputtor: [],
877
+ reason: ''
878
+ },
879
+ auditState: [{label: '全部', value: ''}, {label: '未抄表', value: '未抄表'}, {label: '待审核', value: '待审核'}, {label: '已抄表', value: '已抄表'}],
876
880
 
877
881
  plans: [], // 记录当前行是否被勾选
878
882
  all: false, // 是否全选