manage-client 3.3.211 → 3.3.213

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.
@@ -0,0 +1,54 @@
1
+ export default{
2
+ //查询页面的字段名和中文对应
3
+ ReportDataQuery:
4
+ {
5
+ "用户编号":"f_userinfo_code",
6
+ "用户名称":"f_user_name",
7
+ "表号":"f_meternumber",
8
+ "本次抄表底数":"f_tablebase",
9
+ "上次抄表底数":"f_last_tablebase",
10
+ "表上余额":"f_jval",
11
+ "抄表日期":"f_hand_date",
12
+
13
+ "上次抄表日期":"f_last_hand_date",
14
+ "开户日期":"f_gas_date",
15
+ "软件版本号":"f_software_version",
16
+ "表状态信息":"f_table_msg",
17
+ "上次表状态信息":"f_last_meter_state_msg",
18
+
19
+ "插入日期":"f_insert_date",
20
+ "上次插入日期":"f_last_insertdate",
21
+ "是否结算":"f_whether_clear",
22
+ "超用气量":"f_super_gas",
23
+ "电量等级":"f_electricity",
24
+
25
+ "购气次数":"f_times",
26
+ "单价":"f_price",
27
+ "信号强度":"f_signal",
28
+ "信噪比":"f_snr",
29
+ "电压":"f_batterylevel",
30
+
31
+ "阀门强制状态":"f_networkshutvalve",
32
+ "阀门状态":"f_valvestate",
33
+ "计量类型":"f_wmprepaytype",
34
+ "上报类型":"f_upload_type",
35
+ "金额状态":"f_moneystate",
36
+
37
+ "增加工况瞬时":"operatingModeFlow",
38
+ "标况瞬时":"standardConditionFlow",
39
+ "开盖状态" :"f_SplitAlarm",
40
+ "液晶状态" : "f_XTIpllStopFlag",
41
+ "声速" :"soundVelocity",
42
+
43
+ "外电低电":"f_lowlithiumbattery",
44
+ "磁干扰异常":"f_magneticinterference",
45
+ "表内剩余金额":"f_meterbalanceamt",
46
+ "表内累计充值金额":"f_meterdebitamt",
47
+ "补偿状态":"f_compensatestate",
48
+ "气表品牌":"f_meter_brand",
49
+ "气表型号":"f_meter_style",
50
+ "分公司":"f_orgname"
51
+
52
+ }
53
+
54
+ }
@@ -0,0 +1,8 @@
1
+ // 分公司特殊组件页面注册
2
+ import Vue from 'vue'
3
+ export default function () {
4
+ // 换表查询
5
+ Vue.component('change-meter-query', (resolve) => {
6
+ require(['./ChangeMeterQuery'], resolve)
7
+ })
8
+ }
@@ -1,124 +1,159 @@
1
- var CreatedOKLodop7766=null;
1
+ var CreatedOKLodop7766 = null
2
2
 
