manage-client 3.3.210 → 3.3.211-by
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 +193 -190
- package/package.json +111 -111
- package/src/components/SellReport/yangchun/YcBusSummaryes.vue +229 -0
- package/src/components/sale/businessquery/ChargeQuery.vue +8 -8
- package/src/components/sale/businessquery/HandplanQuery.vue +33 -33
- package/src/components/sale/businessquery/WebHandplanQuery.vue +24 -4
- package/src/components/sale/common/PrintTableManage.vue +242 -0
- package/src/components/sale/config/exportConfig.js +0 -1
- package/src/components/sale/config/tableConfig.js +2 -1
- package/src/components/sale/filesquery/FireQuery.vue +20 -1
- package/src/components/webmeter/DrillData/GetNoMetereadData.vue +25 -1
- package/src/components/webmeter/newwebmeter/NewException/MeterExceptionList.vue +59 -94
- package/src/components/webmeter/report/ReportList.vue +2 -2
- package/src/filiale/bayan/config/DefaultPrint.js +6 -0
- package/src/filiale/bayan/config/exportConfig.js +2642 -0
- package/src/filiale/bayan/config/tableConfig.js +59 -0
- package/src/filiale/bayan/webmeter/GetNoMetereadData.vue +425 -0
- package/src/filiale/bayan/webmeter/LostContactAnalysisList.vue +719 -0
- package/src/filiale/bayan/webmeter/MeterExceptionList.vue +591 -0
- package/src/filiale/bayan/webmeter/NewGasStatistics.vue +665 -0
- package/src/filiale/bayan/webmeter/NewQueryInstruct.vue +650 -0
- package/src/filiale/bayan/webmeter/NewWebmeterSettlementAnalysis.vue +464 -0
- package/src/filiale/bayan/webmeter/RechargeList.vue +430 -0
- package/src/filiale/bayan/webmeter/ReportDataQuery.vue +343 -0
- package/src/filiale/bayan/webmeter/ReportList.vue +555 -0
- package/src/filiale/bayan/webmeter/UserLostContactAnalysis.vue +674 -0
- package/src/filiale/bayan/webmeterManage.js +26 -0
- package/src/filiale/kelai/feimin_style_kl.vue +1 -1
- package/src/filiale/yuncheng/ChangeMeterQuery.vue +17 -0
- package/src/filiale/yuncheng/MeterQuery.vue +995 -0
- package/src/filiale/yuncheng/config/exportConfig.js +4 -0
- package/src/filiale/yuncheng/sale.js +4 -0
- package/src/main.js +76 -68
- package/src/plugins/LodopFuncs.js +159 -124
- package/src/reportManage.js +5 -0
- package/src/saleManage.js +2 -0
|
@@ -148,6 +148,7 @@ export default {
|
|
|
148
148
|
'f_gasproperties': '用气性质',
|
|
149
149
|
'f_meternumber': '表号',
|
|
150
150
|
'f_card_id': '卡号',
|
|
151
|
+
'f_defendcard': '防盗卡号',
|
|
151
152
|
'f_price_name': '气价名称',
|
|
152
153
|
'value': '气价详情',
|
|
153
154
|
'f_meter_brand': '气表品牌',
|
|
@@ -158,6 +159,7 @@ export default {
|
|
|
158
159
|
'f_input_date': '建表时间',
|
|
159
160
|
'f_table_state': '气表状态',
|
|
160
161
|
'isbgl': '是否壁挂炉',
|
|
162
|
+
'f_valve_state': '阀门状态',
|
|
161
163
|
'f_networkvalve': '自动阀控'
|
|
162
164
|
},
|
|
163
165
|
ResidentialQuery: {
|
|
@@ -752,9 +754,11 @@ export default {
|
|
|
752
754
|
'f_changemeter_fee': '换表费',
|
|
753
755
|
'f_meternumber_old': '旧表号',
|
|
754
756
|
'f_meternumber': '新表号',
|
|
757
|
+
'f_defendcard': '防盗卡号',
|
|
755
758
|
'f_meter_brand_old': '旧气表品牌',
|
|
756
759
|
'f_meter_brand': '新气表品牌',
|
|
757
760
|
'f_using_base_old': '旧表底数',
|
|
761
|
+
'f_initial_base_new': '新表底数',
|
|
758
762
|
'f_total_oldgasfee': '旧表累购',
|
|
759
763
|
'f_remanent_gas': '补气量',
|
|
760
764
|
'f_remanent_money': '补气金额',
|
package/src/main.js
CHANGED
|
@@ -1,68 +1,76 @@
|
|
|
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
|
|
10
|
-
import webmeterManage from './webmeterManage'
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import
|
|
15
|
-
import
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
Vue.
|
|
21
|
-
|
|
22
|
-
//
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
//
|
|
61
|
-
//
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
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 FilialeSaleManage from './filiale/bayan/sale'
|
|
10
|
+
import webmeterManage from './webmeterManage'
|
|
11
|
+
import FilialeWebmeterManage from './filiale/bayan/webmeterManage'
|
|
12
|
+
// import reportManage from './reportManage'
|
|
13
|
+
// import FilialeReportManage from './filiale/wenxi/reportManage'
|
|
14
|
+
// import newmanage from './newmanage'
|
|
15
|
+
// import ManageHome from './ManageHome'
|
|
16
|
+
import echarts from 'echarts'
|
|
17
|
+
import AMap from 'vue-amap'
|
|
18
|
+
|
|
19
|
+
Vue.config.silent = true
|
|
20
|
+
// Vue.mmType = 'AES'
|
|
21
|
+
|
|
22
|
+
// // 开启 nginx 加密
|
|
23
|
+
// Vue.mmType = 'nginx'
|
|
24
|
+
// Vue.HWQMM = [51, 150, 231, 300, 565, 708, 721, 952, 738, 560, 935, 912, 1274, 1148, 840, 1440]
|
|
25
|
+
//
|
|
26
|
+
// Vue.use(AMap);
|
|
27
|
+
|
|
28
|
+
// 初始化vue-amap
|
|
29
|
+
AMap.initAMapApiLoader({
|
|
30
|
+
// 高德key
|
|
31
|
+
key: '3cec9ae8e2349207f7ac29279e3f4abe',
|
|
32
|
+
// 插件集合 (插件按需引入)
|
|
33
|
+
plugin: [
|
|
34
|
+
'AMap.Autocomplete', // 输入提示插件
|
|
35
|
+
'AMap.PlaceSearch', // POI搜索插件
|
|
36
|
+
'AMap.Scale', // 右下角缩略图插件 比例尺
|
|
37
|
+
'AMap.OverView', // 地图鹰眼插件
|
|
38
|
+
'AMap.ToolBar', // 地图工具条0
|
|
39
|
+
'AMap.MapType', // 类别切换控件,实现默认图层与卫星图、实施交通图层之间切换的控制
|
|
40
|
+
'AMap.PolyEditor', // 编辑 折线多,边形
|
|
41
|
+
'AMap.CircleEditor', // 圆形编辑器插件
|
|
42
|
+
'AMap.Geolocation' // 定位控件,用来获取和展示用户主机所在的经纬度位置
|
|
43
|
+
],
|
|
44
|
+
uiVersion: '1.0'
|
|
45
|
+
})
|
|
46
|
+
/** **************************通用组件******************************/
|
|
47
|
+
|
|
48
|
+
Vue.prototype.$echarts = echarts
|
|
49
|
+
all()
|
|
50
|
+
// sale()
|
|
51
|
+
ldap()
|
|
52
|
+
system(false)
|
|
53
|
+
|
|
54
|
+
// saleManage()
|
|
55
|
+
// FilialeSaleManage()
|
|
56
|
+
webmeterManage()
|
|
57
|
+
FilialeWebmeterManage()
|
|
58
|
+
// ManageHome()
|
|
59
|
+
// newmanage()
|
|
60
|
+
// reportManage()
|
|
61
|
+
// FilialeReportManage()
|
|
62
|
+
require('system-clients/src/styles/less/bootstrap.less')
|
|
63
|
+
require('./components/qinhua/Style/qinhuaStyle.less')
|
|
64
|
+
// require('./bootstrap/less/manageStyle/manageChile.less')
|
|
65
|
+
// require('./bootstrap/less/manageStyle/safeStyle.less')
|
|
66
|
+
|
|
67
|
+
// 大屏展示要放开的样式
|
|
68
|
+
// require('system-clients/src/styles/less/manageStyle/manageChile.less')
|
|
69
|
+
// require('system-clients/src/styles/less/manageStyle/safeStyle.less')
|
|
70
|
+
// require('system-clients/src/styles/less/manageStyle/manageStyle.less')
|
|
71
|
+
|
|
72
|
+
new Vue({
|
|
73
|
+
el: 'body',
|
|
74
|
+
components: { App }
|
|
75
|
+
})
|
|
76
|
+
|
|
@@ -1,124 +1,159 @@
|
|
|
1
|
-
var CreatedOKLodop7766=null
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
function needCLodop(){
|
|
5
|
-
// return false;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
if (
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
1
|
+
var CreatedOKLodop7766 = null
|
|
2
|
+
|
|
3
|
+
// ====判断是否需要安装CLodop云打印服务器:====
|
|
4
|
+
function needCLodop () {
|
|
5
|
+
// return false;
|
|
6
|
+
try {
|
|
7
|
+
// 看是什么浏览器
|
|
8
|
+
var ua = navigator.userAgent
|
|
9
|
+
// windows,安装
|
|
10
|
+
if (ua.match(/Windows\sPhone/i) != null) return true
|
|
11
|
+
// iPhone, 安装
|
|
12
|
+
if (ua.match(/iPhone|iPod/i) != null) return true
|
|
13
|
+
// Android, 安装
|
|
14
|
+
if (ua.match(/Android/i) != null) return true
|
|
15
|
+
// Edge,安装
|
|
16
|
+
if (ua.match(/Edge\D?\d+/i) != null) return true
|
|
17
|
+
// QQ,不安装
|
|
18
|
+
if (ua.match(/QQBrowser/i) != null) return false
|
|
19
|
+
|
|
20
|
+
var verTrident = ua.match(/Trident\D?\d+/i)
|
|
21
|
+
var verIE = ua.match(/MSIE\D?\d+/i)
|
|
22
|
+
var verOPR = ua.match(/OPR\D?\d+/i)
|
|
23
|
+
var verFF = ua.match(/Firefox\D?\d+/i)
|
|
24
|
+
var x64 = ua.match(/x64/i)
|
|
25
|
+
if ((verTrident == null) && (verIE == null) && (x64 !== null)) {
|
|
26
|
+
return true
|
|
27
|
+
} else if (verFF !== null) {
|
|
28
|
+
verFF = verFF[0].match(/\d+/)
|
|
29
|
+
if (verFF[0] >= 42) return true
|
|
30
|
+
} else if (verOPR !== null) {
|
|
31
|
+
verOPR = verOPR[0].match(/\d+/)
|
|
32
|
+
if (verOPR[0] >= 32) return true
|
|
33
|
+
} else if ((verTrident == null) && (verIE == null)) {
|
|
34
|
+
var verChrome = ua.match(/Chrome\D?\d+/i)
|
|
35
|
+
if (verChrome !== null) {
|
|
36
|
+
verChrome = verChrome[0].match(/\d+/)
|
|
37
|
+
if (verChrome[0] >= 42) return true
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
return false
|
|
41
|
+
} catch (err) {
|
|
42
|
+
return true
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// ====页面引用CLodop云打印必须的JS文件:====
|
|
47
|
+
if (needCLodop()) {
|
|
48
|
+
var head = document.head || document.getElementsByTagName('head')[0] || document.documentElement
|
|
49
|
+
var oscript = document.createElement('script')
|
|
50
|
+
// 让本机浏览器打印(更优先):
|
|
51
|
+
oscript.src = 'http://localhost:18000/CLodopfuncs.js?priority=1'
|
|
52
|
+
head.insertBefore(oscript, head.firstChild)
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// ====获取LODOP对象的主过程:====
|
|
56
|
+
function getLodop (oOBJECT, oEMBED) {
|
|
57
|
+
// 显示提示用的内容
|
|
58
|
+
var strHtmInstall = "<br><font color='#FF00FF'>打印控件未安装!点击这里<a href='http://113.10.155.131/install_lodop32.zip' target='_self'>执行安装</a>,安装后请刷新页面或重新进入。</font>"
|
|
59
|
+
var strHtmUpdate = "<br><font color='#FF00FF'>打印控件需要升级!点击这里<a href='http://113.10.155.131/install_lodop32.zip' target='_self'>执行升级</a>,升级后请重新进入。</font>"
|
|
60
|
+
var strHtm64_Install = "<br><font color='#FF00FF'>打印控件未安装!点击这里<a href='http://113.10.155.131/install_lodop64.zip' target='_self'>执行安装</a>,安装后请刷新页面或重新进入。</font>"
|
|
61
|
+
var strHtm64_Update = "<br><font color='#FF00FF'>打印控件需要升级!点击这里<a href='http://113.10.155.131/install_lodop64.zip' target='_self'>执行升级</a>,升级后请重新进入。</font>"
|
|
62
|
+
var strHtmFireFox = "<br><br><font color='#FF00FF'>(注意:如曾安装过Lodop旧版附件npActiveXPLugin,请在【工具】->【附加组件】->【扩展】中先卸它)</font>"
|
|
63
|
+
var strHtmChrome = "<br><br><font color='#FF00FF'>(如果此前正常,仅因浏览器升级或重安装而出问题,需重新执行以上安装)</font>"
|
|
64
|
+
var strCLodopInstall = "<br><font color='#FF00FF'>CLodop云打印服务(localhost本地)未安装启动!点击这里<a href='CLodopPrint_Setup_for_Win32NT.zip' target='_self'>执行安装</a>,安装后请刷新页面。</font>"
|
|
65
|
+
var strCLodopUpdate = "<br><font color='#FF00FF'>CLodop云打印服务需升级!点击这里<a href='CLodopPrint_Setup_for_Win32NT.zip' target='_self'>执行升级</a>,升级后请刷新页面。</font>"
|
|
66
|
+
|
|
67
|
+
var LODOP
|
|
68
|
+
try {
|
|
69
|
+
var isIE = (navigator.userAgent.indexOf('MSIE') >= 0) || (navigator.userAgent.indexOf('Trident') >= 0)
|
|
70
|
+
if (needCLodop()) {
|
|
71
|
+
try {
|
|
72
|
+
// 调用脚本中的获取打印对象
|
|
73
|
+
LODOP = getCLodop()
|
|
74
|
+
} catch (err) {
|
|
75
|
+
}
|
|
76
|
+
// 如果没找到打印控件
|
|
77
|
+
if (!LODOP && document.readyState !== 'complete') {
|
|
78
|
+
alert('C-Lodop没准备好,请稍后再试!')
|
|
79
|
+
return
|
|
80
|
+
}
|
|
81
|
+
if (!LODOP) {
|
|
82
|
+
if (isIE) {
|
|
83
|
+
// document.write(strCLodopInstall)
|
|
84
|
+
if(confirm('CLodop云打印服务(localhost本地)未安装启动!你确定要安装吗?\n(点击确定进行安装,安装后请刷新页面)')){
|
|
85
|
+
window.open('download/CLodop_Setup_for_Win32NT.exe')
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
else {
|
|
89
|
+
// document.documentElement.innerHTML = strCLodopInstall + document.documentElement.innerHTML
|
|
90
|
+
if(confirm('CLodop云打印服务(localhost本地)未安装启动!你确定要安装吗?\n(点击确定进行安装,安装后请刷新页面)')){
|
|
91
|
+
window.open('download/CLodop_Setup_for_Win32NT.exe')
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
return
|
|
95
|
+
} else { // 找到后的处理
|
|
96
|
+
if (CLODOP.CVERSION < '2.0.6.2') {
|
|
97
|
+
if (isIE) document.write(strCLodopUpdate)
|
|
98
|
+
else {
|
|
99
|
+
document.documentElement.innerHTML = strCLodopUpdate + document.documentElement.innerHTML
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
if (oEMBED && oEMBED.parentNode) oEMBED.parentNode.removeChild(oEMBED)
|
|
103
|
+
if (oOBJECT && oOBJECT.parentNode) oOBJECT.parentNode.removeChild(oOBJECT)
|
|
104
|
+
}
|
|
105
|
+
} else { // 非云服务
|
|
106
|
+
var is64IE = isIE && (navigator.userAgent.indexOf('x64') >= 0)
|
|
107
|
+
// =====如果页面有Lodop就直接使用,没有则新建:==========
|
|
108
|
+
if (oOBJECT !== undefined || oEMBED !== undefined) {
|
|
109
|
+
if (isIE) LODOP = oOBJECT
|
|
110
|
+
else LODOP = oEMBED
|
|
111
|
+
} else if (CreatedOKLodop7766 == null) {
|
|
112
|
+
LODOP = document.createElement('object')
|
|
113
|
+
LODOP.setAttribute('width', 0)
|
|
114
|
+
LODOP.setAttribute('height', 0)
|
|
115
|
+
LODOP.setAttribute('style', 'position:absolute;left:0px;top:-100px;width:0px;height:0px;')
|
|
116
|
+
if (isIE) LODOP.setAttribute('classid', 'clsid:2105C259-1E0C-4534-8141-A753534CB4CA')
|
|
117
|
+
else LODOP.setAttribute('type', 'application/x-print-lodop')
|
|
118
|
+
document.documentElement.appendChild(LODOP)
|
|
119
|
+
CreatedOKLodop7766 = LODOP
|
|
120
|
+
} else LODOP = CreatedOKLodop7766
|
|
121
|
+
// =====Lodop插件未安装时提示下载地址:==========
|
|
122
|
+
if ((LODOP == null) || (typeof (LODOP.VERSION) === 'undefined')) {
|
|
123
|
+
if (navigator.userAgent.indexOf('Chrome') >= 0) {
|
|
124
|
+
document.documentElement.innerHTML = strHtmChrome + document.documentElement.innerHTML
|
|
125
|
+
}
|
|
126
|
+
if (navigator.userAgent.indexOf('Firefox') >= 0) {
|
|
127
|
+
document.documentElement.innerHTML = strHtmFireFox + document.documentElement.innerHTML
|
|
128
|
+
}
|
|
129
|
+
if (is64IE) document.write(strHtm64_Install)
|
|
130
|
+
else if (isIE) document.write(strHtmInstall)
|
|
131
|
+
else {
|
|
132
|
+
document.documentElement.innerHTML = strHtmInstall + document.documentElement.innerHTML
|
|
133
|
+
}
|
|
134
|
+
return LODOP
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
// 检查版本
|
|
139
|
+
if (LODOP.VERSION < '6.2.0.3') {
|
|
140
|
+
if (needCLodop()) {
|
|
141
|
+
document.documentElement.innerHTML = strCLodopUpdate + document.documentElement.innerHTML
|
|
142
|
+
} else if (is64IE) {
|
|
143
|
+
document.write(strHtm64_Update)
|
|
144
|
+
} else if (isIE) {
|
|
145
|
+
document.write(strHtmUpdate)
|
|
146
|
+
} else {
|
|
147
|
+
document.documentElement.innerHTML = strHtmUpdate + document.documentElement.innerHTML
|
|
148
|
+
}
|
|
149
|
+
return LODOP
|
|
150
|
+
}
|
|
151
|
+
// ===如下空白位置适合调用统一功能(如注册语句、语言选择等):===
|
|
152
|
+
LODOP.SET_LICENSES('西安奥枫软件有限公司', '552C41D5AB0D146FCF77D05CD8AA15A1', '', '')
|
|
153
|
+
return LODOP
|
|
154
|
+
} catch (err) {
|
|
155
|
+
alert('getLodop出错:' + err)
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
export default getLodop
|
package/src/reportManage.js
CHANGED
|
@@ -586,6 +586,11 @@ export default function () {
|
|
|
586
586
|
Vue.component('bus-summaryes', (resolve) => {
|
|
587
587
|
require(['./components/SellReport/BusSummaryes'], resolve)
|
|
588
588
|
})
|
|
589
|
+
|
|
590
|
+
// 报表展示组件(阳春日结账报表)
|
|
591
|
+
Vue.component('yc-bus-summaryes', (resolve) => {
|
|
592
|
+
require(['./components/SellReport/yangchun/YcBusSummaryes'], resolve)
|
|
593
|
+
})
|
|
589
594
|
// 乌海公服报表
|
|
590
595
|
Vue.component('gf-report-wh', (resolve) => {
|
|
591
596
|
require(['./components/SellReport/GFReportWH'], resolve)
|
package/src/saleManage.js
CHANGED
|
@@ -686,4 +686,6 @@ export default function () {
|
|
|
686
686
|
Vue.component('user-open-echarts', (resolve) => { require(['./components/BasisEcharts/businessQuery/userOpenEcharts'], resolve) })
|
|
687
687
|
|
|
688
688
|
Vue.component('web-meter-user-month-query', (resolve) => { require(['./components/sale/businessquery/WebMeterMonthUserGasQuery'], resolve) })
|
|
689
|
+
// 打印
|
|
690
|
+
Vue.component('print-table', (resolve) => { require(['./components/sale/common/PrintTableManage'], resolve) })
|
|
689
691
|
}
|