manage-client 3.3.34 → 3.3.35
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/components/sale/filesquery/RecordInfoQuery.vue +1 -1
- package/src/components/webmeter/report/ReportList.vue +3 -1
- package/src/filiale/WEINAN/ReportDataQuery.vue +1 -1
- package/src/filiale/wenxi/ChargeQuery.vue +1 -1
- package/src/filiale/yuansheng/DayReportList.vue +1 -1
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<div class="col-sm-2 form-group" >
|
|
16
16
|
<label class="font_normal_body">客户名称</label>
|
|
17
17
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
18
|
-
condition="f_user_name
|
|
18
|
+
condition="f_user_name like '%{}%'" placeholder="客户名称">
|
|
19
19
|
</div>
|
|
20
20
|
<div class="col-sm-2 form-group">
|
|
21
21
|
<label class="font_normal_body">客户电话</label>
|
|
@@ -250,7 +250,7 @@
|
|
|
250
250
|
orgid:[this.$login.f.orgid],
|
|
251
251
|
criteriaShow:false,
|
|
252
252
|
orgCondtionStr: '',
|
|
253
|
-
model: new PagedList('rs/sql/manage_getReportList', 50,{},{f_meterbalanceamt: 0,f_tablebase: 0,f_meterdebitamt: 0})
|
|
253
|
+
model: new PagedList('rs/sql/manage_getReportList', 50,{startDate: 'this.model.f_start_date', endDate: 'this.model.f_end_date'},{f_meterbalanceamt: 0,f_tablebase: 0,f_meterdebitamt: 0})
|
|
254
254
|
}
|
|
255
255
|
},
|
|
256
256
|
ready () {
|
|
@@ -402,6 +402,8 @@
|
|
|
402
402
|
con = `${this.$refs.paged.$refs.criteria.condition} `+this.orgcondition
|
|
403
403
|
}
|
|
404
404
|
return {
|
|
405
|
+
startDate: this.$refs.paged.$refs.cri.model.f_start_date,
|
|
406
|
+
endDate: this.$refs.paged.$refs.cri.model.f_end_date,
|
|
405
407
|
condition: con
|
|
406
408
|
}
|
|
407
409
|
}
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
title: '上报数据查询',
|
|
158
158
|
data() {
|
|
159
159
|
return {
|
|
160
|
-
model: new PagedList('rs/sql/manage_getReportDataQuery', 20, {},{
|
|
160
|
+
model: new PagedList('rs/sql/manage_getReportDataQuery', 20, {startDate: 'this.model.startDate', endDate: 'this.model.endDate'},{
|
|
161
161
|
f_oughtamount: 0,
|
|
162
162
|
f_oughtfee: 0
|
|
163
163
|
}),
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
<div class="col-sm-2 form-group">
|
|
64
64
|
<label class="font_normal_body">客户名称</label>
|
|
65
65
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
66
|
-
condition="f_user_name
|
|
66
|
+
condition="f_user_name like '%{}%'" placeholder="客户名称">
|
|
67
67
|
</div>
|
|
68
68
|
<!-- <div class="col-sm-2 form-group">-->
|
|
69
69
|
<!-- <label class="font_normal_body">收费编号</label>-->
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
condition="f_gasproperties in {}"
|
|
37
37
|
close-on-select></v-select>
|
|
38
38
|
</div>
|
|
39
|
-
<div :class="$parent.$parent.style">
|
|
39
|
+
<div :class="$parent.$parent.style" title="参数名称:【缴费操作类型】">
|
|
40
40
|
<label class="font_normal_body">操作类型</label>
|
|
41
41
|
<v-select :value.sync="model.f_type" v-model="model.f_type"
|
|
42
42
|
:options='$parent.$parent.operates' placeholder='请选择'
|