manage-client 3.2.289 → 3.2.290-2

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.
@@ -1,13 +1,13 @@
1
- // 分公司特殊组件页面注册
2
- import Vue from 'vue'
3
- export default function () {
4
- // 汇总查询
5
- Vue.component('collect-manage', (resolve) => {require(['./CollectManage'], resolve)})
6
- // 开户查询
7
- Vue.component('new-account-query', (resolve) => { require(['./NewAccountQuery'], resolve) })
8
- // 用户查询
9
- Vue.component('user-query', (resolve) => { require(['./UserQuery'], resolve) })
10
- Vue.component('area-charge-query', (resolve) => { require(['./AreaChargeQuery'], resolve) })
11
- // 收费查询
12
- Vue.component('charge-query', (resolve) => { require(['./ChargeQuery'], resolve) })
13
- }
1
+ // 分公司特殊组件页面注册
2
+ import Vue from 'vue'
3
+ export default function () {
4
+ // 汇总查询
5
+ Vue.component('collect-manage', (resolve) => {require(['./CollectManage'], resolve)})
6
+ // 开户查询
7
+ Vue.component('new-account-query', (resolve) => { require(['./NewAccountQuery'], resolve) })
8
+ // 用户查询
9
+ Vue.component('user-query', (resolve) => { require(['./UserQuery'], resolve) })
10
+ Vue.component('area-charge-query', (resolve) => { require(['./AreaChargeQuery'], resolve) })
11
+ // 收费查询
12
+ Vue.component('charge-query', (resolve) => { require(['./ChargeQuery'], resolve) })
13
+ }
@@ -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.f_orgid = '${this.f_filialeid}'`
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.f_orgid = '${this.$login.f.orgid}'`
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.f_orgid = '${this.$login.f.orgid}'`
263
+ condition: `1=1 and s.f_filialeid = '${this.$login.f.orgid}'`
264
264
  }
265
265
  }, {resolveMsg: null, rejectMsg: '获取区域失败!'})
266
266
  console.log('区域',data)