manage-client-xy 3.2.12 → 3.2.13

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.
@@ -11,7 +11,7 @@ var compiler = webpack(config)
11
11
  // Define HTTP proxies to your custom API backend
12
12
  // https://github.com/chimurai/http-proxy-middleware
13
13
  // var bendi = 'http://127.0.0.1:8089/manage', fuwu = 'http://36.103.224.217:6300/'
14
- var bendi = 'http://172.16.16.163:8300/'
14
+ var bendi = 'http://127.0.0.1:8888/'
15
15
  , fuwu = 'http://172.16.16.163:8300/'
16
16
  // ,fuwu = 'http://172.16.16.163:8300/'
17
17
  var proxyTable = {
@@ -22,6 +22,12 @@ var proxyTable = {
22
22
  '/rs/logic/exportfile': {
23
23
  target: bendi
24
24
  },
25
+ '/rs/logic/saleExport': {
26
+ target: fuwu
27
+ },
28
+ '/rs/sql/qc_statistics_manage': {
29
+ target: fuwu
30
+ },
25
31
  '/files': {
26
32
  target: fuwu
27
33
  },
@@ -78,7 +84,7 @@ var proxyTable = {
78
84
  target: fuwu
79
85
  },
80
86
  '/rs/logic/SumSettleFileImport': {
81
- target: 'http://127.0.0.1:8087'
87
+ target: fuwu
82
88
  },
83
89
  '/rs': {
84
90
  target: fuwu
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manage-client-xy",
3
- "version": "3.2.12",
3
+ "version": "3.2.13",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -87,6 +87,15 @@
87
87
  close-on-select>
88
88
  </v-select>
89
89
  </div>
90
+ <div class="col-sm-2 form-group">
91
+ <label class="font_normal_body">是否网厅</label>
92
+ <v-select :value.sync="$parent.$parent.f_online_hall"
93
+ :options="$parent.$parent.isOnlineHall"
94
+ :search="false"
95
+ placeholder='请选择'
96
+ condition="{}"
97
+ close-on-select></v-select>
98
+ </div>
90
99
  </div>
91
100
  </div>
92
101
  </criteria>
@@ -204,6 +213,8 @@ export default {
204
213
  },
205
214
  residentialArea:[],
206
215
  area:[],
216
+ isOnlineHall: [{label: '全部', value: ''}, {label: '是', value: '是'}, {label: '否', value: '否'}],
217
+ f_online_hall: [],
207
218
  show: false,
208
219
  rowdata: {},
209
220
  thead: '',
@@ -249,6 +260,11 @@ export default {
249
260
  },
250
261
 
251
262
  selfSearch(args) {
263
+ if(this.f_online_hall[0] === '是'){
264
+ args.condition += ` and f_source = '网厅'`
265
+ } else if (this.f_online_hall[0] === '否'){
266
+ args.condition += ` and f_source is null`
267
+ }
252
268
  //小区查询条件
253
269
  this.area = this.$refs.paged.$refs.cri.model.f_residential_area
254
270
  console.log("=====小区model绑定====",this.area)
@@ -104,6 +104,15 @@
104
104
  close-on-select>
105
105
  </v-select>
106
106
  </div>
107
+ <div class="col-sm-2 form-group">
108
+ <label class="font_normal_body">是否网厅</label>
109
+ <v-select :value.sync="$parent.$parent.f_online_hall"
110
+ :options="$parent.$parent.isOnlineHall"
111
+ :search="false"
112
+ placeholder='请选择'
113
+ condition="{}"
114
+ close-on-select></v-select>
115
+ </div>
107
116
  </div>
108
117
  </div>
109
118
  </criteria>
@@ -371,6 +380,8 @@
371
380
  sumsmodel: {},
372
381
  handshow: false,
373
382
  transferInfo: {},
383
+ isOnlineHall: [{label: '全部', value: ''}, {label: '是', value: '是'}, {label: '否', value: '否'}],
384
+ f_online_hall: [],
374
385
  newImgList: {},
375
386
  imgList: {},
376
387
  showAttachment: false,
@@ -432,6 +443,11 @@
432
443
  this.showinfo = true
433
444
  },
434
445
  async selfSearch(args) {
446
+ if(this.f_online_hall[0] === '是'){
447
+ args.condition += ` and f_source = '网厅'`
448
+ } else if (this.f_online_hall[0] === '否'){
449
+ args.condition += ` and f_source is null`
450
+ }
435
451
  //小区查询条件
436
452
  this.area = this.$refs.paged.$refs.cri.model.f_residential_area
437
453
  console.log("=====小区model绑定====", this.area)
package/src/main.js CHANGED
@@ -2,12 +2,12 @@ import Vue from 'vue'
2
2
  import App from './App'
3
3
  import { all } from 'vue-client'
4
4
  import { system } from 'system-clients'
5
- import { sale } from 'sale-client'
6
- import saleManage from './saleManage'
7
- import webmeterManage from './webmeterManage'
5
+ // import { sale } from 'sale-client'
6
+ // import saleManage from './saleManage'
7
+ // import webmeterManage from './webmeterManage'
8
8
  import reportManage from './reportManage'
9
- import newmanage from './newmanage'
10
- import ManageHome from './ManageHome'
9
+ // import newmanage from './newmanage'
10
+ // import ManageHome from './ManageHome'
11
11
  import echarts from 'echarts'
12
12
  import AMap from 'vue-amap';
13
13
 
@@ -38,12 +38,12 @@ AMap.initAMapApiLoader({
38
38
 
39
39
  Vue.prototype.$echarts = echarts
40
40
  all()
41
- sale()
41
+ // sale()
42
42
  system(false)
43
- saleManage()
44
- webmeterManage()
45
- ManageHome()
46
- newmanage()
43
+ // saleManage()
44
+ // webmeterManage()
45
+ // ManageHome()
46
+ // newmanage()
47
47
  reportManage()
48
48
  require('./bootstrap/less/bootstrap.less')
49
49
  require('./bootstrap/less/manageStyle/manageStyle.less')
File without changes
File without changes
@@ -1,2 +0,0 @@
1
- #Thu Jun 12 15:46:48 CST 2025
2
- gradle.version=8.8
File without changes