manage-client 3.3.200 → 3.3.202
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 -2
- package/package.json +1 -1
- package/src/components/webmeter/gasStatistics/GasStatistics.vue +526 -525
- package/src/components/webmeter/gasStatistics/NewGasStatistics.vue +542 -541
- package/src/filiale/kelai/NewAccountQuery.vue +417 -409
- package/src/filiale/meihekou/UserSellHeadDetail.vue +18 -18
- package/src/filiale/meihekou/config/exportConfig.js +3 -4
- package/src/main.js +68 -68
|
@@ -110,15 +110,15 @@
|
|
|
110
110
|
<th>
|
|
111
111
|
<nobr>气表类型</nobr>
|
|
112
112
|
</th>
|
|
113
|
-
<th
|
|
114
|
-
<nobr>用气量</nobr
|
|
115
|
-
</th
|
|
116
|
-
<th
|
|
117
|
-
<nobr>单价</nobr
|
|
118
|
-
</th
|
|
119
|
-
<th
|
|
120
|
-
<nobr>用气金额</nobr
|
|
121
|
-
</th
|
|
113
|
+
<!-- <th>-->
|
|
114
|
+
<!-- <nobr>用气量</nobr>-->
|
|
115
|
+
<!-- </th>-->
|
|
116
|
+
<!-- <th>-->
|
|
117
|
+
<!-- <nobr>单价</nobr>-->
|
|
118
|
+
<!-- </th>-->
|
|
119
|
+
<!-- <th>-->
|
|
120
|
+
<!-- <nobr>用气金额</nobr>-->
|
|
121
|
+
<!-- </th>-->
|
|
122
122
|
<th>
|
|
123
123
|
<nobr>应收</nobr>
|
|
124
124
|
</th>
|
|
@@ -158,15 +158,15 @@
|
|
|
158
158
|
<td style="text-align: center;">
|
|
159
159
|
<nobr>{{row.f_meter_classify}}</nobr>
|
|
160
160
|
</td>
|
|
161
|
-
<td style="text-align: center;"
|
|
162
|
-
<nobr>{{row.f_gas}}</nobr
|
|
163
|
-
</td
|
|
164
|
-
<td style="text-align: center;"
|
|
165
|
-
<nobr>{{row.f_price}}</nobr
|
|
166
|
-
</td
|
|
167
|
-
<td style="text-align: center;"
|
|
168
|
-
<nobr>{{row.f_money}}</nobr
|
|
169
|
-
</td
|
|
161
|
+
<!-- <td style="text-align: center;">-->
|
|
162
|
+
<!-- <nobr>{{row.f_gas}}</nobr>-->
|
|
163
|
+
<!-- </td>-->
|
|
164
|
+
<!-- <td style="text-align: center;">-->
|
|
165
|
+
<!-- <nobr>{{row.f_price}}</nobr>-->
|
|
166
|
+
<!-- </td>-->
|
|
167
|
+
<!-- <td style="text-align: center;">-->
|
|
168
|
+
<!-- <nobr>{{row.f_money}}</nobr>-->
|
|
169
|
+
<!-- </td>-->
|
|
170
170
|
<td style="text-align: center;">
|
|
171
171
|
<nobr>{{row.f_preamount}}</nobr>
|
|
172
172
|
</td>
|
|
@@ -266,10 +266,9 @@ export default{
|
|
|
266
266
|
'f_userinfo_code': '用户编号','f_user_name': '用户姓名','f_user_type': '用户类型','f_meter_classify': '气表类型','f_gas': '用气量','f_price': '单价','f_money': '用气金额','f_preamount': '应收','f_collection': '实收','f_operate_date': '收费时间','f_balance': '上期结余','f_curbalance': '本期结余','f_user_phone': '电话','f_address': '地址','f_user_state': '用户状态'
|
|
267
267
|
},
|
|
268
268
|
UserSellHeadDetailConfig: {
|
|
269
|
-
'f_userinfo_code': '用户编号','f_user_name':'
|
|
270
|
-
'
|
|
271
|
-
'
|
|
272
|
-
'f_reduction_fee':'违约金减免','f_h_fee':'超用收费','f_curbalance':'期末余额','f_x_balance':'最新余额'
|
|
269
|
+
'f_userinfo_code': '用户编号', 'f_user_name': '用户姓名', 'f_user_type': '用户类型', 'f_meter_classify': '气表类型',
|
|
270
|
+
'f_preamount': '应收', 'f_collection': '实收', 'f_operate_date': '收费时间', 'f_balance': '上期结余', 'f_curbalance': '本期结余',
|
|
271
|
+
'f_user_phone': '电话', 'f_address': '地址', 'f_user_state': '用户状态'
|
|
273
272
|
},
|
|
274
273
|
TransactionSummaryConfig: {
|
|
275
274
|
'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_type': '类型', 'f_price': '气价',
|
package/src/main.js
CHANGED
|
@@ -1,68 +1,68 @@
|
|
|
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 ShanXianSaleManage from './filiale/
|
|
10
|
-
import webmeterManage from './webmeterManage'
|
|
11
|
-
import reportManage from './reportManage'
|
|
12
|
-
import newmanage from './newmanage'
|
|
13
|
-
import ManageHome from './ManageHome'
|
|
14
|
-
import echarts from 'echarts'
|
|
15
|
-
import AMap from 'vue-amap'
|
|
16
|
-
|
|
17
|
-
Vue.config.silent = true
|
|
18
|
-
// Vue.mmType = 'AES'
|
|
19
|
-
|
|
20
|
-
Vue.use(AMap);
|
|
21
|
-
|
|
22
|
-
// 初始化vue-amap
|
|
23
|
-
AMap.initAMapApiLoader({
|
|
24
|
-
// 高德key
|
|
25
|
-
key: '3cec9ae8e2349207f7ac29279e3f4abe',
|
|
26
|
-
// 插件集合 (插件按需引入)
|
|
27
|
-
plugin: [
|
|
28
|
-
"AMap.Autocomplete", //输入提示插件
|
|
29
|
-
"AMap.PlaceSearch", //POI搜索插件
|
|
30
|
-
"AMap.Scale", //右下角缩略图插件 比例尺
|
|
31
|
-
"AMap.OverView", //地图鹰眼插件
|
|
32
|
-
"AMap.ToolBar", //地图工具条0
|
|
33
|
-
"AMap.MapType", //类别切换控件,实现默认图层与卫星图、实施交通图层之间切换的控制
|
|
34
|
-
"AMap.PolyEditor", //编辑 折线多,边形
|
|
35
|
-
"AMap.CircleEditor", //圆形编辑器插件
|
|
36
|
-
"AMap.Geolocation" //定位控件,用来获取和展示用户主机所在的经纬度位置
|
|
37
|
-
],
|
|
38
|
-
uiVersion: "1.0"
|
|
39
|
-
});
|
|
40
|
-
/** **************************通用组件******************************/
|
|
41
|
-
|
|
42
|
-
Vue.prototype.$echarts = echarts
|
|
43
|
-
all()
|
|
44
|
-
// sale()
|
|
45
|
-
ldap()
|
|
46
|
-
system(false)
|
|
47
|
-
|
|
48
|
-
saleManage()
|
|
49
|
-
ShanXianSaleManage()
|
|
50
|
-
webmeterManage()
|
|
51
|
-
ManageHome()
|
|
52
|
-
newmanage()
|
|
53
|
-
reportManage()
|
|
54
|
-
require('system-clients/src/styles/less/bootstrap.less')
|
|
55
|
-
require('./components/qinhua/Style/qinhuaStyle.less')
|
|
56
|
-
// require('./bootstrap/less/manageStyle/manageChile.less')
|
|
57
|
-
// require('./bootstrap/less/manageStyle/safeStyle.less')
|
|
58
|
-
|
|
59
|
-
//大屏展示要放开的样式
|
|
60
|
-
// require('system-clients/src/styles/less/manageStyle/manageChile.less')
|
|
61
|
-
// require('system-clients/src/styles/less/manageStyle/safeStyle.less')
|
|
62
|
-
// require('system-clients/src/styles/less/manageStyle/manageStyle.less')
|
|
63
|
-
|
|
64
|
-
new Vue({
|
|
65
|
-
el: 'body',
|
|
66
|
-
components: { App }
|
|
67
|
-
})
|
|
68
|
-
|
|
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 ShanXianSaleManage from './filiale/ningjin/sale'
|
|
10
|
+
import webmeterManage from './webmeterManage'
|
|
11
|
+
import reportManage from './reportManage'
|
|
12
|
+
import newmanage from './newmanage'
|
|
13
|
+
import ManageHome from './ManageHome'
|
|
14
|
+
import echarts from 'echarts'
|
|
15
|
+
import AMap from 'vue-amap'
|
|
16
|
+
|
|
17
|
+
Vue.config.silent = true
|
|
18
|
+
// Vue.mmType = 'AES'
|
|
19
|
+
|
|
20
|
+
Vue.use(AMap);
|
|
21
|
+
|
|
22
|
+
// 初始化vue-amap
|
|
23
|
+
AMap.initAMapApiLoader({
|
|
24
|
+
// 高德key
|
|
25
|
+
key: '3cec9ae8e2349207f7ac29279e3f4abe',
|
|
26
|
+
// 插件集合 (插件按需引入)
|
|
27
|
+
plugin: [
|
|
28
|
+
"AMap.Autocomplete", //输入提示插件
|
|
29
|
+
"AMap.PlaceSearch", //POI搜索插件
|
|
30
|
+
"AMap.Scale", //右下角缩略图插件 比例尺
|
|
31
|
+
"AMap.OverView", //地图鹰眼插件
|
|
32
|
+
"AMap.ToolBar", //地图工具条0
|
|
33
|
+
"AMap.MapType", //类别切换控件,实现默认图层与卫星图、实施交通图层之间切换的控制
|
|
34
|
+
"AMap.PolyEditor", //编辑 折线多,边形
|
|
35
|
+
"AMap.CircleEditor", //圆形编辑器插件
|
|
36
|
+
"AMap.Geolocation" //定位控件,用来获取和展示用户主机所在的经纬度位置
|
|
37
|
+
],
|
|
38
|
+
uiVersion: "1.0"
|
|
39
|
+
});
|
|
40
|
+
/** **************************通用组件******************************/
|
|
41
|
+
|
|
42
|
+
Vue.prototype.$echarts = echarts
|
|
43
|
+
all()
|
|
44
|
+
// sale()
|
|
45
|
+
ldap()
|
|
46
|
+
system(false)
|
|
47
|
+
|
|
48
|
+
saleManage()
|
|
49
|
+
ShanXianSaleManage()
|
|
50
|
+
webmeterManage()
|
|
51
|
+
ManageHome()
|
|
52
|
+
newmanage()
|
|
53
|
+
reportManage()
|
|
54
|
+
require('system-clients/src/styles/less/bootstrap.less')
|
|
55
|
+
require('./components/qinhua/Style/qinhuaStyle.less')
|
|
56
|
+
// require('./bootstrap/less/manageStyle/manageChile.less')
|
|
57
|
+
// require('./bootstrap/less/manageStyle/safeStyle.less')
|
|
58
|
+
|
|
59
|
+
//大屏展示要放开的样式
|
|
60
|
+
// require('system-clients/src/styles/less/manageStyle/manageChile.less')
|
|
61
|
+
// require('system-clients/src/styles/less/manageStyle/safeStyle.less')
|
|
62
|
+
// require('system-clients/src/styles/less/manageStyle/manageStyle.less')
|
|
63
|
+
|
|
64
|
+
new Vue({
|
|
65
|
+
el: 'body',
|
|
66
|
+
components: { App }
|
|
67
|
+
})
|
|
68
|
+
|