manage-client 3.2.250 → 3.2.251
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 +180 -180
- package/package.json +1 -1
- package/src/App.vue +29 -32
- package/src/filiale/WEINAN/NewAccountQuery.vue +1 -1
- package/src/filiale/WEINAN/UserGasAll.vue +11 -31
- package/src/filiale/WEINAN/config/exportConfig.js +1 -1
- package/src/filiale/rongcheng/MeterQuery.vue +982 -0
- package/src/filiale/rongcheng/exportConfig.js +1 -1
- package/src/filiale/rongcheng/sale.js +2 -0
- package/src/filiale/shanxian/SiteManager.vue +1 -18
|
@@ -8,7 +8,7 @@ export default{
|
|
|
8
8
|
meterConfig: {
|
|
9
9
|
'f_userinfo_code': '客户编号','f_user_name':'客户名称','f_user_phone': '客户电话','f_idnumber': '身份证号','f_address': '客户地址','f_balance_amount': '表上余额',
|
|
10
10
|
'f_user_type': '客户类型','f_gasproperties': '用气性质','f_meternumber': '表号',"f_card_id":'卡号','f_price_name': '气价名称',
|
|
11
|
-
'value': '气价详情','f_meter_brand': '气表品牌', 'f_meter_style': '气表型号',
|
|
11
|
+
'value': '气价详情','f_meter_brand': '气表品牌', 'f_meter_style': '气表型号','f_gongye_type': '用气类型',
|
|
12
12
|
'f_gas_person': '通气人','f_gas_date': '通气时间','f_input_date': '建表时间', 'f_table_state': '气表状态'
|
|
13
13
|
},
|
|
14
14
|
ResidentialQuery: {
|
|
@@ -12,4 +12,6 @@ export default function () {
|
|
|
12
12
|
Vue.component('record-info-query', (resolve) => { require(['./RecordInfoQuery'], resolve) })
|
|
13
13
|
// 月用气查询
|
|
14
14
|
Vue.component('month-gas-query', (resolve) => { require(['./MonthGasQuery'], resolve) })
|
|
15
|
+
// 表具查询
|
|
16
|
+
Vue.component('meter-query', (resolve) => { require(['./MeterQuery'], resolve) })
|
|
15
17
|
}
|
|
@@ -53,6 +53,7 @@ export default {
|
|
|
53
53
|
set (arrparams, numdata, gasdata) {
|
|
54
54
|
this.xc = echarts.init(document.getElementById('gph'))
|
|
55
55
|
this.xc.setOption({
|
|
56
|
+
color: ['#894BE5', '#FE974B'],
|
|
56
57
|
title: {
|
|
57
58
|
text: '民用及非民用缴费散列图',
|
|
58
59
|
subtext: '数据查询来源',
|
|
@@ -105,15 +106,6 @@ export default {
|
|
|
105
106
|
type: 'bar',
|
|
106
107
|
data: numdata,
|
|
107
108
|
barMinHeight: 5,
|
|
108
|
-
itemStyle: {
|
|
109
|
-
normal: {
|
|
110
|
-
color: function (params) {
|
|
111
|
-
// 给出颜色组
|
|
112
|
-
var colorList = ['#894BE5']
|
|
113
|
-
return colorList[params.dataIndex]
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
},
|
|
117
109
|
markLine: {
|
|
118
110
|
data: [
|
|
119
111
|
{type: 'average', name: '平均值'}
|
|
@@ -124,15 +116,6 @@ export default {
|
|
|
124
116
|
name: '气量',
|
|
125
117
|
type: 'bar',
|
|
126
118
|
data: gasdata,
|
|
127
|
-
itemStyle: {
|
|
128
|
-
normal: {
|
|
129
|
-
color: function (params) {
|
|
130
|
-
// 给出颜色组
|
|
131
|
-
var colorList = ['#FE974B']
|
|
132
|
-
return colorList[params.dataIndex]
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
},
|
|
136
119
|
markLine: {
|
|
137
120
|
data: [
|
|
138
121
|
{type: 'average', name: '平均值'}
|