manage-client 3.3.171 → 3.3.174
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 +193 -193
- package/gradle/wrapper/gradle-wrapper.properties +5 -5
- package/gradlew +234 -234
- package/package.json +1 -1
- package/src/components/SellReport/BusinessClassify.vue +292 -290
- package/src/components/SellReport/GasMoneyPublicConReport.vue +258 -0
- package/src/components/sale/businessquery/FMYGasQuery.vue +9 -0
- package/src/filiale/tongchuan/InspectListGas.vue +9 -36
- package/src/main.js +76 -68
- package/src/reportManage.js +4 -0
- package/.gradle/7.4/checksums/checksums.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.bin +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.4/fileChanges/last-build.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.4/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +0 -2
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/file-system.probe +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
|
@@ -0,0 +1,258 @@
|
|
|
1
|
+
<template>
|
|
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"></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
|
+
@res-select="$parent.$parent.getdep"
|
|
35
|
+
:parentresid ="$parent.$parent.depresid"
|
|
36
|
+
:initresid='$parent.$parent.depid'>
|
|
37
|
+
</res-select>
|
|
38
|
+
|
|
39
|
+
</div>
|
|
40
|
+
<div class="col-sm-2 form-group">
|
|
41
|
+
<label class="font_normal_body"> 人员 </label>
|
|
42
|
+
<res-select restype='user'
|
|
43
|
+
@res-select="$parent.$parent.getuser"
|
|
44
|
+
:parentresid="$parent.$parent.userresid"
|
|
45
|
+
:initresid='$parent.$parent.operatorid'>
|
|
46
|
+
</res-select>
|
|
47
|
+
</div>
|
|
48
|
+
<div class="col-sm-2 form-group">
|
|
49
|
+
<label class="font_normal_body" title="分组项一">分组项一</label>
|
|
50
|
+
<v-select :value.sync="model.f_public_group1"
|
|
51
|
+
v-model="model.f_public_group1"
|
|
52
|
+
v-ref:groupone
|
|
53
|
+
:options='$parent.$parent.group1' placeholder='请选择'
|
|
54
|
+
close-on-select></v-select>
|
|
55
|
+
</div>
|
|
56
|
+
<div class="col-sm-2 form-group">
|
|
57
|
+
<label class="font_normal_body" title="分组项二">分组项二</label>
|
|
58
|
+
<v-select :value.sync="model.f_public_group2"
|
|
59
|
+
v-ref:grouptwo
|
|
60
|
+
v-model="model.f_public_group2"
|
|
61
|
+
:options='$parent.$parent.group2' placeholder='请选择'
|
|
62
|
+
close-on-select></v-select>
|
|
63
|
+
</div>
|
|
64
|
+
<div style = "float:right;">
|
|
65
|
+
<button class="button_search" @click="$parent.$parent.searchData()">查询</button>
|
|
66
|
+
<report-print id='gasprice' top='3cm' left='0' width='100%' height='100%' :preview="true"></report-print>
|
|
67
|
+
<report-excel id='gasprice'></report-excel>
|
|
68
|
+
</div>
|
|
69
|
+
</div>
|
|
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" v-if="!$parent.data.f_files_path">
|
|
74
|
+
<thead>
|
|
75
|
+
<tr>
|
|
76
|
+
<th colspan='6' style="font-weight: bold; text-align: left;">
|
|
77
|
+
<h3 style="text-align: center">用气统计报表</h3>
|
|
78
|
+
</th>
|
|
79
|
+
</tr>
|
|
80
|
+
<tr>
|
|
81
|
+
<th colspan='6' style="font-weight: normal; text-align: center;">
|
|
82
|
+
开始时间:{{model.model.startDate}}
|
|
83
|
+
结束时间:{{ model.model.endDate }}
|
|
84
|
+
</th>
|
|
85
|
+
</tr>
|
|
86
|
+
<tr>
|
|
87
|
+
<th colspan='6' style="font-weight: normal; text-align: center;">
|
|
88
|
+
打印时间:{{{$parent.printTime}}}
|
|
89
|
+
</th>
|
|
90
|
+
</tr>
|
|
91
|
+
<tr>
|
|
92
|
+
<th colspan='6' style="font-weight: normal; text-align: center;">
|
|
93
|
+
<div>
|
|
94
|
+
<span v-show="$parent.orgname.trim()!=''">公司:{{$parent.orgname}}</span>
|
|
95
|
+
<span v-show="$parent.depname.trim()!=''"> 部门:{{$parent.depname}}</span>
|
|
96
|
+
</div>
|
|
97
|
+
</th>
|
|
98
|
+
</tr>
|
|
99
|
+
</thead>
|
|
100
|
+
<tr>
|
|
101
|
+
<td colspan='6' style="font-weight: normal;" id="test">
|
|
102
|
+
{{{ model.data.substring(26,model.data.length-8) }}}
|
|
103
|
+
</td>
|
|
104
|
+
</tr>
|
|
105
|
+
<tfoot>
|
|
106
|
+
<tr style="text-align: left">
|
|
107
|
+
<th colspan='2' style="font-weight: normal; text-align: center;">
|
|
108
|
+
收款人:
|
|
109
|
+
</th><th colspan='2' style="font-weight: normal; text-align: center;">
|
|
110
|
+
审核人:
|
|
111
|
+
</th><th colspan='2' style="font-weight: normal; text-align: center;">
|
|
112
|
+
经手人:
|
|
113
|
+
</th>
|
|
114
|
+
</tr>
|
|
115
|
+
</tfoot>
|
|
116
|
+
</table>
|
|
117
|
+
{{{ $parent.reportStr}}}
|
|
118
|
+
</div>
|
|
119
|
+
</criteria-paged>
|
|
120
|
+
</div>
|
|
121
|
+
</template>
|
|
122
|
+
|
|
123
|
+
<script>
|
|
124
|
+
import { DataModel } from 'vue-client'
|
|
125
|
+
import co from 'co'
|
|
126
|
+
export default {
|
|
127
|
+
title: '用气统计报表',
|
|
128
|
+
props: ['data'],
|
|
129
|
+
data () {
|
|
130
|
+
return {
|
|
131
|
+
printTime: this.$login.toStandardTimeString(),
|
|
132
|
+
depresid: [],
|
|
133
|
+
userresid: [],
|
|
134
|
+
initres: {
|
|
135
|
+
org:[this.$login.f.orgid],
|
|
136
|
+
dep:[],
|
|
137
|
+
user:[]
|
|
138
|
+
},
|
|
139
|
+
f_public_group1: '',
|
|
140
|
+
f_public_group2: '',
|
|
141
|
+
f_orgid: this.$login.f.orgid,
|
|
142
|
+
f_depid: this.$login.f.depids,
|
|
143
|
+
f_operatorid: this.$login.f.id,
|
|
144
|
+
operatorid: [],
|
|
145
|
+
depid: [],
|
|
146
|
+
orgname: '',
|
|
147
|
+
group1Name: '',
|
|
148
|
+
group2Name: '',
|
|
149
|
+
depname: '',
|
|
150
|
+
operatorname: '',
|
|
151
|
+
orgCondtionStr: '1=1',
|
|
152
|
+
model: new DataModel('api/af-revenue/report/PublicConReport',
|
|
153
|
+
{startDate: 'this.model.startDate',
|
|
154
|
+
endDate: 'this.model.endDate',
|
|
155
|
+
f_orgid: 'this.model.f_orgid',
|
|
156
|
+
f_public_group1: 'this.model.f_public_group1[0]',
|
|
157
|
+
f_public_group2: 'this.model.f_public_group2[0]',
|
|
158
|
+
group1Name: 'this.model.group1Name',
|
|
159
|
+
group2Name: 'this.model.group2Name'
|
|
160
|
+
}
|
|
161
|
+
),
|
|
162
|
+
reportStr: null,
|
|
163
|
+
show: false,
|
|
164
|
+
spans: ''
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
ready () {
|
|
168
|
+
this.$refs.paged.$refs.criteria.model.startDate = this.$login.toStandardDateString() + ' 00:00:00'
|
|
169
|
+
this.$refs.paged.$refs.criteria.model.endDate = this.$login.toStandardDateString() + ' 23:59:59'
|
|
170
|
+
// this.$refs.paged.$refs.criteria.search()
|
|
171
|
+
},
|
|
172
|
+
methods: {
|
|
173
|
+
searchData () {
|
|
174
|
+
this.$refs.paged.$refs.criteria.search()
|
|
175
|
+
},
|
|
176
|
+
selfSearch (args) {
|
|
177
|
+
this.printTime = this.$login.toStandardTimeString()
|
|
178
|
+
this.$refs.paged.$refs.criteria.model.group1Name = this.$refs.paged.$refs.criteria.$refs.groupone.selectedItems
|
|
179
|
+
this.$refs.paged.$refs.criteria.model.group2Name = this.$refs.paged.$refs.criteria.$refs.grouptwo.selectedItems
|
|
180
|
+
let orgcondition = '1 = 1'
|
|
181
|
+
if (this.f_orgid[0]) {
|
|
182
|
+
orgcondition += ` and t1.f_orgid in ('${this.f_orgid}')`
|
|
183
|
+
}
|
|
184
|
+
if (this.f_depid[0]) {
|
|
185
|
+
orgcondition += ` and t1.f_depid in ('${this.f_depid}')`
|
|
186
|
+
}
|
|
187
|
+
if(this.f_operatorid[0]) {
|
|
188
|
+
orgcondition += ` and t1.f_operatorid in ('${this.f_operatorid}')`
|
|
189
|
+
}
|
|
190
|
+
let name1 = args.model.f_public_group1
|
|
191
|
+
let name2 = args.model.f_public_group2
|
|
192
|
+
if (name1 == null || name1 == '' || name2 == null || name2 == ''){
|
|
193
|
+
alert("请选择分组项!!!")
|
|
194
|
+
return
|
|
195
|
+
}
|
|
196
|
+
if (name2.toString() == name1.toString()){
|
|
197
|
+
alert("分组项一与分组项二不能重复!!!")
|
|
198
|
+
return
|
|
199
|
+
}
|
|
200
|
+
console.log(args.model.f_public_group1)
|
|
201
|
+
this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
|
|
202
|
+
this.$refs.paged.search(args)
|
|
203
|
+
},
|
|
204
|
+
getRes (obj) {
|
|
205
|
+
this.orgname = obj.res[0]
|
|
206
|
+
this.depresid = obj.resids
|
|
207
|
+
this.f_orgid = obj.resids
|
|
208
|
+
},
|
|
209
|
+
getdep (obj, val) {
|
|
210
|
+
this.depname = val[0]
|
|
211
|
+
this.userresid = obj
|
|
212
|
+
this.f_depid = obj
|
|
213
|
+
},
|
|
214
|
+
getuser ( obj, val) {
|
|
215
|
+
this.operatorname = val[0]
|
|
216
|
+
this.f_operatorid = obj
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
watch: {
|
|
220
|
+
'data' (val) {
|
|
221
|
+
if (val.f_files_path) {
|
|
222
|
+
this.getFileContent(val.f_files_path)
|
|
223
|
+
} else {
|
|
224
|
+
this.reportStr = null
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
'model.data' (val) {
|
|
228
|
+
let tab = document.getElementById('test').children[0]
|
|
229
|
+
var tds = tab.getElementsByTagName('td')
|
|
230
|
+
var num = 0
|
|
231
|
+
for (let td of tds) {
|
|
232
|
+
let span = td.getAttribute('colspan')
|
|
233
|
+
num = num + ((span ? span : 1) - 0)
|
|
234
|
+
}
|
|
235
|
+
this.spans = num
|
|
236
|
+
}
|
|
237
|
+
},
|
|
238
|
+
computed: {
|
|
239
|
+
group1() {
|
|
240
|
+
return [{label:'用户类型', value:'f_user_type'},
|
|
241
|
+
{label:'用气性质', value:'f_gasproperties'},
|
|
242
|
+
{label:'付款方式', value:'f_payment'},
|
|
243
|
+
{label:'气价类型', value:'f_price_name'}]
|
|
244
|
+
},
|
|
245
|
+
group2() {
|
|
246
|
+
return [{label:'用户类型', value:'f_user_type'},
|
|
247
|
+
{label:'用气性质', value:'f_gasproperties'},
|
|
248
|
+
{label:'付款方式', value:'f_payment'},
|
|
249
|
+
{label:'气价类型', value:'f_price_name'}]
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
</script>
|
|
254
|
+
<style scoped>
|
|
255
|
+
.noborder{
|
|
256
|
+
border: none;
|
|
257
|
+
}
|
|
258
|
+
</style>
|
|
@@ -135,6 +135,14 @@
|
|
|
135
135
|
condition="f_user_state = '{}'"
|
|
136
136
|
close-on-select></v-select>
|
|
137
137
|
</div>
|
|
138
|
+
<div class="col-sm-2 form-group" >
|
|
139
|
+
<label class="font_normal_body">表具状态</label>
|
|
140
|
+
<v-select :value.sync="model.f_table_state"
|
|
141
|
+
v-model="model.f_table_state"
|
|
142
|
+
:options='$parent.$parent.tablestates' placeholder='请选择'
|
|
143
|
+
condition="f_table_state = '{}'"
|
|
144
|
+
close-on-select></v-select>
|
|
145
|
+
</div>
|
|
138
146
|
<div class="col-sm-2 form-group">
|
|
139
147
|
<label class="font_normal_body">用气性质</label>
|
|
140
148
|
<v-select :value.sync="model.f_gasproperties"
|
|
@@ -496,6 +504,7 @@ import exportConfig from '../config/exportConfig'
|
|
|
496
504
|
// 使用类型,壁挂炉
|
|
497
505
|
usetypes: [{label: '全部', value: ''},{label: '是', value: `= '壁挂炉'`},{label: '否', value: `!= '壁挂炉'`}],
|
|
498
506
|
userstates: this.$appdata.getParam('用户状态') ? [{label: '全部', value: ''}, ...this.$appdata.getParam('用户状态')] : [],
|
|
507
|
+
tablestates: this.$appdata.getParam('表具状态') ? [{label: '全部', value: ''}, ...this.$appdata.getParam('表具状态')] : [],
|
|
499
508
|
meterbooks: [{label: '全部',value: ''}], //抄表册
|
|
500
509
|
tempfalg :false,
|
|
501
510
|
lastorgstr:'',
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
</div>
|
|
241
241
|
|
|
242
242
|
|
|
243
|
-
<div
|
|
243
|
+
<div class="col-sm-2 flex-row" style="white-space: nowrap">
|
|
244
244
|
<label class="font_normal_body"> 期间次数</label>
|
|
245
245
|
<div class="row">
|
|
246
246
|
<input type="text" style="width:30%" class="input_search" v-model="model.sellcishumin"
|
|
@@ -250,17 +250,7 @@
|
|
|
250
250
|
condition="sellcishu <= {} " placeholder="">
|
|
251
251
|
</div>
|
|
252
252
|
</div>
|
|
253
|
-
<div
|
|
254
|
-
<label class="font_normal_body"> 期间次数</label>
|
|
255
|
-
<div class="row">
|
|
256
|
-
<input type="text" style="width:30%" class="input_search" v-model="model.handsellcishumin"
|
|
257
|
-
condition="sellcishu >= {} " placeholder="">
|
|
258
|
-
<label class="font_normal_body"> ≤ x ≤ </label>
|
|
259
|
-
<input type="text" style="width:30%" class="input_search" v-model="model.handsellcishumax"
|
|
260
|
-
condition="sellcishu <= {} " placeholder="">
|
|
261
|
-
</div>
|
|
262
|
-
</div>
|
|
263
|
-
<div v-if="$parent.$parent.meter_classify == '卡表' || $parent.$parent.meter_classify == '物联网表'" class="col-sm-2 flex-row" style="white-space: nowrap">
|
|
253
|
+
<div class="col-sm-2 flex-row" style="white-space: nowrap">
|
|
264
254
|
<label class="font_normal_body">期间购气量</label>
|
|
265
255
|
<div class="row">
|
|
266
256
|
<input type="text" style="width:30%" class="input_search" v-model="model.sellpregasmin"
|
|
@@ -270,16 +260,6 @@
|
|
|
270
260
|
condition="sellpregas <= {} " placeholder="">
|
|
271
261
|
</div>
|
|
272
262
|
</div>
|
|
273
|
-
<div v-if="$parent.$parent.meter_classify == '机表'" class="col-sm-2 flex-row" style="white-space: nowrap">
|
|
274
|
-
<label class="font_normal_body">期间用气量</label>
|
|
275
|
-
<div class="row">
|
|
276
|
-
<input type="text" style="width:30%" class="input_search" v-model="model.handsellpregasmin"
|
|
277
|
-
condition="sellpregas >= {} " placeholder="">
|
|
278
|
-
<label class="font_normal_body"> ≤ x ≤ </label>
|
|
279
|
-
<input type="text" style="width:30%" class="input_search" v-model="model.handsellpregasmax"
|
|
280
|
-
condition="sellpregas <= {} " placeholder="">
|
|
281
|
-
</div>
|
|
282
|
-
</div>
|
|
283
263
|
|
|
284
264
|
|
|
285
265
|
</div>
|
|
@@ -312,9 +292,8 @@
|
|
|
312
292
|
<!-- <th v-show="$parent.$parent.$parent.meter_classify == '机表'"><nobr>总抄表次数</nobr></th>-->
|
|
313
293
|
<!-- <th v-show="$parent.$parent.$parent.meter_classify == '卡表'"><nobr>总购气量</nobr></th>-->
|
|
314
294
|
<!-- <th v-show="$parent.$parent.$parent.meter_classify == '机表'"><nobr>总抄表气量</nobr></th>-->
|
|
315
|
-
<th
|
|
316
|
-
<th
|
|
317
|
-
<th v-show="$parent.$parent.$parent.meter_classify == '卡表' || $parent.$parent.$parent.meter_classify == '物联网表'"><nobr>期间购气量</nobr></th>
|
|
295
|
+
<th><nobr>期间购气次数</nobr></th>
|
|
296
|
+
<th><nobr>期间购气量</nobr></th>
|
|
318
297
|
<th v-show="$parent.$parent.$parent.meter_classify == '机表'"><nobr>期间抄表气量</nobr></th>
|
|
319
298
|
<!-- <th v-show="$parent.$parent.$parent.meter_classify == '卡表'"><nobr>累计未购气天数</nobr></th>-->
|
|
320
299
|
<!-- <th v-show="$parent.$parent.$parent.meter_classify == '机表'"><nobr>累计未抄表天数</nobr></th>-->
|
|
@@ -357,7 +336,7 @@
|
|
|
357
336
|
<tr style="position: relative" class="table-bordered">
|
|
358
337
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;color: #5CB95C;font-weight: bold">汇总信息</td>
|
|
359
338
|
<!-- <td v-if="meter_classify == '卡表'" style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">总购气量合计:  {{sumsmodel.pregas}}</td>-->
|
|
360
|
-
<td
|
|
339
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">期间购气量合计:  {{sumsmodel.sellpregas}}</td>
|
|
361
340
|
<!-- <td v-if="meter_classify == '机表'" style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">总抄表气量合计:  {{sumsmodel.pregas}}</td>-->
|
|
362
341
|
<td v-if="meter_classify == '机表'" style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">期间抄表气量合计: {{sumsmodel.sellpregas}}</td>
|
|
363
342
|
</tr>
|
|
@@ -564,16 +543,10 @@
|
|
|
564
543
|
if(this.meter_classify == '物联网表'){
|
|
565
544
|
this.model.url= 'api/af-revenue/sql/getwulw_listgas'
|
|
566
545
|
}
|
|
567
|
-
if (this.
|
|
568
|
-
|
|
569
|
-
args.condition = args.condition + "and sellcishu > 0"
|
|
570
|
-
}
|
|
571
|
-
}
|
|
572
|
-
if (this.meter_classify == '机表') {
|
|
573
|
-
if (!this.$refs.paged.$refs.cri.model.handsellcishumin && !this.$refs.paged.$refs.cri.model.handsellcishumax) {
|
|
574
|
-
args.condition = args.condition + "and sellcishu > 0"
|
|
575
|
-
}
|
|
546
|
+
if (!this.$refs.paged.$refs.cri.model.sellcishumin && !this.$refs.paged.$refs.cri.model.sellcishumax) {
|
|
547
|
+
args.condition = args.condition + "and sellcishu > 0"
|
|
576
548
|
}
|
|
549
|
+
|
|
577
550
|
console.log(this.$login.f)
|
|
578
551
|
if(this.$refs.paged.$refs.cri.model.startDate){
|
|
579
552
|
this.model.params.startDate = `'${this.$refs.paged.$refs.cri.model.startDate} 00:00:00' `
|
|
@@ -671,7 +644,7 @@
|
|
|
671
644
|
}
|
|
672
645
|
},
|
|
673
646
|
f_meter_classify(){
|
|
674
|
-
return [{label: '卡表', value: '卡表'},{label: '机表', value: '机表'},{label: '
|
|
647
|
+
return [{label: '卡表', value: '卡表'},{label: '机表', value: '机表'},{label: '物联网表', value: '物联网表'} ]
|
|
675
648
|
// return [{label: '卡表', value: '卡表'}]
|
|
676
649
|
},
|
|
677
650
|
Gasproperties2() {
|
package/src/main.js
CHANGED
|
@@ -1,68 +1,76 @@
|
|
|
1
|
-
import Vue from 'vue'
|
|
2
|
-
import App from './App'
|
|
3
|
-
import { all } from 'vue-client'
|
|
4
|
-
|
|
5
|
-
// import { sale } from 'sale-client'
|
|
6
|
-
import { system } from 'system-clients'
|
|
7
|
-
import { ldap } from 'ldap-clients'
|
|
8
|
-
import saleManage from './saleManage'
|
|
9
|
-
import
|
|
10
|
-
import webmeterManage from './webmeterManage'
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import
|
|
15
|
-
import
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
Vue.
|
|
21
|
-
|
|
22
|
-
//
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"AMap.
|
|
35
|
-
"AMap.
|
|
36
|
-
"AMap.
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
//
|
|
57
|
-
//
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
//
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
1
|
+
import Vue from 'vue'
|
|
2
|
+
import App from './App'
|
|
3
|
+
import { all } from 'vue-client'
|
|
4
|
+
|
|
5
|
+
// import { sale } from 'sale-client'
|
|
6
|
+
import { system } from 'system-clients'
|
|
7
|
+
import { ldap } from 'ldap-clients'
|
|
8
|
+
// import saleManage from './saleManage'
|
|
9
|
+
// import FilialeSaleManage from './filiale/WEINAN/sale'
|
|
10
|
+
// import webmeterManage from './webmeterManage'
|
|
11
|
+
// import FilialeWebmeterManage from './filiale/yuncheng/webmeterManage'
|
|
12
|
+
import reportManage from './reportManage'
|
|
13
|
+
// import FilialeReportManage from './filiale/WEINAN/reportManage'
|
|
14
|
+
// import newmanage from './newmanage'
|
|
15
|
+
// import ManageHome from './ManageHome'
|
|
16
|
+
import echarts from 'echarts'
|
|
17
|
+
import AMap from 'vue-amap'
|
|
18
|
+
|
|
19
|
+
Vue.config.silent = true
|
|
20
|
+
// Vue.mmType = 'AES'
|
|
21
|
+
|
|
22
|
+
// // 开启 nginx 加密
|
|
23
|
+
// Vue.mmType = 'nginx'
|
|
24
|
+
// Vue.HWQMM = [51, 150, 231, 300, 565, 708, 721, 952, 738, 560, 935, 912, 1274, 1148, 840, 1440]
|
|
25
|
+
//
|
|
26
|
+
// Vue.use(AMap);
|
|
27
|
+
|
|
28
|
+
// 初始化vue-amap
|
|
29
|
+
AMap.initAMapApiLoader({
|
|
30
|
+
// 高德key
|
|
31
|
+
key: '3cec9ae8e2349207f7ac29279e3f4abe',
|
|
32
|
+
// 插件集合 (插件按需引入)
|
|
33
|
+
plugin: [
|
|
34
|
+
"AMap.Autocomplete", //输入提示插件
|
|
35
|
+
"AMap.PlaceSearch", //POI搜索插件
|
|
36
|
+
"AMap.Scale", //右下角缩略图插件 比例尺
|
|
37
|
+
"AMap.OverView", //地图鹰眼插件
|
|
38
|
+
"AMap.ToolBar", //地图工具条0
|
|
39
|
+
"AMap.MapType", //类别切换控件,实现默认图层与卫星图、实施交通图层之间切换的控制
|
|
40
|
+
"AMap.PolyEditor", //编辑 折线多,边形
|
|
41
|
+
"AMap.CircleEditor", //圆形编辑器插件
|
|
42
|
+
"AMap.Geolocation" //定位控件,用来获取和展示用户主机所在的经纬度位置
|
|
43
|
+
],
|
|
44
|
+
uiVersion: "1.0"
|
|
45
|
+
});
|
|
46
|
+
/** **************************通用组件******************************/
|
|
47
|
+
|
|
48
|
+
Vue.prototype.$echarts = echarts
|
|
49
|
+
all()
|
|
50
|
+
// sale()
|
|
51
|
+
ldap()
|
|
52
|
+
system(false)
|
|
53
|
+
|
|
54
|
+
// saleManage()
|
|
55
|
+
// FilialeSaleManage()
|
|
56
|
+
// webmeterManage()
|
|
57
|
+
// FilialeWebmeterManage()
|
|
58
|
+
// ManageHome()
|
|
59
|
+
// newmanage()
|
|
60
|
+
reportManage()
|
|
61
|
+
// FilialeReportManage()
|
|
62
|
+
require('system-clients/src/styles/less/bootstrap.less')
|
|
63
|
+
require('./components/qinhua/Style/qinhuaStyle.less')
|
|
64
|
+
// require('./bootstrap/less/manageStyle/manageChile.less')
|
|
65
|
+
// require('./bootstrap/less/manageStyle/safeStyle.less')
|
|
66
|
+
|
|
67
|
+
//大屏展示要放开的样式
|
|
68
|
+
// require('system-clients/src/styles/less/manageStyle/manageChile.less')
|
|
69
|
+
// require('system-clients/src/styles/less/manageStyle/safeStyle.less')
|
|
70
|
+
// require('system-clients/src/styles/less/manageStyle/manageStyle.less')
|
|
71
|
+
|
|
72
|
+
new Vue({
|
|
73
|
+
el: 'body',
|
|
74
|
+
components: { App }
|
|
75
|
+
})
|
|
76
|
+
|
package/src/reportManage.js
CHANGED
|
@@ -530,6 +530,10 @@ export default function () {
|
|
|
530
530
|
Vue.component('public-sell-report', (resolve) => {
|
|
531
531
|
require(['./components/SellReport/GasMoneyPublicReport'], resolve)
|
|
532
532
|
})
|
|
533
|
+
// 气费通用报表简版
|
|
534
|
+
Vue.component('public-sell-con-report', (resolve) => {
|
|
535
|
+
require(['./components/SellReport/GasMoneyPublicConReport'], resolve)
|
|
536
|
+
})
|
|
533
537
|
// 其他收费通用报表
|
|
534
538
|
Vue.component('public-other-report', (resolve) => {
|
|
535
539
|
require(['./components/SellReport/OtherChargePublicReport'], resolve)
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|