manage-client 4.1.22-yangchun → 4.1.180-linshi-jinhong

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.
Binary file
@@ -12,16 +12,16 @@ var compiler = webpack(config)
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
14
  var shaoguan = 'http://119.146.1.106:8300/'
15
- var qtx= 'http://36.103.222.144:6300/'
15
+ var qtx = 'http://36.103.222.144:6300/'
16
16
  // var bendi = 'http://220.194.141.253:8600/'
17
17
  // var bendi = 'http://203.57.101.233:9001'
18
18
  // var bendi = 'http://172.168.1.11:9001/'
19
- // var bendi = 'http://192.168.50.4:8400/'
19
+ // var bendi = 'http://203.57.101.233:9001/'
20
20
  // var bendi = 'http://121.36.106.17:8400/'
21
21
  // var fuwu = 'http://203.57.101.233:9001'
22
- var bendi = 'http://192.168.50.67:30785/'
22
+ var bendi = 'http://218.77.35.25:30785/'
23
23
  // var bendi = 'http://119.187.112.234:8400/'
24
- var wode = 'http://192.168.50.67:30785/'
24
+ var wode = 'http://218.77.35.25:30785/'
25
25
  // 192.168.
26
26
  // var str = 'http://127.0.0.1:8080/manage', str2 = 'http://192.168.50.199:8300'
27
27
  // var str = 'http://192.168.10.233:8300', str2 = 'http://192.168.10.14:8300'
