manage-client-xy 3.2.12 → 3.2.14
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/build/dev-server.js +28 -19
- package/package.json +1 -1
- package/src/components/sale/businessquery/ChangeUserQuery.vue +16 -0
- package/src/components/sale/businessquery/TransferQuery.vue +16 -0
- package/src/components/sale/config/exportConfig.js +26 -3
- package/src/main.js +10 -10
- package/.gradle/8.8/checksums/checksums.lock +0 -0
- package/.gradle/8.8/dependencies-accessors/gc.properties +0 -0
- package/.gradle/8.8/fileChanges/last-build.bin +0 -0
- package/.gradle/8.8/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.8/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.8/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +0 -2
- package/.gradle/vcs-1/gc.properties +0 -0
package/build/dev-server.js
CHANGED
|
@@ -1,32 +1,41 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
//
|
|
1
|
+
const express = require('express')
|
|
2
|
+
const webpack = require('webpack')
|
|
3
|
+
const config = require('./webpack.dev.conf')
|
|
4
|
+
const proxyMiddleware = require('http-proxy-middleware')
|
|
5
|
+
// const httpProxy = require('http-proxy')
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
//
|
|
7
|
+
const app = express()
|
|
8
|
+
const compiler = webpack(config)
|
|
9
|
+
// const proxy = httpProxy.createProxyServer()
|
|
10
10
|
|
|
11
11
|
// Define HTTP proxies to your custom API backend
|
|
12
12
|
// https://github.com/chimurai/http-proxy-middleware
|
|
13
|
-
//
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
// const bendi = 'http://127.0.0.1:8089/manage', fuwu = 'http://36.103.224.217:6300/'
|
|
14
|
+
const bendi = 'http://127.0.0.1:8888/'
|
|
15
|
+
const fuwu = 'http://192.168.153.129:8300'
|
|
16
16
|
// ,fuwu = 'http://172.16.16.163:8300/'
|
|
17
|
-
|
|
17
|
+
const proxyTable = {
|
|
18
18
|
'/resource': {
|
|
19
19
|
target: 'http://192.168.13.135:31577/'
|
|
20
20
|
},
|
|
21
21
|
|
|
22
22
|
'/rs/logic/exportfile': {
|
|
23
|
-
target:
|
|
23
|
+
target: fuwu
|
|
24
|
+
},
|
|
25
|
+
'/rs/logic/saleExport': {
|
|
26
|
+
target: fuwu
|
|
27
|
+
},
|
|
28
|
+
'/rs/sql/qc_statistics_manage': {
|
|
29
|
+
target: fuwu
|
|
24
30
|
},
|
|
25
31
|
'/files': {
|
|
26
32
|
target: fuwu
|
|
27
33
|
},
|
|
34
|
+
'/webapps': {
|
|
35
|
+
target: fuwu
|
|
36
|
+
},
|
|
28
37
|
'/rs/sql': {
|
|
29
|
-
target:
|
|
38
|
+
target: fuwu
|
|
30
39
|
},
|
|
31
40
|
// 查找资源服务数据
|
|
32
41
|
'/rs/search': {
|
|
@@ -69,7 +78,7 @@ var proxyTable = {
|
|
|
69
78
|
target: fuwu
|
|
70
79
|
},
|
|
71
80
|
'/rs/report': {
|
|
72
|
-
target:
|
|
81
|
+
target: fuwu
|
|
73
82
|
},
|
|
74
83
|
'/rs/vue': {
|
|
75
84
|
target: fuwu
|
|
@@ -78,14 +87,14 @@ var proxyTable = {
|
|
|
78
87
|
target: fuwu
|
|
79
88
|
},
|
|
80
89
|
'/rs/logic/SumSettleFileImport': {
|
|
81
|
-
target:
|
|
90
|
+
target: fuwu
|
|
82
91
|
},
|
|
83
92
|
'/rs': {
|
|
84
93
|
target: fuwu
|
|
85
94
|
}
|
|
86
95
|
}
|
|
87
96
|
|
|
88
|
-
|
|
97
|
+
const devMiddleware = require('webpack-dev-middleware')(compiler, {
|
|
89
98
|
publicPath: config.output.publicPath,
|
|
90
99
|
stats: {
|
|
91
100
|
colors: true,
|
|
@@ -93,7 +102,7 @@ var devMiddleware = require('webpack-dev-middleware')(compiler, {
|
|
|
93
102
|
}
|
|
94
103
|
})
|
|
95
104
|
|
|
96
|
-
|
|
105
|
+
const hotMiddleware = require('webpack-hot-middleware')(compiler)
|
|
97
106
|
// force page reload when html-webpack-plugin template changes
|
|
98
107
|
compiler.plugin('compilation', function (compilation) {
|
|
99
108
|
compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
|
|
@@ -104,7 +113,7 @@ compiler.plugin('compilation', function (compilation) {
|
|
|
104
113
|
|
|
105
114
|
// proxy api requests
|
|
106
115
|
Object.keys(proxyTable).forEach(function (context) {
|
|
107
|
-
|
|
116
|
+
let options = proxyTable[context]
|
|
108
117
|
if (typeof options === 'string') {
|
|
109
118
|
options = {target: options}
|
|
110
119
|
}
|
package/package.json
CHANGED
|
@@ -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)
|
|
@@ -117,9 +117,32 @@ export default {
|
|
|
117
117
|
},
|
|
118
118
|
|
|
119
119
|
changemeterConfig: {
|
|
120
|
-
'f_userinfo_code': '客户编号',
|
|
121
|
-
'
|
|
122
|
-
'
|
|
120
|
+
'f_userinfo_code': '客户编号',
|
|
121
|
+
'f_user_name': '客户名称',
|
|
122
|
+
'f_address': '客户地址',
|
|
123
|
+
'f_meternumber': '表号',
|
|
124
|
+
'f_type': '换表类型',
|
|
125
|
+
'f_changemeter_fee': '换表费',
|
|
126
|
+
'f_using_base_old': '旧表底数',
|
|
127
|
+
'f_remanent_gas': '补气量',
|
|
128
|
+
'f_state': '状态',
|
|
129
|
+
'f_comments': '备注',
|
|
130
|
+
'f_operator': '操作员',
|
|
131
|
+
'f_depname': '部门',
|
|
132
|
+
'f_orgname': '公司',
|
|
133
|
+
'f_operate_date': '换表日期',
|
|
134
|
+
'f_meternumber_old': '旧表号',
|
|
135
|
+
'f_meter_brand_old': '旧气表品牌',
|
|
136
|
+
'f_meter_brand': '新气表品牌',
|
|
137
|
+
'f_imei': '新表识别码',
|
|
138
|
+
'f_old_imei': '旧表识别码',
|
|
139
|
+
'f_initial_base_new': '新表初始底数',
|
|
140
|
+
'f_oldodd_gas': '余气',
|
|
141
|
+
'f_remanent_money': '补气金额',
|
|
142
|
+
'f_voucher_number': '票号',
|
|
143
|
+
'f_change_operator': '换表人',
|
|
144
|
+
'f_approve_operator': '审批人',
|
|
145
|
+
'f_outlets': '网点'
|
|
123
146
|
},
|
|
124
147
|
|
|
125
148
|
otherchargeConfig: {
|
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'
|
|
5
|
+
// import { sale } from 'sale-client'
|
|
6
6
|
import saleManage from './saleManage'
|
|
7
|
-
import webmeterManage from './webmeterManage'
|
|
8
|
-
import reportManage from './reportManage'
|
|
9
|
-
import newmanage from './newmanage'
|
|
10
|
-
import ManageHome from './ManageHome'
|
|
7
|
+
// import webmeterManage from './webmeterManage'
|
|
8
|
+
// import reportManage from './reportManage'
|
|
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,13 +38,13 @@ AMap.initAMapApiLoader({
|
|
|
38
38
|
|
|
39
39
|
Vue.prototype.$echarts = echarts
|
|
40
40
|
all()
|
|
41
|
-
sale()
|
|
41
|
+
// sale()
|
|
42
42
|
system(false)
|
|
43
43
|
saleManage()
|
|
44
|
-
webmeterManage()
|
|
45
|
-
ManageHome()
|
|
46
|
-
newmanage()
|
|
47
|
-
reportManage()
|
|
44
|
+
// webmeterManage()
|
|
45
|
+
// ManageHome()
|
|
46
|
+
// newmanage()
|
|
47
|
+
// reportManage()
|
|
48
48
|
require('./bootstrap/less/bootstrap.less')
|
|
49
49
|
require('./bootstrap/less/manageStyle/manageStyle.less')
|
|
50
50
|
require('./bootstrap/less/manageStyle/manageChile.less')
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
File without changes
|