sale-client 3.5.245 → 3.5.246
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
CHANGED
|
@@ -738,6 +738,7 @@
|
|
|
738
738
|
return {
|
|
739
739
|
iswork:false,
|
|
740
740
|
other:[],
|
|
741
|
+
condition:'',
|
|
741
742
|
footer:[],
|
|
742
743
|
data: {},
|
|
743
744
|
model: new PagedList('rs/sql/salehandplanQuery', 20, {}, {
|
|
@@ -1041,6 +1042,7 @@
|
|
|
1041
1042
|
}
|
|
1042
1043
|
|
|
1043
1044
|
args.condition = `${args.condition} and f_meter_classify = '机表' ` + this.orgCondtionStr
|
|
1045
|
+
this.condition = args.condition
|
|
1044
1046
|
this.model.search(args.condition, args.model)
|
|
1045
1047
|
this.sumsmodel = this.$refs.paged.$refs.grid.model.sums
|
|
1046
1048
|
},
|
|
@@ -1183,7 +1185,8 @@
|
|
|
1183
1185
|
return {
|
|
1184
1186
|
startDate: this.$refs.paged.$refs.cri.model.startDate,
|
|
1185
1187
|
endDate: this.$refs.paged.$refs.cri.model.endDate,
|
|
1186
|
-
condition:
|
|
1188
|
+
condition: this.condition
|
|
1189
|
+
}
|
|
1187
1190
|
},
|
|
1188
1191
|
getfield() {
|
|
1189
1192
|
return this.config.excelHeaders
|
package/src/sale.js
CHANGED
|
@@ -118,7 +118,7 @@ export default function () {
|
|
|
118
118
|
// 读卡后,卡上信息
|
|
119
119
|
Vue.component('cardinfo', (resolve) => { require(['./components/revenue/base/leftview/CardInfo'], resolve) })
|
|
120
120
|
// 当前选择用户的用户基本信息
|
|
121
|
-
Vue.component('userinfo', (resolve) => { require(['./components/revenue/base/leftview/Userinfo'], resolve) })
|
|
121
|
+
Vue.component('sale-userinfo', (resolve) => { require(['./components/revenue/base/leftview/Userinfo'], resolve) })
|
|
122
122
|
// 当前选择用户的表具基本信息
|
|
123
123
|
Vue.component('user-meterinfodetail', (resolve) => { require(['./components/revenue/base/leftview/meterinfodetail'], resolve) })
|
|
124
124
|
// 当前选择用户的其他信息
|