manage-client 3.2.289 → 3.2.290
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
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
:footer="$parent.$parent.footer"
|
|
66
66
|
:header="$parent.$parent.other"
|
|
67
67
|
sqlurl="rs/logic/exportfile"
|
|
68
|
-
sql-name="
|
|
68
|
+
sql-name="newAreaGeneralQuery"
|
|
69
69
|
template-name='小区综合查询导出'
|
|
70
70
|
:choose-col="true"></export-excel>
|
|
71
71
|
<print-data :sum-field="$parent.$parent.getfield" :model="$parent.model" :field="$parent.$parent.getfield"
|
|
@@ -228,7 +228,7 @@ export default {
|
|
|
228
228
|
if (!this.f_filialeid) {
|
|
229
229
|
this.f_filialeid = this.$login.f.orgid
|
|
230
230
|
}
|
|
231
|
-
args.condition = `${args.condition} and ui.
|
|
231
|
+
args.condition = `${args.condition} and ui.f_filialeid = '${this.f_filialeid}'`
|
|
232
232
|
this.criteriaShow = false
|
|
233
233
|
this.$refs.paged.$refs.grid.$el.scrollTop = 0
|
|
234
234
|
this.condition = args.condition
|
|
@@ -248,7 +248,7 @@ export default {
|
|
|
248
248
|
let HttpReset = new HttpResetClass()
|
|
249
249
|
var data = await HttpReset.load('POST', 'rs/sql/manage_getarealist', {
|
|
250
250
|
data: {
|
|
251
|
-
condition: `1=1 and s.
|
|
251
|
+
condition: `1=1 and s.f_filialeid = '${this.$login.f.orgid}'`
|
|
252
252
|
}
|
|
253
253
|
}, {resolveMsg: null, rejectMsg: '获取小区失败!'})
|
|
254
254
|
console.log('小区',data)
|
|
@@ -260,7 +260,7 @@ export default {
|
|
|
260
260
|
this.residentialArea = house
|
|
261
261
|
let street= await HttpReset.load('POST', 'rs/sql/manage_getstreetlist', {
|
|
262
262
|
data: {
|
|
263
|
-
condition: `1=1 and s.
|
|
263
|
+
condition: `1=1 and s.f_filialeid = '${this.$login.f.orgid}'`
|
|
264
264
|
}
|
|
265
265
|
}, {resolveMsg: null, rejectMsg: '获取区域失败!'})
|
|
266
266
|
console.log('区域',data)
|
|
@@ -45,6 +45,14 @@
|
|
|
45
45
|
:initresid='queryData.operatorid'>
|
|
46
46
|
</res-select>
|
|
47
47
|
</div>
|
|
48
|
+
<div class="col-sm-3 form-group">
|
|
49
|
+
<label class="font_normal_body" for="oper">pos收费: </label>
|
|
50
|
+
<v-select :value.sync="queryData.f_payment"
|
|
51
|
+
v-model="queryData.f_payment"
|
|
52
|
+
:options='f_payents' placeholder='请选择'
|
|
53
|
+
condition="f_bank_name = '{}'"
|
|
54
|
+
close-on-select></v-select>
|
|
55
|
+
</div>
|
|
48
56
|
<div class="col-sm-2 form-group" style="float:right;">
|
|
49
57
|
<button class="button_search" @click="searchData()">查询</button>
|
|
50
58
|
<div style="float: right" class="button_spacing" :class="{'button_shrink_top':criteriaShow,
|
|
@@ -75,7 +83,8 @@ export default {
|
|
|
75
83
|
queryData: {
|
|
76
84
|
f_orgid: [],
|
|
77
85
|
f_depid: [],
|
|
78
|
-
f_operatorid: []
|
|
86
|
+
f_operatorid: [],
|
|
87
|
+
f_payment: []
|
|
79
88
|
},
|
|
80
89
|
orgname: '',
|
|
81
90
|
depresid: [],
|
|
@@ -84,6 +93,7 @@ export default {
|
|
|
84
93
|
operatorname: '',
|
|
85
94
|
operatorid: [],
|
|
86
95
|
depid: [],
|
|
96
|
+
f_payents: [{label: 'pos收费', value: '在线支付'}],
|
|
87
97
|
criteriaShow: false
|
|
88
98
|
}
|
|
89
99
|
},
|