sale-client 3.4.202 → 3.4.205
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/build/dev-server.js +1 -1
- package/build/webpack.prod.conf.js +1 -1
- package/package.json +3 -3
- package/src/components/FilesManageNew/FileAddressList.vue +10 -13
- package/src/components/FilesManageNew/FileAddressManage.vue +8 -20
- package/src/components/FilesManageNew/MeterinfoTest.vue +5 -2
- package/src/components/FilesManageNew/UserEssentialInfoTest.vue +5 -2
- package/src/components/FilesManageNew/UserGeneralInfoTest.vue +2 -2
- package/src/components/FilesManageNew/UserMeterInfoTest.vue +1 -1
- package/src/components/charge/business/IOT/IotChangeFill.vue +2 -0
- package/src/components/common/userinfo_detail/UserBaseInfoNew.vue +1 -1
- package/src/components/revenue/HandManager/MbpeopleList.vue +6 -0
- package/src/components/revenue/base/rightview/CardList.vue +1 -1
- package/src/components/revenue/comprehen/ComprehenOperation/newchangemeter/ChangeMeter.vue +1 -1
- package/src/components/revenue/concentrator/ncArchivesList.vue +1 -1
- package/src/components/revenue/concentrator/ncUserfilesList2.vue +32 -2
- package/src/components/revenue/concentrator/ncarchivesmanage.vue +1 -1
- package/src/components/revenue/machineHandManage/machineHandAudit.vue +30 -1
- package/src/components/webMeter/MeterManage/WebMeterBatchOperationValve.vue +1 -1
- package/src/components/webMeter/approvalHandleList.vue +1 -1
- package/src/filiale/fugu/components/revenue/base/rightview/CardList.vue +526 -0
- package/src/filiale/fugu/sale.js +3 -0
- package/src/filiale/qianneng/ChangeMeter.vue +1 -1
- package/src/filiale/qianneng/sale.js +2 -0
- package/src/filiale/qianneng/specificInformation.vue +416 -0
- package/src/filiale/rizhao/UserEssentialInfoTest.vue +2 -1
- package/src/filiale/tongchuan/ChangeMeter.vue +14 -14
- package/src/filiale/tongchuan/ChargeManage.vue +1 -5
- package/src/filiale/tongchuan/base/otherinfo.vue +1 -4
- package/src/filiale/tongchuan/sale.js +7 -0
- package/src/filiale/wuhai/ChargeRecordQuery.vue +98 -0
- package/src/filiale/wuhai/IOTMeterCenter.vue +757 -0
- package/src/filiale/wuhai/sale.js +5 -1
- package/src/main.js +18 -23
- package/src/plugins/CardService.js +2 -0
- package/src/plugins/FileManageService.js +1 -2
package/build/dev-server.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sale-client",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.205",
|
|
4
4
|
"description": "收费模块前台组件",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"dev": "node build/dev-server.js",
|
|
9
9
|
"lint": "eslint src/**.js test/e2e/**.js test/unit/specs/** build/**.js",
|
|
10
10
|
"unit": "karma start test/unit/karma.conf.js",
|
|
11
|
-
"build": "rimraf
|
|
11
|
+
"build": "rimraf lib && mkdirp lib && cross-env webpack --progress --hide-modules --config build/webpack.prod.conf.js",
|
|
12
12
|
"e2e": "node test/e2e/runner.js",
|
|
13
13
|
"release": "bash build/release.sh"
|
|
14
14
|
},
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"style-loader": "^0.20.3",
|
|
89
89
|
"system-clients": "3.2.0-2",
|
|
90
90
|
"url-loader": "^0.5.7",
|
|
91
|
-
"vue-client": "1.24.
|
|
91
|
+
"vue-client": "1.24.52",
|
|
92
92
|
"vue-clipboard2": "0.3.1",
|
|
93
93
|
"vue-hot-reload-api": "^1.2.0",
|
|
94
94
|
"vue-html-loader": "^1.0.0",
|
|
@@ -75,15 +75,12 @@
|
|
|
75
75
|
},
|
|
76
76
|
title: '地址列表',
|
|
77
77
|
props: {
|
|
78
|
-
|
|
78
|
+
f_filialeid: {
|
|
79
79
|
type: String
|
|
80
|
-
},
|
|
81
|
-
company: {
|
|
82
|
-
type: String,
|
|
83
|
-
default: ''
|
|
84
80
|
}
|
|
85
81
|
},
|
|
86
82
|
ready () {
|
|
83
|
+
console.log('f_filialeid8888:',this.f_filialeid)
|
|
87
84
|
this.search()
|
|
88
85
|
},
|
|
89
86
|
methods: {
|
|
@@ -92,7 +89,7 @@
|
|
|
92
89
|
},
|
|
93
90
|
// 添加方法
|
|
94
91
|
add (val) {
|
|
95
|
-
if (this.
|
|
92
|
+
if (this.f_filialeid) {
|
|
96
93
|
this.$refs.paged.$refs.grid.selectStore.selected = null
|
|
97
94
|
this.$dispatch('add', val)
|
|
98
95
|
} else {
|
|
@@ -114,10 +111,10 @@
|
|
|
114
111
|
},
|
|
115
112
|
|
|
116
113
|
selfSearch (args) {
|
|
117
|
-
if (!this.
|
|
114
|
+
if (!this.f_filialeid) {
|
|
118
115
|
this.getorg([this.$login.f.orgid])
|
|
119
116
|
}
|
|
120
|
-
args.condition = `${args.condition} and a.f_userinfo_id is null and a.f_filialeid = '${this.
|
|
117
|
+
args.condition = `${args.condition} and a.f_userinfo_id is null and a.f_filialeid = '${this.f_filialeid}'`
|
|
121
118
|
this.model.search(args.condition, args.model)
|
|
122
119
|
},
|
|
123
120
|
|
|
@@ -127,14 +124,14 @@
|
|
|
127
124
|
},
|
|
128
125
|
getorg (val) {
|
|
129
126
|
this.f_orgid = this.$login.convertToIn(val)
|
|
130
|
-
this.
|
|
127
|
+
this.f_filialeid = val[0]
|
|
131
128
|
}
|
|
132
129
|
},
|
|
133
130
|
watch: {
|
|
134
|
-
'company' (val) {
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
}
|
|
131
|
+
// 'company' (val) {
|
|
132
|
+
// this.f_orgid = val
|
|
133
|
+
// this.f_filialeids = val
|
|
134
|
+
// }
|
|
138
135
|
}
|
|
139
136
|
|
|
140
137
|
}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div id="unit" class="flex-row">
|
|
3
3
|
<div :class="{'basic-main':!useraddressShow,'binary-left':useraddressShow}" v-show="isSelect">
|
|
4
|
-
<file-address-list-new @select-changed="selected" v-ref:addresslist :style="style"
|
|
4
|
+
<file-address-list-new @select-changed="selected" v-ref:addresslist :style="style"
|
|
5
|
+
:select=select :f_filialeid="f_filialeid"></file-address-list-new>
|
|
5
6
|
</div>
|
|
6
7
|
<div v-show="useraddressShow" :class="{'basic-main':!isSelect, 'binary-right': isSelect}">
|
|
7
8
|
<div class="flex">
|
|
8
|
-
<user-address :f_filialeids
|
|
9
|
+
<user-address :f_filialeids="f_filialeid" :usertype="isSpecial" :isedit="isSelect" :row="row" v-ref:fileuseraddress></user-address>
|
|
9
10
|
|
|
10
11
|
<file-user-address-change-new v-if="addressId" :address_id="addressId"></file-user-address-change-new>
|
|
11
12
|
</div>
|
|
@@ -18,10 +19,12 @@
|
|
|
18
19
|
title: '地址管理',
|
|
19
20
|
components: {
|
|
20
21
|
},
|
|
22
|
+
props: ['isSelect', 'fileinfo', 'f_filialeid', 'showselectaddress'],
|
|
21
23
|
data () {
|
|
22
24
|
return {
|
|
23
25
|
// 分公司id串
|
|
24
|
-
f_filialeids: this.$login.f.orgid,
|
|
26
|
+
// f_filialeids: this.$login.f.orgid,
|
|
27
|
+
f_filialeid: '',
|
|
25
28
|
area: [],
|
|
26
29
|
street: [],
|
|
27
30
|
residential: [],
|
|
@@ -31,23 +34,8 @@
|
|
|
31
34
|
isSpecial: false
|
|
32
35
|
}
|
|
33
36
|
},
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
type: Boolean,
|
|
37
|
-
default: false
|
|
38
|
-
},
|
|
39
|
-
fileinfo: {
|
|
40
|
-
type: Object,
|
|
41
|
-
default: {}
|
|
42
|
-
},
|
|
43
|
-
company: {
|
|
44
|
-
type: String,
|
|
45
|
-
default: ''
|
|
46
|
-
},
|
|
47
|
-
showselectaddress: {
|
|
48
|
-
type: Boolean,
|
|
49
|
-
default: false
|
|
50
|
-
}
|
|
37
|
+
ready () {
|
|
38
|
+
|
|
51
39
|
},
|
|
52
40
|
watch: {
|
|
53
41
|
'showselectaddress' (val) {
|
|
@@ -284,10 +284,13 @@ import Vue from 'vue'
|
|
|
284
284
|
let meterBookGen = function * (self) {
|
|
285
285
|
if (self.$login.r.find(value => value == '抄表册建档')) {
|
|
286
286
|
self.opteratormetrbook = true
|
|
287
|
-
|
|
287
|
+
}
|
|
288
|
+
if(!self.f_filialeid){
|
|
289
|
+
self.f_filialeid = self.$login.f.orgid
|
|
290
|
+
}
|
|
288
291
|
let temp = {
|
|
289
292
|
tablename: 't_meter_book',
|
|
290
|
-
condition: `f_book_state='有效' and f_filiale_id='${self
|
|
293
|
+
condition: `f_book_state='有效' and f_filiale_id='${self.f_filialeid}'`
|
|
291
294
|
}
|
|
292
295
|
let http = new HttpResetClass()
|
|
293
296
|
let meterbooks = yield http.load('POST', 'rs/sql/saleSingleTable', {data: temp},
|
|
@@ -193,7 +193,9 @@
|
|
|
193
193
|
<modal v-if="showselectaddress" :show.sync="showselectaddress" width="80%" title="地址信息" v-ref:modal large backdrop="false">
|
|
194
194
|
<article slot="modal-body" class="modal-body" style="height: 700px;padding: 0!important;">
|
|
195
195
|
<file-address-manage-new :is-select="isSelect" :fileinfo="addressinfo"
|
|
196
|
-
@address-valid="doNothing" :showselectaddress.sync="showselectaddress"
|
|
196
|
+
@address-valid="doNothing" :showselectaddress.sync="showselectaddress"
|
|
197
|
+
:f_filialeid="f_filialeid"
|
|
198
|
+
v-ref:fileaddress ></file-address-manage-new>
|
|
197
199
|
</article>
|
|
198
200
|
<footer slot="modal-footer" class="modal-footer">
|
|
199
201
|
</footer>
|
|
@@ -220,7 +222,7 @@
|
|
|
220
222
|
|
|
221
223
|
export default {
|
|
222
224
|
title: '基本信息',
|
|
223
|
-
props: ['baseinfo', 'addressinfo', 'isedit'],
|
|
225
|
+
props: ['baseinfo', 'addressinfo', 'isedit', 'f_filialeid'],
|
|
224
226
|
data () {
|
|
225
227
|
return {
|
|
226
228
|
showselectaddress: false,
|
|
@@ -247,6 +249,7 @@
|
|
|
247
249
|
}
|
|
248
250
|
},
|
|
249
251
|
ready () {
|
|
252
|
+
console.log('f_filialeid222,,,', this.f_filialeid)
|
|
250
253
|
getEditUserState(this)
|
|
251
254
|
this.$resetValidation()
|
|
252
255
|
// this.highMeterPlugin = new HighMeter(this,this.readIDCardCallback)
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<button class="button_search" style="width: max-content" @click="uploadPictures()">拍照</button>
|
|
10
10
|
</div>
|
|
11
11
|
<file-user-essential-info-new :baseinfo="data.baseinfo" :addressinfo="data.addressinfo" @valid="essentialInfo = true"
|
|
12
|
-
|
|
12
|
+
:f_filialeid="f_filialeid" @invalid="essentialInfo = false" v-ref:useressential :isedit="isedit"></file-user-essential-info-new>
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
15
|
<div style="height: auto;width: 100%">
|
|
@@ -179,6 +179,7 @@ export default {
|
|
|
179
179
|
async ready () {
|
|
180
180
|
this.blodid = '临时id' + Date.now()
|
|
181
181
|
console.log('ready,,,', this.row)
|
|
182
|
+
console.log('f_filialeid111,,,', this.f_filialeid)
|
|
182
183
|
try {
|
|
183
184
|
await this.$getConfig(this, 'FilesDetail')
|
|
184
185
|
} catch (error) {
|
|
@@ -305,7 +306,6 @@ export default {
|
|
|
305
306
|
if (this.row) {
|
|
306
307
|
this.data.baseinfo.base.version = this.row.version
|
|
307
308
|
}
|
|
308
|
-
console.log('档案保存之前,。。。', this.data)
|
|
309
309
|
this.$FileManageService.fileSave(this.$FileManageService.fileSaveBefore(this.data)).then((res) => {
|
|
310
310
|
this.savePrintSheet(res.data.result[0])
|
|
311
311
|
this.$dispatch('success')
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
<span class="glyphicon glyphicon-plus"></span>
|
|
17
17
|
<!--<img :src="imgmeter" alt="图片加载失败" class="img-rounded" style="width: 50px;margin:10px;">-->
|
|
18
18
|
</div>
|
|
19
|
-
<file-user-device-info-new :devicesinfo.sync="devicesinfo" :show_devices.sync="show_devices"
|
|
19
|
+
<file-user-device-info-new :devicesinfo.sync="devicesinfo" :show_devices.sync="show_devices" :f_filialeid="f_filialeid"
|
|
20
20
|
:userinfoid='data.baseinfo.base.f_userinfo_id'></file-user-device-info-new>
|
|
21
21
|
</div>
|
|
22
22
|
</template>
|
|
@@ -186,6 +186,8 @@
|
|
|
186
186
|
self.model.payments = self.paymentModel
|
|
187
187
|
|
|
188
188
|
let param = {
|
|
189
|
+
f_share_times: self.row.f_share_times,
|
|
190
|
+
f_hascard: self.row.f_hascard,
|
|
189
191
|
f_open_way: self.row.f_open_type,
|
|
190
192
|
f_user_name: self.row.f_user_name,
|
|
191
193
|
f_user_type: self.row.f_user_type,
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
</div>
|
|
124
124
|
<div class="col-sm-4">
|
|
125
125
|
<label class="font_normal_body_new">是否自动阀控</label>
|
|
126
|
-
<input class="input-underline" style="width:45%" :value="row.f_network_valve == '1' ? '
|
|
126
|
+
<input class="input-underline" style="width:45%" :value="row.f_network_valve == '1' ? '是' : '否'" readonly>
|
|
127
127
|
</div>
|
|
128
128
|
</div>
|
|
129
129
|
<div v-if="row.f_collection_type == '按气量'" >
|
|
@@ -147,6 +147,12 @@
|
|
|
147
147
|
condition="f_book_no like '%{}%'" placeholder='入户证号'
|
|
148
148
|
>
|
|
149
149
|
</div>
|
|
150
|
+
<div class="col-sm-3 form-group">
|
|
151
|
+
<label class="font_normal_body">表 号 </label>
|
|
152
|
+
<input style="width:60%" type="text" class="form-control" v-model="model.f_meternumber"
|
|
153
|
+
condition="f_meternumber like '%{}%'" placeholder='表号'
|
|
154
|
+
>
|
|
155
|
+
</div>
|
|
150
156
|
</div>
|
|
151
157
|
</div>
|
|
152
158
|
</criteria>
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
<div class="col-sm-1" v-if="$parent.$parent.$parent.isOperate" title="涉及权限:冲正权限">
|
|
64
64
|
<dropdown class="auto"
|
|
65
65
|
v-if="(row.type ==='机表收费撤销' || row.type ==='卡表收费撤销' || row.type ==='物联网收费撤销' || row.type ==='其他收费撤销' || row.type ==='气损收费撤销' ||
|
|
66
|
-
row.type ==='预存缴费' || row.type === '补卡' || row.type === '物联网收费' || row.type === '用户退费' || row.type === '机表收费' ||
|
|
66
|
+
row.type ==='预存缴费' || row.type === '补卡' || row.type === '物联网收费' || row.type === '用户退费' || row.type === '机表收费' || row.type === '数码表收费' ||
|
|
67
67
|
row.type === '卡表收费' || row.type === '超用收费' || row.type === '发卡售气' || row.type === '其他收费' ||
|
|
68
68
|
row.type === '换表' || row.state === 1 || row.type==='调价补费' || row.type==='卡表赠气' ||
|
|
69
69
|
row.type==='物联网赠气'|| row.type==='物联网赠费'|| row.type==='卡表赠费'|| row.type==='卡表赠气'||
|
|
@@ -890,7 +890,7 @@ export default {
|
|
|
890
890
|
data: {
|
|
891
891
|
items: 'f_whether_pay',
|
|
892
892
|
tablename: 't_handplan',
|
|
893
|
-
condition: ` f_user_id = '${this.row.f_user_id}' and f_hand_state = '有效' and f_meter_state='已抄表' `,
|
|
893
|
+
condition: ` f_user_id = '${this.row.f_user_id}' and f_oughtfee > 0 and f_hand_state = '有效' and f_meter_state='已抄表' `,
|
|
894
894
|
orderitem: ' id desc'
|
|
895
895
|
}
|
|
896
896
|
}, {resolveMsg: null, rejectMsg: null}
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
condition="f_address like '%{}%'" placeholder='客户地址'>
|
|
29
29
|
</div>
|
|
30
30
|
<div class="span" style="float:right;">
|
|
31
|
+
<button class="button_search button_spacing" @click="$parent.$parent.meterRead()">抄表</button>
|
|
31
32
|
<button class="button_search button_spacing" @click="$parent.$parent.confirmaddress()">取消关联</button>
|
|
32
33
|
<button class="button_search button_spacing" @click="search()">查询</button>
|
|
33
34
|
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
@@ -150,7 +151,7 @@
|
|
|
150
151
|
<nobr>{{row.f_price_name}}</nobr>
|
|
151
152
|
</td>
|
|
152
153
|
<td style="text-align: center;">
|
|
153
|
-
<nobr>{{row.
|
|
154
|
+
<nobr>{{row.networkstate ? '已组网' : '未组网'}}</nobr>
|
|
154
155
|
</td>
|
|
155
156
|
<td style="text-align: center;">
|
|
156
157
|
<nobr>{{row.f_meter_brand}}</nobr>
|
|
@@ -251,7 +252,7 @@ export default {
|
|
|
251
252
|
}
|
|
252
253
|
let param = {
|
|
253
254
|
f_orgid: this.$login.f.orgid,
|
|
254
|
-
f_orgname: this.$login.f.
|
|
255
|
+
f_orgname: this.$login.f.name,
|
|
255
256
|
concentratorid: this.fileinfo.id,
|
|
256
257
|
f_mpc_number: this.fileinfo.f_mpc_number,
|
|
257
258
|
userfilesid: '',
|
|
@@ -262,6 +263,35 @@ export default {
|
|
|
262
263
|
this.search()
|
|
263
264
|
}
|
|
264
265
|
},
|
|
266
|
+
async meterRead () {
|
|
267
|
+
let res = await this.$showMessage('确定对选择的表具进行抄表操作吗?', ['confirm', 'cancel'])
|
|
268
|
+
if (res === 'confirm') {
|
|
269
|
+
let rowdata = this.$refs.paged.$refs.grid.getRowData()
|
|
270
|
+
if (rowdata.length <= 0) {
|
|
271
|
+
this.$showMessage('请至少选择一个表具!')
|
|
272
|
+
return
|
|
273
|
+
}
|
|
274
|
+
console.log(rowdata)
|
|
275
|
+
let userfilesids = []
|
|
276
|
+
for (let row of rowdata) {
|
|
277
|
+
userfilesids.push({
|
|
278
|
+
f_userfiles_id: row.f_userfiles_id,
|
|
279
|
+
f_meternumber: row.f_meternumber
|
|
280
|
+
})
|
|
281
|
+
}
|
|
282
|
+
let param = {
|
|
283
|
+
f_orgid: this.$login.f.orgid,
|
|
284
|
+
f_orgname: this.$login.f.name,
|
|
285
|
+
concentratorid: this.fileinfo.id,
|
|
286
|
+
f_mpc_number: this.fileinfo.f_mpc_number,
|
|
287
|
+
userfilesid: '',
|
|
288
|
+
userfilesids: userfilesids,
|
|
289
|
+
state: 'delete'
|
|
290
|
+
}
|
|
291
|
+
await this.$resetpost('rs/logic/concentratorMeterRead', param, {resolveMsg: '抄表操作成功!', rejectMsg: '抄表操作失败!'})
|
|
292
|
+
this.search()
|
|
293
|
+
}
|
|
294
|
+
},
|
|
265
295
|
search () {
|
|
266
296
|
this.$refs.paged.$refs.cri.search()
|
|
267
297
|
},
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
</div>
|
|
13
13
|
<modal v-if="addmeterinfoshow" :show.sync="addmeterinfoshow" width="80%" title="表具信息" v-ref:modal large backdrop="false">
|
|
14
14
|
<article slot="modal-body" class="modal-body" style="height: 700px;padding: 0!important;">
|
|
15
|
-
<archives-userfiles-manage :is-select="isSelect" :fileinfo="allarearow" :f_filialeid="f_filialeids"
|
|
15
|
+
<archives-userfiles-manage :is-select="isSelect" :fileinfo="allarearow" :f_filialeid.sync="f_filialeids"
|
|
16
16
|
@address-valid="doNothing" v-ref:userfilesadd ></archives-userfiles-manage>
|
|
17
17
|
<!-- <concentrator-userfiles-list :is-select="isSelect" :meterinfo="meterinfo" :fileinfo="areamodel" :f_filialeid.sync="f_filialeids" :usertype="areamodel.f_user_type"-->
|
|
18
18
|
<!-- @address-valid="doNothing" v-ref:userfilesadd ></concentrator-userfiles-list>-->
|
|
@@ -39,6 +39,13 @@
|
|
|
39
39
|
|
|
40
40
|
<button class="button_search button_spacing" @click="$parent.$parent.search()">查询</button>
|
|
41
41
|
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
42
|
+
<export-excel
|
|
43
|
+
:data="{condition: $parent.$parent.excelCondition}"
|
|
44
|
+
:field="$parent.$parent.fields"
|
|
45
|
+
sqlurl="rs/logic/saleExport" progress="saleGetExportProgress" sql-name="getAuditMachineHand"
|
|
46
|
+
template-name='抄表审核导出'
|
|
47
|
+
:choose-col="true">
|
|
48
|
+
</export-excel>
|
|
42
49
|
<button class="button_search button_spacing width-60"
|
|
43
50
|
@click="$parent.$parent.allsuccess()" v-el:cx>全部通过</button>
|
|
44
51
|
<button class="button_search button_spacing width-60"
|
|
@@ -316,7 +323,7 @@
|
|
|
316
323
|
<!--<td>{{row.f_building}}</td>-->
|
|
317
324
|
<!--<td>{{row.f_unit}}</td>-->
|
|
318
325
|
<!--<td>{{row.f_room}}</td>-->
|
|
319
|
-
<td>{{row.
|
|
326
|
+
<td>{{row.f_balance}}</td>
|
|
320
327
|
<td style="text-align: center;">{{Math.round(row.avggas)}}</td>
|
|
321
328
|
<td>{{row.f_meternumber}}</td>
|
|
322
329
|
<td>{{row.f_meter_base}}</td>
|
|
@@ -416,6 +423,27 @@
|
|
|
416
423
|
imgshow: false,
|
|
417
424
|
criteriaShow:false,
|
|
418
425
|
orgCondtionStr: '',
|
|
426
|
+
excelCondition: '',
|
|
427
|
+
fields: {
|
|
428
|
+
'f_userinfo_code': '客户编号',
|
|
429
|
+
'f_user_name': '客户名称',
|
|
430
|
+
'f_address': '客户地址',
|
|
431
|
+
'f_user_level': '用户等级',
|
|
432
|
+
'f_balance': '上期结余',
|
|
433
|
+
'f_meternumber': '表号',
|
|
434
|
+
'f_meter_base': '上期底数',
|
|
435
|
+
'f_tablebase': '本期底数',
|
|
436
|
+
'f_oughtamount': '应交气量',
|
|
437
|
+
'f_adjustment_volume': '增量值',
|
|
438
|
+
'f_oughtfee': '应交金额',
|
|
439
|
+
'f_result_state': '抄表结果状态',
|
|
440
|
+
'f_last_input_date': '上次抄表录入日期',
|
|
441
|
+
'f_hand_date': '下发日期',
|
|
442
|
+
'f_input_date': '抄表录入日期',
|
|
443
|
+
'f_book_name': '抄表册',
|
|
444
|
+
'f_adjustable_name': '调压箱名称',
|
|
445
|
+
'f_inputtor': '抄表员'
|
|
446
|
+
},
|
|
419
447
|
auditState:[{label: '全部', value: ''}, {label: '已审核', value: '已抄表'}, {label: '未审核', value: '待审核'}],
|
|
420
448
|
auditState1:[{label: '全部', value: ''}, {label: '审核失败', value: '审核失败'}],
|
|
421
449
|
meters: [{label: '全部', value: ''}, {label: '机表', value: '机表'}, {label: '物联网表', value: '物联网表'}],
|
|
@@ -604,6 +632,7 @@
|
|
|
604
632
|
} else {
|
|
605
633
|
args.condition = `${args.condition}` + this.orgCondtionStr
|
|
606
634
|
}
|
|
635
|
+
this.excelCondition = args.condition
|
|
607
636
|
this.$refs.paged.$refs.grid.selectInit()
|
|
608
637
|
this.model.search(args.condition, args.model)
|
|
609
638
|
},
|