@@ -29,8 +29,24 @@ var proxyTable = {
29
29
  '/rs/logic/exportfile': {
30
30
  target: bendi
31
31
  },
32
+ '/dataManage': {
33
+ target: 'http://203.57.101.233:9001/'
34
+
35
+ },
36
+ '/api/af-revenue/sql/': {
37
+ pathRewrite: {
38
+ '^/api/af-revenue': '/'
39
+ },
40
+ target: 'http://127.0.0.1:9026/'
41
+ },
42
+ '/api/af-revenue/sql/WeChatPayment': {
43
+ pathRewrite: {
44
+ '^/api/af-revenue': '/rs'
45
+ },
46
+ target: 'http://127.0.0.1:8080/'
47
+ },
32
48
  '/api': {
33
- target: 'http://192.168.50.67:30785'
49
+ target: 'http://192.168.50.67:31567/'
34
50
 
35
51
  },
36
52
  '/rs/sql/chargeQuery_by_gasproperties': {
@@ -44,7 +60,7 @@ var proxyTable = {
44
60
  },
45
61
  // 查找资源服务数据
46
62
  '/rs/search': {
47
- target: bendi
63
+ target: 'http://218.77.35.25:30785/'
48
64
  },
49
65
  // 查找资源服务数据
50
66
  '/rs/logic/getLogin': {
@@ -86,7 +102,7 @@ var proxyTable = {
86
102
  target: bendi
87
103
  },
88
104
  '/rs/vue': {
89
- target: bendi
105
+ target: 'http://218.77.35.25:30785/'
90
106
  },
91
107
  '/rs/file': {
92
108
  target: bendi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manage-client",
3
- "version": "4.1.22-yangchun",
3
+ "version": "4.1.180-linshi-jinhong",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -67,7 +67,7 @@
67
67
  "style": "0.0.3",
68
68
  "style-loader": "^0.20.3",
69
69
  "swiper": "^5.4.5",
70
- "system-clients": "4.0.12",
70
+ "system-clients": "3.3.2",
71
71
  "ldap-clients": "3.0.96",
72
72
  "url-loader": "^0.5.7",
73
73
  "vue-amap": "0.5.10",
@@ -921,8 +921,8 @@
921
921
 
922
922
  getCondition() {
923
923
  return {
924
- startDate: this.$refs.paged.$refs.cri.model.handStartDate,
925
- endDate: this.$refs.paged.$refs.cri.model.handEndDate,
924
+ startDate: this.$refs.paged.$refs.cri.model.startDate,
925
+ endDate: this.$refs.paged.$refs.cri.model.endDate,
926
926
  condition: `${this.$refs.paged.$refs.cri.condition}` + this.orgCondtionStr }
927
927
  },
928
928
  getfield() {
@@ -799,6 +799,19 @@
799
799
  }
800
800
  },
801
801
  selfSearch(args) {
802
+ //小区查询条件
803
+ this.area = this.$refs.paged.$refs.cri.model.f_residential_area
804
+ console.log("=====小区model绑定====",this.area)
805
+ if(this.area.length !== 0){
806
+ let str = JSON.stringify(this.area)
807
+ str = str.replace(/"/g,`'`)
808
+ str = str.replace(/\[/g,``)
809
+ str = str.replace(/\]/g,``)
810
+ console.log("=====小区model22222222222绑定====",str)
811
+ //查询多个小区时条件
812
+ args.condition += ` and f_residential_area in ( ${str} )`
813
+ }
814
+
802
815
  if (!this.orgCondtionStr) {
803
816
  args.condition = `${args.condition}` + " and f_orgid = " + this.$login.f.orgid
804
817
  } else {
@@ -24,13 +24,6 @@ export default function () {
24
24
  Vue.component('handplan-query', (resolve) => {
25
25
  require(['./HandplanQuery'], resolve)
26
26
  })
27
-
28
- Vue.component('report-list', (resolve) => {
29
- require(['./ReportList'], resolve)
30
- })
31
- Vue.component('webmeter-query', (resolve) => {
32
- require(['./WebmeterQuery'], resolve)
33
- })
34
27
  // 用户失联
35
28
  Vue.component('user-lost-contact-analysis', (resolve) => { require(['./UserLostContactAnalysis'], resolve) })
36
29
  }
@@ -860,7 +860,7 @@ export default {
860
860
  let data = {
861
861
  filepath: res.f_downloadpath
862
862
  }
863
- new HttpResetClass().load('POST','/rs/logic/meter_GetUserInfoFromExcel', {data: data}, {
863
+ new HttpResetClass().load('POST','/rs/logic/safe_GetUserInfoFromExcel', {data: data}, {
864
864
  resolveMsg: '导入成功!已生成条件,若要去除导入条件请点击旁边 ‘清空用户编号’ 按钮。',
865
865
  rejectMsg: '导入失败'
866
866
  }).then((res) => {
@@ -954,11 +954,7 @@ export default {
954
954
  }
955
955
  },
956
956
  getCondition() {
957
- let condition = `${this.$refs.paged.$refs.cri.condition}` + this.orgCondtionStr;
958
- if (this.uploadCodeCondition) {
959
- condition += ` and ${this.uploadCodeCondition}`;
960
- }
961
- return {condition, orderitem: this.orderitem}
957
+ return {condition: `${this.$refs.paged.$refs.cri.condition}` + this.orgCondtionStr, orderitem: this.orderitem}
962
958
  },
963
959
  getfield() {
964
960
  let data = {}
@@ -11,9 +11,4 @@ export default function () {
11
11
  Vue.use(MagGetSaleParam)
12
12
  // 异常汇总分析
13
13
  Vue.component('meter-exception-list', (resolve) => { require(['./MeterExceptionList'], resolve) })
14
-
15
- // 综合档案信息查询
16
- Vue.component('record-info-query', (resolve) => {
17
- require(['./RecordInfoQuery'], resolve)
18
- })
19
14
  }
@@ -496,7 +496,7 @@
496
496
  con= `${this.$refs.paged.$refs.cri.condition} `
497
497
  }
498
498
  return {
499
- condition: this.condition,
499
+ condition: con ,
500
500
  startDate:`${this.$refs.paged.$refs.cri.model.startDate}`,
501
501
  endDate:`${this.$refs.paged.$refs.cri.model.endDate}`
502
502
  }
@@ -56,7 +56,6 @@
56
56
  sqlurl="api/af-revenue/logic/openapi/exportfile"
57
57
  sql-name="arrearsQuery"
58
58
  template-name='用户欠费查询导出'
59
- v-if="this.$login.r.includes('用户欠费查询导出')
60
59
  :choose-col="true"></export-excel>
61
60
 
62
61
  <print-data :sum-field="$parent.$parent.getfield" :model="$parent.model"
@@ -48,7 +48,6 @@
48
48
  sqlurl="api/af-revenue/logic/openapi/exportfile"
49
49
  sql-name="handPeopleQuery"
50
50
  template-name='抄表员统计查询导出'
51
- v-if="this.$login.r.includes('抄表员统计查询导出')
52
51
  :choose-col="true"></export-excel>
53
52
  <print-data :sum-field="$parent.$parent.getfield" :model="$parent.model" :field="$parent.$parent.getfield"
54
53
  :defaultfield="$parent.$parent.defaultfield"
package/src/main.js CHANGED
@@ -6,7 +6,7 @@ import { all } from 'vue-client'
6
6
  import { system } from 'system-clients'
7
7
  import { ldap } from 'ldap-clients'
8
8
  import saleManage from './saleManage'
9
- import ShanXianSaleManage from './filiale/fugou/sale'
9
+ import ShanXianSaleManage from './filiale/rizhao/sale'
10
10
  // import ShanXianwebSaleManage from './filiale/rongcheng/webmeterManage'
11
11
  import webmeterManage from './webmeterManage'
12
12
  import reportManage from './reportManage'