manage-client 4.0.42 → 4.0.43
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/package.json +1 -1
- package/src/filiale/jinbin/exportConfig.js +1110 -0
- package/src/filiale/jinbin/sale/businessquery/ChargeQuery.vue +1372 -0
- package/src/filiale/jinbin/sale.js +7 -0
- package/src/filiale/meihekou/AreaGeneralQuery.vue +3 -1
- package/src/filiale/rongcheng/ChargeQuery.vue +14 -1
- package/src/filiale/xinkang/ManageBrandHouseCount.vue +23 -31
- package/.gradle/8.5/checksums/checksums.lock +0 -0
- package/.gradle/8.5/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/8.5/dependencies-accessors/gc.properties +0 -0
- package/.gradle/8.5/executionHistory/executionHistory.bin +0 -0
- package/.gradle/8.5/executionHistory/executionHistory.lock +0 -0
- package/.gradle/8.5/fileChanges/last-build.bin +0 -0
- package/.gradle/8.5/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.5/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.5/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
|
@@ -135,6 +135,7 @@
|
|
|
135
135
|
show:false,
|
|
136
136
|
other:[],
|
|
137
137
|
footer:[],
|
|
138
|
+
condition: ' 1=1 ',
|
|
138
139
|
model: new PagedList('api/af-revenue/sql/areaGeneralQuery', 20, {startDate: 'this.model.startDate', endDate: 'this.model.endDate'}),
|
|
139
140
|
criteriaShow: false,
|
|
140
141
|
//小区
|
|
@@ -185,6 +186,7 @@
|
|
|
185
186
|
this.getorg([this.$login.f.orgid])
|
|
186
187
|
}
|
|
187
188
|
args.condition = `${args.condition} and a.f_filialeid = '${this.f_filialeids}'`
|
|
189
|
+
this.condition = args.condition
|
|
188
190
|
this.model.search(args.condition, args.model)
|
|
189
191
|
}
|
|
190
192
|
},
|
|
@@ -216,7 +218,7 @@
|
|
|
216
218
|
return {
|
|
217
219
|
startDate: this.$refs.paged.$refs.cri.model.startDate,
|
|
218
220
|
endDate: this.$refs.paged.$refs.cri.model.endDate,
|
|
219
|
-
condition:
|
|
221
|
+
condition: this.condition,
|
|
220
222
|
condValue: `${this.model.condValue}`
|
|
221
223
|
}
|
|
222
224
|
},
|
|
@@ -268,7 +268,20 @@
|
|
|
268
268
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_street"
|
|
269
269
|
condition="f_street like '%{}%'" placeholder='街道'>
|
|
270
270
|
</div>
|
|
271
|
-
|
|
271
|
+
<div class="col-sm-2 form-group">
|
|
272
|
+
<label class="font_normal_body">充值金额</label>
|
|
273
|
+
<input type="text" style="width:30%" class="input_search" title="大于等于" v-model="model.f_collection_small"
|
|
274
|
+
condition="f_collection >= '{}' " placeholder="大于等于">
|
|
275
|
+
<input type="text" style="width:30%" class="input_search" title="小于等于" v-model="model.f_collection_big"
|
|
276
|
+
condition="f_collection <= '{}' " placeholder="小于等于">
|
|
277
|
+
</div>
|
|
278
|
+
<div class="col-sm-2 form-group">
|
|
279
|
+
<label class="font_normal_body">充值气量</label>
|
|
280
|
+
<input type="text" style="width:30%" class="input_search" title="大于等于" v-model="model.f_pregas_small"
|
|
281
|
+
condition="f_pregas >= '{}' " placeholder="大于等于">
|
|
282
|
+
<input type="text" style="width:30%" class="input_search" title="小于等于" v-model="model.f_pregas_big"
|
|
283
|
+
condition="f_pregas <= '{}' " placeholder="小于等于">
|
|
284
|
+
</div>
|
|
272
285
|
</div>
|
|
273
286
|
</div>
|
|
274
287
|
</criteria>
|
|
@@ -6,24 +6,24 @@
|
|
|
6
6
|
<criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri>
|
|
7
7
|
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
|
|
8
8
|
<div class="row">
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
9
|
+
<div class="col-sm-2 form-group">
|
|
10
|
+
<label for="startDate" class="font_normal_body">开始日期</label>
|
|
11
|
+
<datepicker id="startDate" placeholder="开始日期" style="width:60%"
|
|
12
|
+
v-model="model.startDate"
|
|
13
|
+
:value.sync="model.startDate"
|
|
14
|
+
:format="'yyyy-MM-dd 00:00:00'"
|
|
15
|
+
:show-reset-button="true">
|
|
16
|
+
</datepicker>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="col-sm-2 form-group">
|
|
19
|
+
<label for="endDate" class="font_normal_body">结束日期</label>
|
|
20
|
+
<datepicker id="endDate" placeholder="结束日期" style="width:60%"
|
|
21
|
+
v-model="model.endDate"
|
|
22
|
+
:value.sync="model.endDate"
|
|
23
|
+
:format="'yyyy-MM-dd 23:59:59'"
|
|
24
|
+
:show-reset-button="true">
|
|
25
|
+
</datepicker>
|
|
26
|
+
</div>
|
|
27
27
|
<div class="col-sm-2 form-group">
|
|
28
28
|
<label class="font_normal_body"> 公司 </label>
|
|
29
29
|
<right-tree @re-res="$parent.$parent.getRes"></right-tree>
|
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
:footer="$parent.$parent.footer"
|
|
56
56
|
sqlurl="api/af-revenue/logic/openapi/exportfile"
|
|
57
57
|
sql-name="manageBrandHouseCount"
|
|
58
|
-
template-name='
|
|
58
|
+
template-name='用户报表'
|
|
59
59
|
:choose-col="true"></export-excel>
|
|
60
60
|
<print-data :sum-field="$parent.$parent.getfield" :model="$parent.model" :field="$parent.$parent.getfield"
|
|
61
|
-
titletable="
|
|
61
|
+
titletable="用户报表" :starthead="$parent.$parent.startDate" :defaultfield="$parent.$parent.defaultfield"
|
|
62
62
|
:sumsmodel="$parent.$parent.sumsmodel"></print-data>
|
|
63
63
|
</div>
|
|
64
64
|
</div>
|
|
@@ -153,12 +153,8 @@ import defaultPrint from '../../components/sale/config/DefaultPrint'
|
|
|
153
153
|
import exportConfig from './exportConfig'
|
|
154
154
|
import PrintDataSelf from '../../components/sale/common/PrintDataSelf'
|
|
155
155
|
|
|
156
|
-
let readySomething = async function (self) {
|
|
157
|
-
self.$refs.paged.$refs.cri.model.startDate = self.$login.toStandardDateString() + ' 00:00:00'
|
|
158
|
-
self.$refs.paged.$refs.cri.model.endDate = self.$login.toStandardDateString() + ' 23:59:59'
|
|
159
|
-
}
|
|
160
156
|
export default {
|
|
161
|
-
title: '
|
|
157
|
+
title: '用户报表',
|
|
162
158
|
data() {
|
|
163
159
|
return {
|
|
164
160
|
depresid: [],
|
|
@@ -166,6 +162,7 @@ export default {
|
|
|
166
162
|
f_orgid: this.$login.f.orgid,
|
|
167
163
|
f_depid: this.$login.f.depids,
|
|
168
164
|
f_operatorid: this.$login.f.id,
|
|
165
|
+
userstates:this.$appdata.getParam('用户状态') ? [{label: '全部', value: ''}, ...this.$appdata.getParam('用户状态')] : [],
|
|
169
166
|
operatorid: [],
|
|
170
167
|
depid: [],
|
|
171
168
|
orgname: '',
|
|
@@ -175,7 +172,7 @@ export default {
|
|
|
175
172
|
data: {},
|
|
176
173
|
other:[],
|
|
177
174
|
footer:[],
|
|
178
|
-
model: new PagedList('api/af-revenue/sql/manageBrandHouseCount', 20, { f_orgid: 'this.model.f_orgid'},{
|
|
175
|
+
model: new PagedList('api/af-revenue/sql/manageBrandHouseCount', 20, { startDate: 'this.model.startDate', endDate: 'this.model.endDate', f_orgid: 'this.model.f_orgid'},{
|
|
179
176
|
f_total_users: 0,
|
|
180
177
|
f_civilian_users: 0,
|
|
181
178
|
f_non_civilian_users: 0,
|
|
@@ -201,11 +198,6 @@ export default {
|
|
|
201
198
|
}
|
|
202
199
|
},
|
|
203
200
|
ready() {
|
|
204
|
-
readySomething(this).then(() => {
|
|
205
|
-
this.$emit('ready')
|
|
206
|
-
}).catch((error) => {
|
|
207
|
-
this.$emit('error', error)
|
|
208
|
-
})
|
|
209
201
|
},
|
|
210
202
|
methods: {
|
|
211
203
|
getotherfooter(){
|
|
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
|