manage-client 3.2.201 → 3.2.203
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 +190 -190
- package/package.json +1 -1
- package/src/components/SellReport/OperatorSellReport.vue +207 -254
- package/src/components/sale/businessquery/InspectListUser.vue +2 -2
- package/src/components/sale/config/exportConfig.js +4 -4
- package/src/components/sale/filesquery/GasDeviceQuery.vue +1 -1
- package/src/components/sale/filesquery/UserQuery.vue +2 -2
- package/src/filiale/WEINAN/BusinessManage.vue +163 -163
- package/src/filiale/WEINAN/MergeFileQuery.vue +185 -185
- package/src/filiale/WEINAN/sale.js +48 -48
- package/src/filiale/gehua/ReportDataQuery.vue +279 -0
- package/src/filiale/gehua/config/exportConfig.js +1084 -0
- package/src/filiale/gehua/config/tableConfig.js +56 -0
- package/src/filiale/gehua/webmeterManage.js +1 -0
- package/src/filiale/macheng/TransferQuery.vue +467 -0
- package/src/filiale/macheng/config/DefaultPrint.js +4 -1
- package/src/filiale/macheng/config/exportConfig.js +6 -1
- package/src/filiale/macheng/sale.js +2 -1
- package/src/filiale/qianneng/MeterQuery.vue +13 -1
- package/src/filiale/qianneng/RecordInfoQuery.vue +2 -0
- package/src/filiale/qianneng/UserQuery.vue +6 -0
- package/src/filiale/qianneng/exportConfig.js +11 -2
- package/src/filiale/qingtongxia/NewWebMeterHandPlan.vue +724 -0
- package/src/filiale/qingtongxia/webmeterManage.js +9 -0
- package/src/filiale/shanxian/GasInspection.vue +572 -0
- package/src/filiale/shanxian/InspectListGas.vue +544 -0
- package/src/filiale/shanxian/InspectListUser.vue +449 -0
- package/src/filiale/shanxian/config/exportConfig.js +1082 -0
- package/src/filiale/shanxian/sale.js +13 -0
- package/yarn-error.log +7659 -0
- package/.gradle/4.4/fileHashes/fileHashes.bin +0 -0
- package/.gradle/4.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.1/dependencies-accessors/gc.properties +0 -0
- package/.gradle/7.1/executionHistory/executionHistory.bin +0 -0
- package/.gradle/7.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.1/fileChanges/last-build.bin +0 -0
- package/.gradle/7.1/fileHashes/fileHashes.bin +0 -0
- package/.gradle/7.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.1/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
|
@@ -1,268 +1,221 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
<div class="
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
<
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
</
|
|
29
|
-
<
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
</
|
|
33
|
-
<
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
</res-select>
|
|
40
|
-
|
|
41
|
-
</div>
|
|
42
|
-
<div class="col-sm-4">
|
|
43
|
-
<label class="font_normal_body"> 人员 </label>
|
|
44
|
-
<res-select restype='user'
|
|
45
|
-
@res-select="$parent.$parent.getuser"
|
|
46
|
-
:parentresid="$parent.$parent.userresid"
|
|
47
|
-
:initresid='$parent.$parent.operatorid'>
|
|
48
|
-
</res-select>
|
|
49
|
-
</div>
|
|
2
|
+
<div class="basic-main" style="height: 100%">
|
|
3
|
+
<criteria-paged :model="model" :pager='false' v-ref:paged>
|
|
4
|
+
<criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:criteria>
|
|
5
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
|
|
6
|
+
<div class="row">
|
|
7
|
+
<div class="col-sm-2 form-group" >
|
|
8
|
+
<label class="font_normal_body" for="startDate">开始日期:</label>
|
|
9
|
+
<datepicker id="startDate" placeholder="开始日期" style="width: 60%"
|
|
10
|
+
v-model="model.startDate"
|
|
11
|
+
:value.sync="model.startDate"
|
|
12
|
+
:disabled-days-of-Week="[]"
|
|
13
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
14
|
+
:show-reset-button="reset">
|
|
15
|
+
</datepicker>
|
|
16
|
+
</div>
|
|
17
|
+
<div class="col-sm-2 form-group" >
|
|
18
|
+
<label class="font_normal_body" for="endDate">结束日期:</label>
|
|
19
|
+
<datepicker id="endDate" placeholder="结束日期" style="width: 60%"
|
|
20
|
+
v-model="model.endDate"
|
|
21
|
+
:value.sync="model.endDate"
|
|
22
|
+
:disabled-days-of-Week="[]"
|
|
23
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
24
|
+
:show-reset-button="reset">
|
|
25
|
+
</datepicker>
|
|
26
|
+
</div><!--
|
|
27
|
+
<div class="col-sm-2 form-group">
|
|
28
|
+
<label class="font_normal_body"> 公司 </label>
|
|
29
|
+
<right-tree @re-res="$parent.$parent.getRes" style="width: 60%"></right-tree>
|
|
30
|
+
</div>
|
|
31
|
+
<div class="col-sm-2 form-group">
|
|
32
|
+
<label class="font_normal_body"> 部门 </label>
|
|
33
|
+
<res-select restype='department'
|
|
34
|
+
is-mul="false"
|
|
35
|
+
@res-select="$parent.$parent.getdep"
|
|
36
|
+
:parentresid="$parent.$parent.depresid"
|
|
37
|
+
:initresid='$parent.$parent.depid'>
|
|
38
|
+
</res-select>
|
|
50
39
|
|
|
51
40
|
</div>
|
|
52
|
-
<div class="
|
|
53
|
-
<
|
|
54
|
-
<
|
|
55
|
-
|
|
41
|
+
<div class="col-sm-2 form-group">
|
|
42
|
+
<label class="font_normal_body"> 人员 </label>
|
|
43
|
+
<res-select restype='user'
|
|
44
|
+
is-mul="false"
|
|
45
|
+
@res-select="$parent.$parent.getuser"
|
|
46
|
+
:parentresid="$parent.$parent.userresid"
|
|
47
|
+
:initresid='$parent.$parent.operatorid'>
|
|
48
|
+
</res-select>
|
|
56
49
|
</div>
|
|
50
|
+
-->
|
|
51
|
+
<res-select-group :show-component="$parent.$parent.resshow" :selectin="true" :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
57
52
|
</div>
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
<
|
|
62
|
-
<
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
<
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
</
|
|
74
|
-
<tr>
|
|
75
|
-
<th colspan='9' style="font-weight: normal; text-align: center;">
|
|
76
|
-
<div>
|
|
77
|
-
<span v-show="$parent.orgname.trim()!=''">公司:{{$parent.orgname}}</span>
|
|
78
|
-
<span v-show="$parent.depname.trim()!=''"> 部门:{{$parent.depname}}</span>
|
|
79
|
-
<span v-show="$parent.operatorname.trim()!=''">人员:{{$parent.operatorname}}</span>
|
|
80
|
-
</div>
|
|
81
|
-
</th>
|
|
82
|
-
</tr>
|
|
83
|
-
</thead>
|
|
84
|
-
<tr>
|
|
85
|
-
<td colspan='9'>
|
|
86
|
-
{{{ model.data.substring(26,model.data.length-8) }}}
|
|
87
|
-
</td>
|
|
88
|
-
</tr>
|
|
89
|
-
<tfoot>
|
|
90
|
-
<tr style="text-align: left">
|
|
91
|
-
<th colspan='3'>财务审核:</th>
|
|
92
|
-
<th colspan='3'>收款审核:</th>
|
|
93
|
-
<th colspan='3'>收款员:</th>
|
|
94
|
-
</tr>
|
|
95
|
-
</tfoot>
|
|
96
|
-
</table>
|
|
97
|
-
{{{ $parent.reportStr}}}
|
|
98
|
-
</div>
|
|
99
|
-
</criteria-paged>
|
|
100
|
-
<modal :show.sync="show" v-ref:modal small backdrop="false">
|
|
101
|
-
<header slot="modal-header" class="modal-header">
|
|
102
|
-
<h4 class="modal-title">输入文件名称</h4>
|
|
103
|
-
</header>
|
|
104
|
-
<article slot="modal-body" class="modal-body">
|
|
105
|
-
<div class="form-group">
|
|
106
|
-
<input type="text" class="form-control" v-model="filename" placeholder='保存的文件名'>
|
|
53
|
+
<div class="span" style = "float:right;">
|
|
54
|
+
<button class="button_search" @click="$parent.$parent.searchData()">查询</button>
|
|
55
|
+
<report-print id='gasprice' top='3cm' left='0' width='100%' height='100%' :preview="true"></report-print>
|
|
56
|
+
<report-excel id='gasprice'></report-excel>
|
|
57
|
+
<div style="float: right" class="button_spacing" :class="{'button_shrink_top':$parent.$parent.criteriaShow,
|
|
58
|
+
'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.hidden()"></div>
|
|
59
|
+
</div>
|
|
60
|
+
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
61
|
+
<div class="col-sm-2 form-group">
|
|
62
|
+
<label class="font_normal_body">收费状态</label>
|
|
63
|
+
<v-select :value.sync="$parent.$parent.f_state" multiple
|
|
64
|
+
v-model="$parent.$parent.f_state"
|
|
65
|
+
:options='$parent.$parent.charge_state' placeholder='请选择'
|
|
66
|
+
condition="f_state in {}"
|
|
67
|
+
close-on-select></v-select>
|
|
68
|
+
</div>
|
|
107
69
|
</div>
|
|
108
|
-
</
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
70
|
+
</div>
|
|
71
|
+
</criteria>
|
|
72
|
+
<div partial='list' v-el:handcollect id='gasprice' style="overflow-y: scroll">
|
|
73
|
+
<table class='tableprint' style="margin: 0px auto">
|
|
74
|
+
<thead>
|
|
75
|
+
<tr>
|
|
76
|
+
<th :colspan='$parent.spans' style="font-weight: normal; text-align: left;">
|
|
77
|
+
<h3 style="text-align: center">收费员收费汇总报表</h3>
|
|
78
|
+
</th>
|
|
79
|
+
</tr>
|
|
80
|
+
<tr>
|
|
81
|
+
<th :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
|
|
82
|
+
开始时间:{{model.model.startDate}}
|
|
83
|
+
结束时间:{{ model.model.endDate }} <br/>
|
|
84
|
+
<!--打印时间:{{{$parent.printTime}}}-->
|
|
85
|
+
打印时间:{{$parent.printTime}}
|
|
86
|
+
<!--收费员:{{// $parent.operatorname}}-->
|
|
87
|
+
</th>
|
|
88
|
+
</tr>
|
|
89
|
+
<tr>
|
|
90
|
+
<th :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
|
|
91
|
+
<div>
|
|
92
|
+
<span style="font-weight: normal;text-align: center;margin:5px 15px" v-show="$parent.orgname">公司:{{$parent.orgname}}</span>
|
|
93
|
+
<span v-show="$parent.depname"> 部门:{{$parent.depname}}</span>
|
|
94
|
+
<!-- <span style="font-weight: normal;text-align: center;margin:5px 15px" v-show="$refs.criteria.$refs.res.obj.operatornames[0]">人员:{{$parent.operatorname}}</span>-->
|
|
95
|
+
</div>
|
|
96
|
+
</th>
|
|
97
|
+
</tr>
|
|
98
|
+
</thead>
|
|
99
|
+
<tr>
|
|
100
|
+
<td :colspan='$parent.spans' class="noborder">
|
|
101
|
+
{{{ model.data.substring(26,model.data.length-8) }}}
|
|
102
|
+
</td>
|
|
103
|
+
</tr>
|
|
104
|
+
<tfoot>
|
|
105
|
+
<tr style="text-align: left">
|
|
106
|
+
<th :colspan='Math.floor($parent.spans/3)'>财务审核:</th>
|
|
107
|
+
<th :colspan='Math.floor($parent.spans/3)'>收款审核:</th>
|
|
108
|
+
<th :colspan='Math.floor($parent.spans/3)'>收款员:</th>
|
|
109
|
+
</tr>
|
|
110
|
+
</tfoot>
|
|
111
|
+
</table>
|
|
112
|
+
{{{ $parent.reportStr}}}
|
|
113
|
+
</div>
|
|
114
|
+
</criteria-paged>
|
|
115
|
+
</div>
|
|
116
|
+
</template>
|
|
116
117
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
118
|
+
<script>
|
|
119
|
+
import { DataModel } from 'vue-client'
|
|
120
|
+
import co from 'co'
|
|
121
|
+
|
|
122
|
+
export default {
|
|
123
|
+
title: '收费员收费汇总报表',
|
|
124
|
+
props: ['data'],
|
|
125
|
+
data () {
|
|
126
|
+
return {
|
|
127
|
+
printTime: this.$login.toStandardTimeString(),
|
|
128
|
+
depresid: [],
|
|
129
|
+
userresid: [],
|
|
130
|
+
f_orgid: this.$login.f.orgid,
|
|
131
|
+
f_depid: this.$login.f.depids,
|
|
132
|
+
f_operatorid: this.$login.f.id,
|
|
133
|
+
operatorid: [],
|
|
134
|
+
depid: [],
|
|
135
|
+
orgname: '',
|
|
136
|
+
depname: '',
|
|
137
|
+
criteriaShow: false,
|
|
138
|
+
operatorname: '',
|
|
139
|
+
orgCondtionStr: '1=1',
|
|
140
|
+
f_state:['有效'],
|
|
141
|
+
model: new DataModel('rs/report/operatorSellReport', {startDate: 'this.model.startDate', endDate: 'this.model.endDate',
|
|
142
|
+
f_orgid: 'this.model.f_orgid'}),
|
|
143
|
+
reportStr: null,
|
|
144
|
+
resshow:['company','department','operator'],
|
|
145
|
+
spans: 0,
|
|
146
|
+
initres: {
|
|
147
|
+
org: [this.$login.f.orgid],
|
|
148
|
+
dep: [],
|
|
149
|
+
user: []
|
|
138
150
|
}
|
|
139
151
|
}
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
console.log(this.$login.f)
|
|
168
|
-
},
|
|
169
|
-
methods: {
|
|
170
|
-
searchData () {
|
|
171
|
-
this.$refs.paged.$refs.criteria.search()
|
|
172
|
-
},
|
|
173
|
-
selfSearch (args) {
|
|
174
|
-
this.printTime = this.$login.toStandardTimeString()
|
|
175
|
-
console.log( "condition:" + args.condition)
|
|
176
|
-
let orgcondition = '1=1'
|
|
177
|
-
if (this.f_orgid[0]) {
|
|
178
|
-
orgcondition += ' and f_orgid in (' + this.f_orgid + ')'
|
|
179
|
-
}
|
|
180
|
-
let deps = ''
|
|
181
|
-
let i = 0
|
|
182
|
-
let depss = ''
|
|
183
|
-
if (this.f_depid[0]) {
|
|
184
|
-
for ( i; i< this.f_depid.length; i++ )
|
|
185
|
-
deps += `'${this.f_depid[i]}',`
|
|
186
|
-
depss = deps.toString().substring(1,deps.length-2)
|
|
187
|
-
orgcondition += " and f_depid in ( '" + depss + "' ) "
|
|
188
|
-
}else {
|
|
189
|
-
depss = ''
|
|
190
|
-
}
|
|
191
|
-
console.log("所选部门:" + depss)
|
|
192
|
-
|
|
193
|
-
let opes = ''
|
|
194
|
-
let j = 0
|
|
195
|
-
let opess = ''
|
|
196
|
-
if(this.f_operatorid[0]) {
|
|
197
|
-
for ( j; j< this.f_operatorid.length; j++ )
|
|
198
|
-
opes += `'${this.f_operatorid[j]}',`
|
|
199
|
-
opess = opes.toString().substring(1,opes.length-2)
|
|
200
|
-
orgcondition += "and f_operatorid in ( '" + opess + "' ) "
|
|
201
|
-
}else {
|
|
202
|
-
opess = ''
|
|
203
|
-
}
|
|
204
|
-
console.log("所选人员:" + opess)
|
|
205
|
-
|
|
206
|
-
this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition + " and " + args.condition
|
|
207
|
-
this.$refs.paged.search(args)
|
|
208
|
-
},
|
|
209
|
-
getRes (obj) {
|
|
210
|
-
this.orgname = obj.res[0]
|
|
211
|
-
this.depresid = obj.resids
|
|
212
|
-
this.f_orgid = obj.resids
|
|
213
|
-
this.userresid = obj.resids
|
|
214
|
-
},
|
|
215
|
-
getdep (obj, val) {
|
|
216
|
-
this.depname = val
|
|
217
|
-
// this.userresid = obj
|
|
218
|
-
this.f_depid = obj
|
|
219
|
-
},
|
|
220
|
-
getuser ( obj, val) {
|
|
221
|
-
this.operatorname = val
|
|
222
|
-
this.f_operatorid = obj
|
|
223
|
-
},
|
|
152
|
+
},
|
|
153
|
+
ready () {
|
|
154
|
+
this.$refs.paged.$refs.criteria.model.startDate = this.$login.toStandardDateString() + ' 00:00:00'
|
|
155
|
+
this.$refs.paged.$refs.criteria.model.endDate = this.$login.toStandardDateString() + ' 23:59:59'
|
|
156
|
+
console.log(this.$login.f)
|
|
157
|
+
},
|
|
158
|
+
methods: {
|
|
159
|
+
searchData () {
|
|
160
|
+
this.$refs.paged.$refs.criteria.search()
|
|
161
|
+
},
|
|
162
|
+
selfSearch (args) {
|
|
163
|
+
this.printTime = this.$login.toStandardTimeString()
|
|
164
|
+
let orgcondition = '1=1'
|
|
165
|
+
let orgstr = this.orgCondtionStr
|
|
166
|
+
orgcondition = orgcondition + orgstr
|
|
167
|
+
/* if (this.f_orgid && this.f_orgid[0]) {
|
|
168
|
+
orgcondition += ' and f_orgid in (' + this.f_orgid + ')'
|
|
169
|
+
}
|
|
170
|
+
if (this.f_depid && this.f_depid[0]) {
|
|
171
|
+
orgcondition += ' and f_depid in (' + this.f_depid + ')'
|
|
172
|
+
}
|
|
173
|
+
if(this.f_operatorid && this.f_operatorid[0]) {
|
|
174
|
+
orgcondition += ' and f_operatorid in (' + this.f_operatorid + ')'
|
|
175
|
+
}*/
|
|
176
|
+
this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
|
|
177
|
+
this.$refs.paged.search(args)
|
|
178
|
+
},
|
|
224
179
|
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
if (val.f_files_path) {
|
|
251
|
-
this.getFileContent(val.f_files_path)
|
|
252
|
-
} else {
|
|
253
|
-
this.reportStr = null
|
|
254
|
-
}
|
|
255
|
-
}
|
|
256
|
-
},
|
|
257
|
-
computed: {
|
|
258
|
-
metertypes() {
|
|
259
|
-
return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('气表类型')]
|
|
180
|
+
hidden() {
|
|
181
|
+
this.criteriaShow = !this.criteriaShow
|
|
182
|
+
},
|
|
183
|
+
getRes (condition, obj) {
|
|
184
|
+
this.orgCondtionStr = condition
|
|
185
|
+
this.orgname = obj.orgnames[0]
|
|
186
|
+
this.depname = obj.depnames[0]
|
|
187
|
+
},
|
|
188
|
+
getdep (obj, val) {
|
|
189
|
+
this.depname = val[0]
|
|
190
|
+
this.userresid = obj
|
|
191
|
+
this.f_depid = obj
|
|
192
|
+
},
|
|
193
|
+
getuser ( obj, val) {
|
|
194
|
+
this.operatorname = val[0]
|
|
195
|
+
this.f_operatorid = obj
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
watch: {
|
|
199
|
+
'model.data' (val) {
|
|
200
|
+
let len=0
|
|
201
|
+
let a=val.split('</tr>')
|
|
202
|
+
for(let i=0;i<a.length;i++){
|
|
203
|
+
if(a[i].split('</td>').length-1>len){
|
|
204
|
+
len=a[i].split('</td>').length-1
|
|
260
205
|
}
|
|
261
206
|
}
|
|
207
|
+
this.spans = len
|
|
262
208
|
}
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
209
|
+
},
|
|
210
|
+
computed: {
|
|
211
|
+
charge_state() {
|
|
212
|
+
return [{label: '全部', value: ''}, ...this.$appdata.getParam('收费状态')]
|
|
267
213
|
}
|
|
268
|
-
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
</script>
|
|
217
|
+
<style scoped>
|
|
218
|
+
.noborder{
|
|
219
|
+
border: none;
|
|
220
|
+
}
|
|
221
|
+
</style>
|
|
@@ -181,9 +181,9 @@
|
|
|
181
181
|
<th><nobr>表号</nobr></th>
|
|
182
182
|
<th><nobr>客户名称</nobr></th>
|
|
183
183
|
<th><nobr>客户状态</nobr></th>
|
|
184
|
-
<th><nobr
|
|
184
|
+
<th><nobr>客户地址</nobr></th>
|
|
185
185
|
<th><nobr>建档日期</nobr></th>
|
|
186
|
-
<th><nobr
|
|
186
|
+
<th><nobr>客户类型</nobr></th>
|
|
187
187
|
<th><nobr>用气性质</nobr></th>
|
|
188
188
|
<th><nobr>表具状态</nobr></th>
|
|
189
189
|
<th><nobr>气表品牌</nobr></th>
|
|
@@ -33,7 +33,7 @@ export default{
|
|
|
33
33
|
},
|
|
34
34
|
//收据查询默认选择
|
|
35
35
|
receiptexportConfig: {
|
|
36
|
-
'f_userinfo_code':'用户编号', 'f_user_name':'客户名称','f_address':'客户地址', 'f_meternumber':'表号'
|
|
36
|
+
'f_userinfo_code': '用户编号', 'f_user_name': '客户名称','f_address': '客户地址', 'f_meternumber':'表号'
|
|
37
37
|
},
|
|
38
38
|
// 资源操作
|
|
39
39
|
resourceConfig: {
|
|
@@ -46,8 +46,8 @@ export default{
|
|
|
46
46
|
'f_address': '客户地址'
|
|
47
47
|
},
|
|
48
48
|
meterConfig: {
|
|
49
|
-
'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_olduserinfo_code': '档案编号', 'f_customer': '团缴编号',
|
|
50
|
-
'f_user_phone': '客户电话','f_rent_phone': '备用电话', 'idnumber': '身份证号', 'f_address': '客户地址', 'f_book_slice_area': '表册片区',
|
|
49
|
+
'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_olduserinfo_code': '档案编号', 'f_customer': '团缴编号', 'f_userfiles_id': '表ID',
|
|
50
|
+
'f_user_phone': '客户电话', 'f_rent_phone': '备用电话', 'idnumber': '身份证号', 'f_address': '客户地址', 'f_book_slice_area': '表册片区',
|
|
51
51
|
'f_balance_amount': '表上余额', 'f_user_type': '客户类型', 'f_usetype': '使用类型', 'f_gasproperties': '用气性质',
|
|
52
52
|
'f_meternumber': '表号', 'f_card_id': '卡号', 'f_price_name': '气价名称', 'value': '气价详情', 'f_meter_brand': '气表品牌',
|
|
53
53
|
'f_meter_style': '气表型号', 'f_inputtor': '户管员', 'f_gas_person': '通气人', 'f_gas_date': '通气时间',
|
|
@@ -417,7 +417,7 @@ export default{
|
|
|
417
417
|
},
|
|
418
418
|
transferConfig: {
|
|
419
419
|
'f_userinfo_code': '客户编号', 'f_newuser_name': '客户名称', 'f_olduserinfo_code': '档案编号', 'f_address': '客户地址',
|
|
420
|
-
'f_user_name': '
|
|
420
|
+
'f_user_name': '原客户名称', 'f_newuser_phone': '新客户电话', 'f_user_phone': '原客户电话', 'f_transfer_fees': '过户费', 'f_operate_date': '过户日期',
|
|
421
421
|
'f_operator': '操作员', 'f_depname': '部门', 'f_orgname': '公司', 'f_meternumber': '表号'
|
|
422
422
|
},
|
|
423
423
|
transferRecordConfig: {
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
close-on-select></v-select>
|
|
64
64
|
</div>
|
|
65
65
|
<div class="col-sm-2 form-group">
|
|
66
|
-
<label class="font_normal_body"
|
|
66
|
+
<label class="font_normal_body">客户类型</label>
|
|
67
67
|
<v-select :value.sync="model.f_user_type"
|
|
68
68
|
v-model="model.f_user_type" condition="f_user_type = '{}'"
|
|
69
69
|
:options='$parent.$parent.userTypes' placeholder='请选择'
|
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
<nobr>客户等级</nobr>
|
|
315
315
|
</th>
|
|
316
316
|
<th>
|
|
317
|
-
<nobr
|
|
317
|
+
<nobr>客户类型</nobr>
|
|
318
318
|
</th>
|
|
319
319
|
<th>
|
|
320
320
|
<data-order field="f_address" name="客户地址"
|