manage-client 3.2.275 → 3.2.277
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 +2 -1
- package/package.json +1 -1
- package/src/components/webmeter/DrillData/GetNoMetereadData.vue +4 -0
- package/src/filiale/kelai/exportConfig.js +5 -0
- package/src/filiale/kelai/feimin_style.vue +3 -6
- package/src/filiale/ningjin/ChargeQuery.vue +1 -1
- package/src/filiale/wenxi/ChargeQuery.vue +12 -12
- package/src/filiale/wenxi/RecordInfoQuery.vue +27 -27
- package/src/main.js +66 -66
package/build/dev-server.js
CHANGED
|
@@ -7,6 +7,7 @@ var proxyMiddleware = require('http-proxy-middleware')
|
|
|
7
7
|
var app = express()
|
|
8
8
|
var compiler = webpack(config)
|
|
9
9
|
// var proxy = httpProxy.createProxyServer()
|
|
10
|
+
|
|
10
11
|
// Define HTTP proxies to your custom API backend
|
|
11
12
|
// https://github.com/chimurai/http-proxy-middleware
|
|
12
13
|
// var bendi = 'http://127.0.0.1:8089/manage', fuwu = 'http://36.103.224.217:6300/'
|
|
@@ -18,7 +19,7 @@ var qtx= 'http://36.103.222.144:6300/'
|
|
|
18
19
|
// var bendi = 'http://203.57.101.233:8400/'
|
|
19
20
|
// var bendi = 'http://121.36.106.17:8400/'
|
|
20
21
|
// var fuwu = 'http://203.57.101.233:9001'
|
|
21
|
-
var bendi = 'http://
|
|
22
|
+
var bendi = 'http://121.36.106.17:8400'
|
|
22
23
|
// var bendi = 'http://119.187.112.234:8400/'
|
|
23
24
|
var wode = 'http://127.0.0.1:8084'
|
|
24
25
|
// 192.168.
|
package/package.json
CHANGED
|
@@ -145,6 +145,9 @@
|
|
|
145
145
|
<th style="text-align:center">
|
|
146
146
|
<nobr>客户名称</nobr>
|
|
147
147
|
</th>
|
|
148
|
+
<th style="text-align:center">
|
|
149
|
+
<nobr>客户电话</nobr>
|
|
150
|
+
</th>
|
|
148
151
|
<th style="text-align:center">
|
|
149
152
|
<nobr>客户地址</nobr>
|
|
150
153
|
</th>
|
|
@@ -178,6 +181,7 @@
|
|
|
178
181
|
<span @click="$parent.$parent.$parent.showmsg(row)"><a>{{row.f_userinfo_code}}</a></span>
|
|
179
182
|
</nobr> </td>
|
|
180
183
|
<td style="text-align:center"><nobr>{{row.f_user_name}}</nobr></td>
|
|
184
|
+
<td style="text-align:center"><nobr>{{row.f_user_phone}}</nobr></td>
|
|
181
185
|
<td><nobr>{{row.f_address}}</nobr></td>
|
|
182
186
|
<td style="text-align:center">{{row.f_user_type}}</td>
|
|
183
187
|
<td style="text-align:center">{{row.f_gasproperties}}</td>
|
|
@@ -1058,5 +1058,10 @@ export default{
|
|
|
1058
1058
|
'f_collection': '收款', 'f_payment': '付款方式', 'f_operate_date': '收费日期', 'f_state': '状态',
|
|
1059
1059
|
'f_orgname': '所属机构', 'f_depname': '部门', 'f_operator': '操作人'
|
|
1060
1060
|
},
|
|
1061
|
+
feimin_style: {
|
|
1062
|
+
'f_userinfo_code': '用户编号', 'f_olduserinfo_code': '档案编号',
|
|
1063
|
+
'f_user_name': '用户名称', 'f_price': '单价', 'zgougas': '总购气量汇总', 'gougas': '本月购气量汇总',
|
|
1064
|
+
'bugas': '补气汇总', 'yugas': '表余量汇总', 'yonggas': '用气量汇总'
|
|
1065
|
+
}
|
|
1061
1066
|
}
|
|
1062
1067
|
|
|
@@ -81,9 +81,6 @@
|
|
|
81
81
|
<th>
|
|
82
82
|
<nobr>档案编号</nobr>
|
|
83
83
|
</th>
|
|
84
|
-
<th>
|
|
85
|
-
<nobr>用户名称</nobr>
|
|
86
|
-
</th>
|
|
87
84
|
<th>
|
|
88
85
|
<nobr>单价</nobr>
|
|
89
86
|
</th>
|
|
@@ -297,12 +294,12 @@ export default {
|
|
|
297
294
|
this.$refs.paged.$refs.cri.search()
|
|
298
295
|
},
|
|
299
296
|
selfSearch(args) {
|
|
300
|
-
let orgcondition = '
|
|
297
|
+
let orgcondition = ' f_orgid in (' + this.f_orgid + ')'
|
|
301
298
|
if (this.f_depid[0]) {
|
|
302
|
-
orgcondition += " and
|
|
299
|
+
orgcondition += " and f_depid in("+this.f_depid.toString()+')'
|
|
303
300
|
}
|
|
304
301
|
if(this.f_operatorid[0]) {
|
|
305
|
-
orgcondition += ' and
|
|
302
|
+
orgcondition += ' and f_operatorid in (' + this.f_operatorid + ')'
|
|
306
303
|
}
|
|
307
304
|
this.startDate=this.$refs.paged.$refs.cri.model.startDate.substring(0,10)
|
|
308
305
|
this.endDate=this.$refs.paged.$refs.cri.model.endDate.substring(0,10)
|
|
@@ -873,7 +873,7 @@
|
|
|
873
873
|
|
|
874
874
|
footer:[],
|
|
875
875
|
config: {
|
|
876
|
-
defaultPrint: ['f_userinfo_code', 'f_user_name', '
|
|
876
|
+
defaultPrint: ['f_userinfo_code', 'f_user_name', 'f_user_phone', 'f_address', 'f_user_type', 'f_pregas', 'f_orgname', 'f_operator', 'f_operate_date', 'f_gasproperties', 'fee']
|
|
877
877
|
},
|
|
878
878
|
//排序
|
|
879
879
|
orderitem:'',
|
|
@@ -420,12 +420,12 @@
|
|
|
420
420
|
<th>
|
|
421
421
|
<nobr>开票时间</nobr>
|
|
422
422
|
</th>
|
|
423
|
-
<th
|
|
424
|
-
<nobr>累计写卡气量</nobr
|
|
425
|
-
</th
|
|
426
|
-
<th
|
|
427
|
-
<nobr>实际写卡金额</nobr
|
|
428
|
-
</th
|
|
423
|
+
<!-- <th>-->
|
|
424
|
+
<!-- <nobr>累计写卡气量</nobr>-->
|
|
425
|
+
<!-- </th>-->
|
|
426
|
+
<!-- <th>-->
|
|
427
|
+
<!-- <nobr>实际写卡金额</nobr>-->
|
|
428
|
+
<!-- </th>-->
|
|
429
429
|
<th>
|
|
430
430
|
<nobr>冲正人</nobr>
|
|
431
431
|
</th>
|
|
@@ -631,12 +631,12 @@
|
|
|
631
631
|
<td style="text-align: center;">
|
|
632
632
|
<nobr>{{row.f_invoice_date}}</nobr>
|
|
633
633
|
</td>
|
|
634
|
-
<td style="text-align: center;"
|
|
635
|
-
<nobr>{{row.f_write_totalgas}}</nobr
|
|
636
|
-
</td
|
|
637
|
-
<td style="text-align: center;"
|
|
638
|
-
<nobr>{{row.f_write_money}}</nobr
|
|
639
|
-
</td
|
|
634
|
+
<!-- <td style="text-align: center;">-->
|
|
635
|
+
<!-- <nobr>{{row.f_write_totalgas}}</nobr>-->
|
|
636
|
+
<!-- </td>-->
|
|
637
|
+
<!-- <td style="text-align: center;">-->
|
|
638
|
+
<!-- <nobr>{{row.f_write_money}}</nobr>-->
|
|
639
|
+
<!-- </td>-->
|
|
640
640
|
<td style="text-align: center;">
|
|
641
641
|
<nobr>{{row.f_corr_operator}}</nobr>
|
|
642
642
|
</td>
|
|
@@ -76,11 +76,11 @@
|
|
|
76
76
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_people_num"
|
|
77
77
|
condition="f_people_num = '{}'" placeholder="人数">
|
|
78
78
|
</div>
|
|
79
|
-
<div class="col-sm-2 form-group"
|
|
80
|
-
<label class="font_normal_body">报警器编码</label
|
|
81
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_alarm_code"
|
|
82
|
-
condition="f_alarm_code like '%{}%'" placeholder='报警器编码'
|
|
83
|
-
</div
|
|
79
|
+
<!-- <div class="col-sm-2 form-group">-->
|
|
80
|
+
<!-- <label class="font_normal_body">报警器编码</label>-->
|
|
81
|
+
<!-- <input type="text" style="width:60%" class="input_search" v-model="model.f_alarm_code"-->
|
|
82
|
+
<!-- condition="f_alarm_code like '%{}%'" placeholder='报警器编码'>-->
|
|
83
|
+
<!-- </div>-->
|
|
84
84
|
<div class="col-sm-2 form-group">
|
|
85
85
|
<label class="font_normal_body">气表分类</label>
|
|
86
86
|
<v-select :value.sync="model.f_meter_classify"
|
|
@@ -187,24 +187,24 @@
|
|
|
187
187
|
condition="f_position = '{}'"
|
|
188
188
|
close-on-select></v-select>
|
|
189
189
|
</div>
|
|
190
|
-
<div class="col-sm-2 form-group"
|
|
191
|
-
<label class="font_normal_body">是否有自闭阀</label
|
|
192
|
-
<v-select :value.sync="model.s_devices_type" v-model="model.s_devices_type"
|
|
193
|
-
:options='$parent.$parent.selfClosing' placeholder='请选择'
|
|
194
|
-
close-on-select></v-select
|
|
195
|
-
</div
|
|
196
|
-
<div class="col-sm-2 form-group"
|
|
197
|
-
<label class="font_normal_body">是否不锈钢波纹管</label
|
|
198
|
-
<v-select :value.sync="model.s_corrugated" v-model="model.s_corrugated"
|
|
199
|
-
:options='$parent.$parent.corrugated' placeholder='请选择'
|
|
200
|
-
close-on-select></v-select
|
|
201
|
-
</div
|
|
202
|
-
<div class="col-sm-2 form-group"
|
|
203
|
-
<label class="font_normal_body">有无合同日期</label
|
|
204
|
-
<v-select :value.sync="model.s_contractdate" v-model="model.s_contractdate"
|
|
205
|
-
:options='$parent.$parent.contractDate' placeholder='请选择'
|
|
206
|
-
close-on-select></v-select
|
|
207
|
-
</div
|
|
190
|
+
<!-- <div class="col-sm-2 form-group">-->
|
|
191
|
+
<!-- <label class="font_normal_body">是否有自闭阀</label>-->
|
|
192
|
+
<!-- <v-select :value.sync="model.s_devices_type" v-model="model.s_devices_type"-->
|
|
193
|
+
<!-- :options='$parent.$parent.selfClosing' placeholder='请选择'-->
|
|
194
|
+
<!-- close-on-select></v-select>-->
|
|
195
|
+
<!-- </div>-->
|
|
196
|
+
<!-- <div class="col-sm-2 form-group">-->
|
|
197
|
+
<!-- <label class="font_normal_body">是否不锈钢波纹管</label>-->
|
|
198
|
+
<!-- <v-select :value.sync="model.s_corrugated" v-model="model.s_corrugated"-->
|
|
199
|
+
<!-- :options='$parent.$parent.corrugated' placeholder='请选择'-->
|
|
200
|
+
<!-- close-on-select></v-select>-->
|
|
201
|
+
<!-- </div>-->
|
|
202
|
+
<!-- <div class="col-sm-2 form-group">-->
|
|
203
|
+
<!-- <label class="font_normal_body">有无合同日期</label>-->
|
|
204
|
+
<!-- <v-select :value.sync="model.s_contractdate" v-model="model.s_contractdate"-->
|
|
205
|
+
<!-- :options='$parent.$parent.contractDate' placeholder='请选择'-->
|
|
206
|
+
<!-- close-on-select></v-select>-->
|
|
207
|
+
<!-- </div>-->
|
|
208
208
|
|
|
209
209
|
|
|
210
210
|
|
|
@@ -372,7 +372,7 @@
|
|
|
372
372
|
<data-order field="f_hand_date" name="最后抄表日期" :order.sync="$parent.$parent.$parent.orderFields.f_hand_date"></data-order>
|
|
373
373
|
</th>
|
|
374
374
|
<th><nobr>自动阀控</nobr></th>
|
|
375
|
-
<th><nobr>阀门状态</nobr></th
|
|
375
|
+
<!-- <th><nobr>阀门状态</nobr></th>-->
|
|
376
376
|
|
|
377
377
|
<th>
|
|
378
378
|
<!--<nobr>开户时间</nobr>-->
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
<th><nobr>备用电话</nobr></th>
|
|
391
391
|
<th><nobr>租户姓名</nobr></th>
|
|
392
392
|
<th><nobr>租户电话</nobr></th>
|
|
393
|
-
<th><nobr>是否煤改气</nobr></th
|
|
393
|
+
<!-- <th><nobr>是否煤改气</nobr></th>-->
|
|
394
394
|
|
|
395
395
|
<th><nobr>使用类型</nobr></th>
|
|
396
396
|
|
|
@@ -512,7 +512,7 @@
|
|
|
512
512
|
<!--自动阀控38-->
|
|
513
513
|
<td style="text-align: center;"><nobr>{{row.f_network_valve}}</nobr></td>
|
|
514
514
|
<!--阀门状态39-->
|
|
515
|
-
<td style="text-align: center;"><nobr>{{row.f_valve_state}}</nobr></td
|
|
515
|
+
<!-- <td style="text-align: center;"><nobr>{{row.f_valve_state}}</nobr></td>-->
|
|
516
516
|
<!--开户时间40-->
|
|
517
517
|
<td style="text-align: center;"><nobr>{{row.f_open_date}}</nobr></td>
|
|
518
518
|
<!--证件类型41-->
|
|
@@ -530,7 +530,7 @@
|
|
|
530
530
|
<!--租户电话47-->
|
|
531
531
|
<td style="text-align: center;"><nobr>{{row.f_zuhu_phone}}</nobr></td>
|
|
532
532
|
<!--是否煤改气48-->
|
|
533
|
-
<td style="text-align: center;"><nobr>{{row.f_is_mgq}}</nobr></td
|
|
533
|
+
<!-- <td style="text-align: center;"><nobr>{{row.f_is_mgq}}</nobr></td>-->
|
|
534
534
|
<!--使用类型49-->
|
|
535
535
|
<td style="text-align: center;"><nobr>{{row.f_usetype}}</nobr></td>
|
|
536
536
|
<!--表具状态50-->
|
package/src/main.js
CHANGED
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
import Vue from 'vue'
|
|
2
|
-
import App from './App'
|
|
3
|
-
import { all } from 'vue-client'
|
|
4
|
-
|
|
5
|
-
// import { sale } from 'sale-client'
|
|
6
|
-
import { system } from 'system-clients'
|
|
7
|
-
import { ldap } from 'ldap-clients'
|
|
8
|
-
import saleManage from './saleManage'
|
|
9
|
-
import webmeterManage from './webmeterManage'
|
|
10
|
-
import reportManage from './reportManage'
|
|
11
|
-
import newmanage from './newmanage'
|
|
12
|
-
import ManageHome from './ManageHome'
|
|
13
|
-
import echarts from 'echarts'
|
|
14
|
-
import AMap from 'vue-amap'
|
|
15
|
-
|
|
16
|
-
Vue.config.silent = true
|
|
17
|
-
// Vue.mmType = 'AES'
|
|
18
|
-
|
|
19
|
-
Vue.use(AMap);
|
|
20
|
-
|
|
21
|
-
// 初始化vue-amap
|
|
22
|
-
AMap.initAMapApiLoader({
|
|
23
|
-
// 高德key
|
|
24
|
-
key: '3cec9ae8e2349207f7ac29279e3f4abe',
|
|
25
|
-
// 插件集合 (插件按需引入)
|
|
26
|
-
plugin: [
|
|
27
|
-
"AMap.Autocomplete", //输入提示插件
|
|
28
|
-
"AMap.PlaceSearch", //POI搜索插件
|
|
29
|
-
"AMap.Scale", //右下角缩略图插件 比例尺
|
|
30
|
-
"AMap.OverView", //地图鹰眼插件
|
|
31
|
-
"AMap.ToolBar", //地图工具条0
|
|
32
|
-
"AMap.MapType", //类别切换控件,实现默认图层与卫星图、实施交通图层之间切换的控制
|
|
33
|
-
"AMap.PolyEditor", //编辑 折线多,边形
|
|
34
|
-
"AMap.CircleEditor", //圆形编辑器插件
|
|
35
|
-
"AMap.Geolocation" //定位控件,用来获取和展示用户主机所在的经纬度位置
|
|
36
|
-
],
|
|
37
|
-
uiVersion: "1.0"
|
|
38
|
-
});
|
|
39
|
-
/** **************************通用组件******************************/
|
|
40
|
-
|
|
41
|
-
Vue.prototype.$echarts = echarts
|
|
42
|
-
all()
|
|
43
|
-
// sale()
|
|
44
|
-
ldap()
|
|
45
|
-
system(false)
|
|
46
|
-
|
|
47
|
-
saleManage()
|
|
48
|
-
webmeterManage()
|
|
49
|
-
ManageHome()
|
|
50
|
-
newmanage()
|
|
51
|
-
reportManage(
|
|
52
|
-
require('system-clients/src/styles/less/bootstrap.less')
|
|
53
|
-
require('./components/qinhua/Style/qinhuaStyle.less')
|
|
54
|
-
// require('./bootstrap/less/manageStyle/manageChile.less')
|
|
55
|
-
// require('./bootstrap/less/manageStyle/safeStyle.less')
|
|
56
|
-
|
|
57
|
-
//大屏展示要放开的样式
|
|
58
|
-
// require('system-clients/src/styles/less/manageStyle/manageChile.less')
|
|
59
|
-
// require('system-clients/src/styles/less/manageStyle/safeStyle.less')
|
|
60
|
-
// require('system-clients/src/styles/less/manageStyle/manageStyle.less')
|
|
61
|
-
|
|
62
|
-
new Vue({
|
|
63
|
-
el: 'body',
|
|
64
|
-
components: { App }
|
|
65
|
-
})
|
|
66
|
-
|
|
1
|
+
import Vue from 'vue'
|
|
2
|
+
import App from './App'
|
|
3
|
+
import { all } from 'vue-client'
|
|
4
|
+
|
|
5
|
+
// import { sale } from 'sale-client'
|
|
6
|
+
import { system } from 'system-clients'
|
|
7
|
+
import { ldap } from 'ldap-clients'
|
|
8
|
+
import saleManage from './saleManage'
|
|
9
|
+
import webmeterManage from './webmeterManage'
|
|
10
|
+
import reportManage from './reportManage'
|
|
11
|
+
import newmanage from './newmanage'
|
|
12
|
+
import ManageHome from './ManageHome'
|
|
13
|
+
import echarts from 'echarts'
|
|
14
|
+
import AMap from 'vue-amap'
|
|
15
|
+
|
|
16
|
+
Vue.config.silent = true
|
|
17
|
+
// Vue.mmType = 'AES'
|
|
18
|
+
|
|
19
|
+
Vue.use(AMap);
|
|
20
|
+
|
|
21
|
+
// 初始化vue-amap
|
|
22
|
+
AMap.initAMapApiLoader({
|
|
23
|
+
// 高德key
|
|
24
|
+
key: '3cec9ae8e2349207f7ac29279e3f4abe',
|
|
25
|
+
// 插件集合 (插件按需引入)
|
|
26
|
+
plugin: [
|
|
27
|
+
"AMap.Autocomplete", //输入提示插件
|
|
28
|
+
"AMap.PlaceSearch", //POI搜索插件
|
|
29
|
+
"AMap.Scale", //右下角缩略图插件 比例尺
|
|
30
|
+
"AMap.OverView", //地图鹰眼插件
|
|
31
|
+
"AMap.ToolBar", //地图工具条0
|
|
32
|
+
"AMap.MapType", //类别切换控件,实现默认图层与卫星图、实施交通图层之间切换的控制
|
|
33
|
+
"AMap.PolyEditor", //编辑 折线多,边形
|
|
34
|
+
"AMap.CircleEditor", //圆形编辑器插件
|
|
35
|
+
"AMap.Geolocation" //定位控件,用来获取和展示用户主机所在的经纬度位置
|
|
36
|
+
],
|
|
37
|
+
uiVersion: "1.0"
|
|
38
|
+
});
|
|
39
|
+
/** **************************通用组件******************************/
|
|
40
|
+
|
|
41
|
+
Vue.prototype.$echarts = echarts
|
|
42
|
+
all()
|
|
43
|
+
// sale()
|
|
44
|
+
ldap()
|
|
45
|
+
system(false)
|
|
46
|
+
|
|
47
|
+
saleManage()
|
|
48
|
+
webmeterManage()
|
|
49
|
+
ManageHome()
|
|
50
|
+
newmanage()
|
|
51
|
+
reportManage()
|
|
52
|
+
require('system-clients/src/styles/less/bootstrap.less')
|
|
53
|
+
require('./components/qinhua/Style/qinhuaStyle.less')
|
|
54
|
+
// require('./bootstrap/less/manageStyle/manageChile.less')
|
|
55
|
+
// require('./bootstrap/less/manageStyle/safeStyle.less')
|
|
56
|
+
|
|
57
|
+
//大屏展示要放开的样式
|
|
58
|
+
// require('system-clients/src/styles/less/manageStyle/manageChile.less')
|
|
59
|
+
// require('system-clients/src/styles/less/manageStyle/safeStyle.less')
|
|
60
|
+
// require('system-clients/src/styles/less/manageStyle/manageStyle.less')
|
|
61
|
+
|
|
62
|
+
new Vue({
|
|
63
|
+
el: 'body',
|
|
64
|
+
components: { App }
|
|
65
|
+
})
|
|
66
|
+
|