3
- //====判断是否需要安装CLodop云打印服务器:====
4
- function needCLodop(){
3
+ // ====判断是否需要安装CLodop云打印服务器:====
4
+ function needCLodop () {
5
5
  // return false;
6
- try{
7
- var ua=navigator.userAgent;
8
- if (ua.match(/Windows\sPhone/i) !=null) return true;
9
- if (ua.match(/iPhone|iPod/i) != null) return true;
10
- if (ua.match(/Android/i) != null) return true;
11
- if (ua.match(/Edge\D?\d+/i) != null) return true;
12
- if (ua.match(/QQBrowser/i) != null) return false;
13
- var verTrident=ua.match(/Trident\D?\d+/i);
14
- var verIE=ua.match(/MSIE\D?\d+/i);
15
- var verOPR=ua.match(/OPR\D?\d+/i);
16
- var verFF=ua.match(/Firefox\D?\d+/i);
17
- var x64=ua.match(/x64/i);
18
- if ((verTrident==null)&&(verIE==null)&&(x64!==null))
19
- return true; else
20
- if ( verFF !== null) {
21
- verFF = verFF[0].match(/\d+/);
22
- if ( verFF[0] >= 42 ) return true;
23
- } else
24
- if ( verOPR !== null) {
25
- verOPR = verOPR[0].match(/\d+/);
26
- if ( verOPR[0] >= 32 ) return true;
27
- } else
28
- if ((verTrident==null)&&(verIE==null)) {
29
- var verChrome=ua.match(/Chrome\D?\d+/i);
30
- if ( verChrome !== null ) {
31
- verChrome = verChrome[0].match(/\d+/);
32
- if (verChrome[0]>=42) return true;
33
- };
34
- };
35
- return false;
36
- } catch(err) {return true;};
37
- };
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
38
19
 
39
- //====页面引用CLodop云打印必须的JS文件:====
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文件:====
40
47
  if (needCLodop()) {
41
- var head = document.head || document.getElementsByTagName("head")[0] || document.documentElement;
42
- var oscript = document.createElement("script");
43
- //让本机浏览器打印(更优先):
44
- oscript = document.createElement("script");
45
- oscript.src ="http://localhost:8008/CLodopfuncs.js?priority=1";
46
- head.insertBefore( oscript,head.firstChild );
47
- //本机浏览器的后补端口8001:
48
- // oscript = document.createElement("script");
49
- // oscript.src ="http://localhost:8001/CLodopfuncs.js?priority=2";
50
- // head.insertBefore( oscript,head.firstChild );
51
- };
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>"
52
66
 
53
- //====获取LODOP对象的主过程:====
54
- function getLodop(oOBJECT,oEMBED){
55
- var strHtmInstall="<br><font color='#FF00FF'>打印控件未安装!点击这里<a href='http://113.10.155.131/install_lodop32.zip' target='_self'>执行安装</a>,安装后请刷新页面或重新进入。</font>";
56
- var strHtmUpdate="<br><font color='#FF00FF'>打印控件需要升级!点击这里<a href='http://113.10.155.131/install_lodop32.zip' target='_self'>执行升级</a>,升级后请重新进入。</font>";
57
- var strHtm64_Install="<br><font color='#FF00FF'>打印控件未安装!点击这里<a href='http://113.10.155.131/install_lodop64.zip' target='_self'>执行安装</a>,安装后请刷新页面或重新进入。</font>";
58
- var strHtm64_Update="<br><font color='#FF00FF'>打印控件需要升级!点击这里<a href='http://113.10.155.131/install_lodop64.zip' target='_self'>执行升级</a>,升级后请重新进入。</font>";
59
- var strHtmFireFox="<br><br><font color='#FF00FF'>(注意:如曾安装过Lodop旧版附件npActiveXPLugin,请在【工具】->【附加组件】->【扩展】中先卸它)</font>";
60
- var strHtmChrome="<br><br><font color='#FF00FF'>(如果此前正常,仅因浏览器升级或重安装而出问题,需重新执行以上安装)</font>";
61
- var strCLodopInstall="<br><font color='#FF00FF'>CLodop云打印服务(localhost本地)未安装启动!点击这里<a href='CLodopPrint_Setup_for_Win32NT.zip' target='_self'>执行安装</a>,安装后请刷新页面。</font>";
62
- var strCLodopUpdate="<br><font color='#FF00FF'>CLodop云打印服务需升级!点击这里<a href='CLodopPrint_Setup_for_Win32NT.zip' target='_self'>执行升级</a>,升级后请刷新页面。</font>";
63
- var LODOP;
64
- try{
65
- var isIE = (navigator.userAgent.indexOf('MSIE')>=0) || (navigator.userAgent.indexOf('Trident')>=0);
66
- if (needCLodop()) {
67
- try{ LODOP=getCLodop();} catch(err) {};
68
- if (!LODOP && document.readyState!=="complete") {alert("C-Lodop没准备好,请稍后再试!"); return;};
69
- if (!LODOP) {
70
- if (isIE) document.write(strCLodopInstall); else
71
- document.documentElement.innerHTML=strCLodopInstall+document.documentElement.innerHTML;
72
- return;
73
- } else {
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
+ }
74
137
 
75
- if (CLODOP.CVERSION<"2.0.6.2") {
76
- if (isIE) document.write(strCLodopUpdate); else
77
- document.documentElement.innerHTML=strCLodopUpdate+document.documentElement.innerHTML;
78
- };
79
- if (oEMBED && oEMBED.parentNode) oEMBED.parentNode.removeChild(oEMBED);
80
- if (oOBJECT && oOBJECT.parentNode) oOBJECT.parentNode.removeChild(oOBJECT);
81
- };
82
- } else {
83
- var is64IE = isIE && (navigator.userAgent.indexOf('x64')>=0);
84
- //=====如果页面有Lodop就直接使用,没有则新建:==========
85
- if (oOBJECT!=undefined || oEMBED!=undefined) {
86
- if (isIE) LODOP=oOBJECT; else LODOP=oEMBED;
87
- } else if (CreatedOKLodop7766==null){
88
- LODOP=document.createElement("object");
89
- LODOP.setAttribute("width",0);
90
- LODOP.setAttribute("height",0);
91
- LODOP.setAttribute("style","position:absolute;left:0px;top:-100px;width:0px;height:0px;");
92
- if (isIE) LODOP.setAttribute("classid","clsid:2105C259-1E0C-4534-8141-A753534CB4CA");
93
- else LODOP.setAttribute("type","application/x-print-lodop");
94
- document.documentElement.appendChild(LODOP);
95
- CreatedOKLodop7766=LODOP;
96
- } else LODOP=CreatedOKLodop7766;
97
- //=====Lodop插件未安装时提示下载地址:==========
98
- if ((LODOP==null)||(typeof(LODOP.VERSION)=="undefined")) {
99
- if (navigator.userAgent.indexOf('Chrome')>=0)
100
- document.documentElement.innerHTML=strHtmChrome+document.documentElement.innerHTML;
101
- if (navigator.userAgent.indexOf('Firefox')>=0)
102
- document.documentElement.innerHTML=strHtmFireFox+document.documentElement.innerHTML;
103
- if (is64IE) document.write(strHtm64_Install); else
104
- if (isIE) document.write(strHtmInstall); else
105
- document.documentElement.innerHTML=strHtmInstall+document.documentElement.innerHTML;
106
- return LODOP;
107
- };
108
- };
109
- if (LODOP.VERSION<"6.2.0.3") {
110
- if (needCLodop())
111
- document.documentElement.innerHTML=strCLodopUpdate+document.documentElement.innerHTML; else
112
- if (is64IE) document.write(strHtm64_Update); else
113
- if (isIE) document.write(strHtmUpdate); else
114
- document.documentElement.innerHTML=strHtmUpdate+document.documentElement.innerHTML;
115
- return LODOP;
116
- };
117
- //===如下空白位置适合调用统一功能(如注册语句、语言选择等):===
118
- LODOP.SET_LICENSES("西安奥枫软件有限公司","552C41D5AB0D146FCF77D05CD8AA15A1","","");
119
- //===========================================================
120
- return LODOP;
121
- } catch(err) {alert("getLodop出错:"+err);};
122
- };
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
+ }
123
158
 
124
159
  export default getLodop