system-clients 3.2.77 → 3.2.78

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.
Files changed (272) hide show
  1. package/.babelrc +5 -5
  2. package/.editorconfig +9 -9
  3. package/.eslintrc.js +16 -16
  4. package/.gradle/7.4/checksums/checksums.lock +0 -0
  5. package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
  6. package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
  7. package/CHANGELOG.md +51 -51
  8. package/README.md +36 -36
  9. package/SystemClient.iml +8 -8
  10. package/build/css-loaders.js +34 -34
  11. package/build/dev-client.js +8 -8
  12. package/build/example-server.js +80 -80
  13. package/build/release.sh +28 -28
  14. package/build/utils.js +71 -71
  15. package/build/webpack.base.conf.js +85 -85
  16. package/build/webpack.dev.conf.js +31 -31
  17. package/build/webpack.example.conf.js +49 -49
  18. package/build/webpack.prod.conf.js +60 -60
  19. package/build/webpack.test.conf.js +31 -31
  20. package/build.gradle +6 -6
  21. package/config/dev.env.js +6 -6
  22. package/config/index.js +38 -38
  23. package/config/prod.env.js +3 -3
  24. package/config/test.env.js +6 -6
  25. package/doc/Login.md +7 -7
  26. package/examples/LoginPage/App.vue +21 -21
  27. package/examples/LoginPage/index.html +11 -11
  28. package/examples/LoginPage/main.js +15 -15
  29. package/examples/ReadCard/App.vue +23 -23
  30. package/examples/ReadCard/index.html +11 -11
  31. package/examples/ReadCard/main.js +12 -12
  32. package/index.html +21 -21
  33. package/package.json +105 -105
  34. package/release.bat +5 -5
  35. package/src/App.vue +24 -24
  36. package/src/LodopFuncs.js +123 -123
  37. package/src/assets/binding.svg +1 -1
  38. package/src/assets/unbind.svg +1 -1
  39. package/src/assets//345/205/254/345/221/212.svg +1 -1
  40. package/src/assets//347/207/203/346/260/224/347/274/264/350/264/271.eps +116 -116
  41. package/src/assets//350/201/224/347/263/273/346/210/221/344/273/254.svg +1 -1
  42. package/src/components/List.vue +51 -51
  43. package/src/components/Main.vue +923 -923
  44. package/src/components/TabButton.vue +201 -201
  45. package/src/components/Table.js +74 -74
  46. package/src/components/Tabs.vue +67 -67
  47. package/src/components/Util.js +343 -343
  48. package/src/components/addressManage/AddressCascadingMenu.vue +145 -145
  49. package/src/components/common/ProgressBase.vue +83 -83
  50. package/src/components/equipment/EquipmentManage.vue +65 -65
  51. package/src/components/equipment/PcAdd.vue +105 -105
  52. package/src/components/equipment/PcList.vue +119 -119
  53. package/src/components/equipment/PcManage.vue +60 -60
  54. package/src/components/equipment/PhoneAdd.vue +107 -107
  55. package/src/components/equipment/PhoneList.vue +112 -112
  56. package/src/components/equipment/PhoneManage.vue +60 -60
  57. package/src/components/equipment/PosAdd.vue +323 -323
  58. package/src/components/equipment/PosList.vue +294 -294
  59. package/src/components/equipment/PosManage.vue +138 -138
  60. package/src/components/equipment/PosManageBoth.vue +125 -125
  61. package/src/components/equipment/PosParamAdd.vue +236 -236
  62. package/src/components/equipment/PosParamList.vue +121 -121
  63. package/src/components/equipment/PosParamManage.vue +51 -51
  64. package/src/components/materialManage/materialData.vue +44 -44
  65. package/src/components/materialManage/materialList.vue +255 -255
  66. package/src/components/parammanage/ParamManage.vue +42 -42
  67. package/src/components/parammanage/ParamManages.vue +43 -43
  68. package/src/components/parammanage/ParamPage.vue +337 -337
  69. package/src/components/parammanage/ParamPages.vue +222 -222
  70. package/src/components/parammanage/SinglePage.vue +235 -235
  71. package/src/components/parammanage/SinglePages.vue +167 -167
  72. package/src/components/server/AddChangeMsg.vue +66 -66
  73. package/src/components/server/ChangeDeclare.vue +45 -45
  74. package/src/components/server/IconTree.vue +26 -26
  75. package/src/components/server/ImageVieweTest.vue +56 -56
  76. package/src/components/server/ImageViewer.vue +350 -350
  77. package/src/components/server/LeftTree.vue +111 -111
  78. package/src/components/server/LoadData.vue +55 -55
  79. package/src/components/server/Login.vue +566 -566
  80. package/src/components/server/LoginPage.vue +235 -235
  81. package/src/components/server/LoginView.vue +128 -128
  82. package/src/components/server/Menu.vue +188 -188
  83. package/src/components/server/ModifyPw.vue +125 -125
  84. package/src/components/server/PcdBuildingSelect.vue +241 -241
  85. package/src/components/server/ResSelect.vue +155 -155
  86. package/src/components/server/ResSelectGroup.vue +198 -198
  87. package/src/components/server/RightTree.vue +348 -348
  88. package/src/components/server/RoleSelector.vue +88 -88
  89. package/src/components/server/TestResSelect.vue +58 -58
  90. package/src/components/server/TestResSelectGroup.vue +388 -388
  91. package/src/components/server/TestRightTree.vue +42 -42
  92. package/src/filiale/baole/Login.vue +568 -568
  93. package/src/filiale/baole/system.js +5 -5
  94. package/src/filiale/chengtou/Login.vue +537 -537
  95. package/src/filiale/chengtou/system.js +5 -5
  96. package/src/filiale/dongguan/Login.vue +900 -900
  97. package/src/filiale/dongguan/Main.vue +715 -715
  98. package/src/filiale/dongguan/system.js +6 -6
  99. package/src/filiale/furuike/Login.vue +583 -583
  100. package/src/filiale/furuike/Main.vue +827 -827
  101. package/src/filiale/furuike/system.js +7 -7
  102. package/src/filiale/gehua/Main.vue +807 -807
  103. package/src/filiale/gehua/system.js +6 -6
  104. package/src/filiale/konggang/Login.vue +470 -470
  105. package/src/filiale/konggang/system.js +7 -7
  106. package/src/filiale/qianneng/Login.vue +566 -566
  107. package/src/filiale/qianneng/Main.vue +816 -816
  108. package/src/filiale/qianneng/ModifyPw.vue +107 -107
  109. package/src/filiale/qianneng/system.js +11 -11
  110. package/src/filiale/rizhao/LeftTree.vue +111 -111
  111. package/src/filiale/rizhao/Login.vue +791 -791
  112. package/src/filiale/rizhao/Main.vue +611 -611
  113. package/src/filiale/rizhao/system.js +14 -14
  114. package/src/filiale/shiquan/Login.vue +564 -564
  115. package/src/filiale/shiquan/system.js +8 -8
  116. package/src/filiale/tianyi/Login.vue +571 -571
  117. package/src/filiale/tianyi/system.js +5 -5
  118. package/src/filiale/tongchuan/Login.vue +561 -561
  119. package/src/filiale/tongchuan/Main.vue +1019 -1019
  120. package/src/filiale/tongchuan/system.js +7 -7
  121. package/src/filiale/wenxi/Login.vue +535 -535
  122. package/src/filiale/wenxi/Main.vue +785 -785
  123. package/src/filiale/wenxi/system.js +10 -10
  124. package/src/filiale/wuhai/LeftTree.vue +141 -141
  125. package/src/filiale/wuhai/Main.vue +807 -807
  126. package/src/filiale/wuhai/system.js +10 -10
  127. package/src/filiale/yuchuan/Login.vue +889 -889
  128. package/src/filiale/yuchuan/Main.vue +864 -864
  129. package/src/filiale/yuchuan/system.js +10 -10
  130. package/src/filiale/zhoukou/Main.vue +807 -807
  131. package/src/filiale/zhoukou/system.js +6 -6
  132. package/src/index.js +7 -7
  133. package/src/plugins/EncryptUtil.js +53 -53
  134. package/src/plugins/GetLoginInfoService.js +536 -536
  135. package/src/plugins/HeatGetLoginInfoService.js +491 -491
  136. package/src/plugins/validation.js +15 -15
  137. package/src/project/ProjectPage.vue +24 -24
  138. package/src/project/State.js +17 -17
  139. package/src/stores/AppData.js +38 -38
  140. package/src/stores/HeatAppData.js +38 -38
  141. package/src/styles/fonts/glyphicons-halflings-regular.svg +288 -288
  142. package/src/styles/less/.csscomb.json +304 -304
  143. package/src/styles/less/.csslintrc +19 -19
  144. package/src/styles/less/alerts.less +73 -73
  145. package/src/styles/less/aofeng/animate.min.css +10 -10
  146. package/src/styles/less/aofeng/expandcss.less +569 -569
  147. package/src/styles/less/aofeng/login.less +367 -367
  148. package/src/styles/less/aofeng/standard.less +2507 -2507
  149. package/src/styles/less/aofeng/themeOne/BinaryTemplate.less +690 -690
  150. package/src/styles/less/aofeng/themeOne/loginStyle.less +1586 -1586
  151. package/src/styles/less/aofeng/themeOne/systemStyle.less +2650 -2650
  152. package/src/styles/less/aofeng/themeOne.less +17 -17
  153. package/src/styles/less/aofeng/themeTwo/newStyle1.less +415 -415
  154. package/src/styles/less/aofeng/themeTwo.less +3 -3
  155. package/src/styles/less/badges.less +66 -66
  156. package/src/styles/less/bootstrap.less +66 -66
  157. package/src/styles/less/breadcrumbs.less +26 -26
  158. package/src/styles/less/button-groups.less +247 -247
  159. package/src/styles/less/buttons.less +172 -172
  160. package/src/styles/less/carousel.less +269 -269
  161. package/src/styles/less/close.less +34 -34
  162. package/src/styles/less/code.less +69 -69
  163. package/src/styles/less/component-animations.less +33 -33
  164. package/src/styles/less/dropdowns.less +216 -216
  165. package/src/styles/less/fonts-list.less +25 -25
  166. package/src/styles/less/forms.less +626 -626
  167. package/src/styles/less/glyphicons.less +305 -305
  168. package/src/styles/less/grid.less +84 -84
  169. package/src/styles/less/input-groups.less +167 -167
  170. package/src/styles/less/jumbotron.less +52 -52
  171. package/src/styles/less/labels.less +64 -64
  172. package/src/styles/less/list-group.less +141 -141
  173. package/src/styles/less/manageStyle/manageChile.less +180 -180
  174. package/src/styles/less/manageStyle/manageStyle/manageChile.less +180 -180
  175. package/src/styles/less/manageStyle/manageStyle/manageStyle.less +1102 -1102
  176. package/src/styles/less/manageStyle/manageStyle/safeStyle.less +498 -498
  177. package/src/styles/less/manageStyle/manageStyle.less +1102 -1102
  178. package/src/styles/less/manageStyle/safeStyle.less +498 -498
  179. package/src/styles/less/media.less +66 -66
  180. package/src/styles/less/mixins/alerts.less +14 -14
  181. package/src/styles/less/mixins/background-variant.less +9 -9
  182. package/src/styles/less/mixins/border-radius.less +18 -18
  183. package/src/styles/less/mixins/buttons.less +69 -69
  184. package/src/styles/less/mixins/center-block.less +7 -7
  185. package/src/styles/less/mixins/clearfix.less +22 -22
  186. package/src/styles/less/mixins/forms.less +90 -90
  187. package/src/styles/less/mixins/gradients.less +59 -59
  188. package/src/styles/less/mixins/grid-framework.less +92 -92
  189. package/src/styles/less/mixins/grid.less +122 -122
  190. package/src/styles/less/mixins/hide-text.less +21 -21
  191. package/src/styles/less/mixins/image.less +33 -33
  192. package/src/styles/less/mixins/labels.less +12 -12
  193. package/src/styles/less/mixins/list-group.less +30 -30
  194. package/src/styles/less/mixins/nav-divider.less +10 -10
  195. package/src/styles/less/mixins/nav-vertical-align.less +9 -9
  196. package/src/styles/less/mixins/opacity.less +8 -8
  197. package/src/styles/less/mixins/pagination.less +24 -24
  198. package/src/styles/less/mixins/panels.less +24 -24
  199. package/src/styles/less/mixins/progress-bar.less +10 -10
  200. package/src/styles/less/mixins/reset-filter.less +8 -8
  201. package/src/styles/less/mixins/reset-text.less +18 -18
  202. package/src/styles/less/mixins/resize.less +6 -6
  203. package/src/styles/less/mixins/responsive-visibility.less +15 -15
  204. package/src/styles/less/mixins/size.less +10 -10
  205. package/src/styles/less/mixins/tab-focus.less +9 -9
  206. package/src/styles/less/mixins/table-row.less +44 -44
  207. package/src/styles/less/mixins/text-emphasis.less +9 -9
  208. package/src/styles/less/mixins/text-overflow.less +8 -8
  209. package/src/styles/less/mixins/vendor-prefixes.less +227 -227
  210. package/src/styles/less/mixins.less +40 -40
  211. package/src/styles/less/modals.less +151 -151
  212. package/src/styles/less/navbar.less +660 -660
  213. package/src/styles/less/navs.less +285 -285
  214. package/src/styles/less/normalize.less +424 -424
  215. package/src/styles/less/pager.less +76 -76
  216. package/src/styles/less/pagination.less +89 -89
  217. package/src/styles/less/panels.less +275 -275
  218. package/src/styles/less/popovers.less +131 -131
  219. package/src/styles/less/print.less +101 -101
  220. package/src/styles/less/progress-bars.less +87 -87
  221. package/src/styles/less/responsive-embed.less +35 -35
  222. package/src/styles/less/responsive-utilities.less +194 -194
  223. package/src/styles/less/scaffolding.less +161 -161
  224. package/src/styles/less/stand.less +207 -207
  225. package/src/styles/less/tables.less +312 -312
  226. package/src/styles/less/theme.less +291 -291
  227. package/src/styles/less/thumbnails.less +36 -36
  228. package/src/styles/less/tooltip.less +102 -102
  229. package/src/styles/less/type.less +316 -316
  230. package/src/styles/less/utilities.less +55 -55
  231. package/src/styles/less/variables.less +899 -899
  232. package/src/styles/less/wells.less +29 -29
  233. package/src/system.js +121 -121
  234. package/src/systemphone.js +11 -11
  235. package/src/util/Daiban.json +12 -12
  236. package/src/util/LdapHelper.js +75 -75
  237. package/test/e2e/custom-assertions/elementCount.js +26 -26
  238. package/test/e2e/nightwatch.conf.js +40 -40
  239. package/test/e2e/runner.js +30 -30
  240. package/test/e2e/specs/test.js +14 -14
  241. package/test/unit/.eslintrc +5 -5
  242. package/test/unit/index.js +13 -13
  243. package/test/unit/init.js +10 -10
  244. package/test/unit/karma.conf.js +49 -49
  245. package/test/unit/specs/base64.spec.js +5 -5
  246. package/test/unit/specs/components/parammanage/ParamPage.spec.js +20 -20
  247. package/test/unit/specs/components/parammanage/SinglePage.spec.js +20 -20
  248. package/test/unit/specs/components/server/LeftTree/App.vue +18 -18
  249. package/test/unit/specs/components/server/LeftTree/LeftTree.spec.js +22 -22
  250. package/test/unit/specs/components/server/LoadData.spec.js +24 -24
  251. package/test/unit/specs/components/server/Login.spec.js +61 -61
  252. package/test/unit/specs/components/server/RightTree.spec.js +50 -50
  253. package/test/unit/specs/plugins/GetLoginInfoService.spec.js +55 -55
  254. package/test/unit/test.html +76 -76
  255. package/yarn-error.log +6896 -6896
  256. package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
  257. package/.gradle/7.4/executionHistory/executionHistory.bin +0 -0
  258. package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
  259. package/.gradle/7.4/fileChanges/last-build.bin +0 -0
  260. package/.gradle/7.4/fileHashes/fileHashes.bin +0 -0
  261. package/.gradle/7.4/gc.properties +0 -0
  262. package/.gradle/8.0.2/checksums/checksums.lock +0 -0
  263. package/.gradle/8.0.2/dependencies-accessors/dependencies-accessors.lock +0 -0
  264. package/.gradle/8.0.2/dependencies-accessors/gc.properties +0 -0
  265. package/.gradle/8.0.2/fileChanges/last-build.bin +0 -0
  266. package/.gradle/8.0.2/fileHashes/fileHashes.lock +0 -0
  267. package/.gradle/8.0.2/gc.properties +0 -0
  268. package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  269. package/.gradle/buildOutputCleanup/cache.properties +0 -2
  270. package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  271. package/.gradle/file-system.probe +0 -0
  272. package/.gradle/vcs-1/gc.properties +0 -0
package/src/LodopFuncs.js CHANGED
@@ -1,123 +1,123 @@
1
- var CreatedOKLodop7766 = null
2
-
3
- // ====判断是否需要安装CLodop云打印服务器:====
4
- function needCLodop () {
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
- };
38
-
39
- // ====页面引用CLodop云打印必须的JS文件:====
40
- 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:8000/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
- };
52
-
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 {
74
- if (CLODOP.CVERSION < '2.0.6.2') {
75
- if (isIE) document.write(strCLodopUpdate); else
76
- document.documentElement.innerHTML = strCLodopUpdate + document.documentElement.innerHTML
77
- };
78
- if (oEMBED && oEMBED.parentNode) oEMBED.parentNode.removeChild(oEMBED)
79
- if (oOBJECT && oOBJECT.parentNode) oOBJECT.parentNode.removeChild(oOBJECT)
80
- };
81
- } else {
82
- var is64IE = isIE && (navigator.userAgent.indexOf('x64') >= 0)
83
- // =====如果页面有Lodop就直接使用,没有则新建:==========
84
- if (oOBJECT != undefined || oEMBED != undefined) {
85
- if (isIE) LODOP = oOBJECT; else LODOP = oEMBED
86
- } else if (CreatedOKLodop7766 == null) {
87
- LODOP = document.createElement('object')
88
- LODOP.setAttribute('width', 0)
89
- LODOP.setAttribute('height', 0)
90
- LODOP.setAttribute('style', 'position:absolute;left:0px;top:-100px;width:0px;height:0px;')
91
- if (isIE) LODOP.setAttribute('classid', 'clsid:2105C259-1E0C-4534-8141-A753534CB4CA')
92
- else LODOP.setAttribute('type', 'application/x-print-lodop')
93
- document.documentElement.appendChild(LODOP)
94
- CreatedOKLodop7766 = LODOP
95
- } else LODOP = CreatedOKLodop7766
96
- // =====Lodop插件未安装时提示下载地址:==========
97
- if ((LODOP == null) || (typeof (LODOP.VERSION) == 'undefined')) {
98
- if (navigator.userAgent.indexOf('Chrome') >= 0)
99
- document.documentElement.innerHTML = strHtmChrome + document.documentElement.innerHTML
100
- if (navigator.userAgent.indexOf('Firefox') >= 0)
101
- document.documentElement.innerHTML = strHtmFireFox + document.documentElement.innerHTML
102
- if (is64IE) document.write(strHtm64_Install); else
103
- if (isIE) document.write(strHtmInstall); else
104
- document.documentElement.innerHTML = strHtmInstall + document.documentElement.innerHTML
105
- return LODOP
106
- };
107
- };
108
- if (LODOP.VERSION < '6.2.0.3') {
109
- if (needCLodop())
110
- document.documentElement.innerHTML = strCLodopUpdate + document.documentElement.innerHTML; else
111
- if (is64IE) document.write(strHtm64_Update); else
112
- if (isIE) document.write(strHtmUpdate); else
113
- document.documentElement.innerHTML = strHtmUpdate + document.documentElement.innerHTML
114
- return LODOP
115
- };
116
- // ===如下空白位置适合调用统一功能(如注册语句、语言选择等):===
117
- LODOP.SET_LICENSES('西安奥枫软件有限公司', '552C41D5AB0D146FCF77D05CD8AA15A1', '', '')
118
- // ===========================================================
119
- return LODOP
120
- } catch (err) { alert('getLodop出错:' + err) };
121
- };
122
-
123
- export default getLodop
1
+ var CreatedOKLodop7766 = null
2
+
3
+ // ====判断是否需要安装CLodop云打印服务器:====
4
+ function needCLodop () {
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
+ };
38
+
39
+ // ====页面引用CLodop云打印必须的JS文件:====
40
+ 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:8000/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
+ };
52
+
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 {
74
+ if (CLODOP.CVERSION < '2.0.6.2') {
75
+ if (isIE) document.write(strCLodopUpdate); else
76
+ document.documentElement.innerHTML = strCLodopUpdate + document.documentElement.innerHTML
77
+ };
78
+ if (oEMBED && oEMBED.parentNode) oEMBED.parentNode.removeChild(oEMBED)
79
+ if (oOBJECT && oOBJECT.parentNode) oOBJECT.parentNode.removeChild(oOBJECT)
80
+ };
81
+ } else {
82
+ var is64IE = isIE && (navigator.userAgent.indexOf('x64') >= 0)
83
+ // =====如果页面有Lodop就直接使用,没有则新建:==========
84
+ if (oOBJECT != undefined || oEMBED != undefined) {
85
+ if (isIE) LODOP = oOBJECT; else LODOP = oEMBED
86
+ } else if (CreatedOKLodop7766 == null) {
87
+ LODOP = document.createElement('object')
88
+ LODOP.setAttribute('width', 0)
89
+ LODOP.setAttribute('height', 0)
90
+ LODOP.setAttribute('style', 'position:absolute;left:0px;top:-100px;width:0px;height:0px;')
91
+ if (isIE) LODOP.setAttribute('classid', 'clsid:2105C259-1E0C-4534-8141-A753534CB4CA')
92
+ else LODOP.setAttribute('type', 'application/x-print-lodop')
93
+ document.documentElement.appendChild(LODOP)
94
+ CreatedOKLodop7766 = LODOP
95
+ } else LODOP = CreatedOKLodop7766
96
+ // =====Lodop插件未安装时提示下载地址:==========
97
+ if ((LODOP == null) || (typeof (LODOP.VERSION) == 'undefined')) {
98
+ if (navigator.userAgent.indexOf('Chrome') >= 0)
99
+ document.documentElement.innerHTML = strHtmChrome + document.documentElement.innerHTML
100
+ if (navigator.userAgent.indexOf('Firefox') >= 0)
101
+ document.documentElement.innerHTML = strHtmFireFox + document.documentElement.innerHTML
102
+ if (is64IE) document.write(strHtm64_Install); else
103
+ if (isIE) document.write(strHtmInstall); else
104
+ document.documentElement.innerHTML = strHtmInstall + document.documentElement.innerHTML
105
+ return LODOP
106
+ };
107
+ };
108
+ if (LODOP.VERSION < '6.2.0.3') {
109
+ if (needCLodop())
110
+ document.documentElement.innerHTML = strCLodopUpdate + document.documentElement.innerHTML; else
111
+ if (is64IE) document.write(strHtm64_Update); else
112
+ if (isIE) document.write(strHtmUpdate); else
113
+ document.documentElement.innerHTML = strHtmUpdate + document.documentElement.innerHTML
114
+ return LODOP
115
+ };
116
+ // ===如下空白位置适合调用统一功能(如注册语句、语言选择等):===
117
+ LODOP.SET_LICENSES('西安奥枫软件有限公司', '552C41D5AB0D146FCF77D05CD8AA15A1', '', '')
118
+ // ===========================================================
119
+ return LODOP
120
+ } catch (err) { alert('getLodop出错:' + err) };
121
+ };
122
+
123
+ export default getLodop
@@ -1 +1 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1527772052094" class="icon" style="" viewBox="0 0 1198 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7583" xmlns:xlink="http://www.w3.org/1999/xlink" width="60" height="50"><defs><style type="text/css"></style></defs><path d="M515.454273 566.308846c-156.133133 0-283.173613-127.04048-283.173613-283.135233C232.28066 127.04048 359.282759 0 515.454273 0c156.094753 0 283.135232 127.04048 283.135232 283.173613s-127.04048 283.135232-283.135232 283.135233z m0-508.737632a225.871064 225.871064 0 0 0-225.602399 225.602399 225.832684 225.832684 0 0 0 225.602399 225.564018 225.832684 225.832684 0 0 0 225.564018-225.564018A225.871064 225.871064 0 0 0 515.454273 57.571214z" fill="#FBC400" p-id="7584"></path><path d="M28.785607 1024a28.785607 28.785607 0 0 1-28.785607-28.785607c0-268.013193 231.205997-486.092954 515.454273-486.092954 156.094753 0 302.095352 65.631184 400.542129 180.082759a28.785607 28.785607 0 1 1-43.638981 37.536432c-87.469865-101.709145-217.58081-160.047976-356.903148-160.047976-252.468966 0-457.883058 192.211094-457.883059 428.521739a28.785607 28.785607 0 0 1-28.785607 28.785607z" fill="#FBC400" p-id="7585"></path><path d="M727.508246 1024h-84.783209c-68.202699 0-123.701349-55.46027-123.701349-123.662969s55.46027-123.662969 123.701349-123.662968h173.596402a123.816492 123.816492 0 0 1 123.70135 123.662968 28.785607 28.785607 0 0 1-57.571215 0c0-36.461769-29.629985-66.091754-66.130135-66.091754h-173.596402c-36.461769 0-66.130135 29.629985-66.130134 66.091754s29.629985 66.091754 66.130134 66.091755h84.783209a28.785607 28.785607 0 0 1 0 57.571214z" fill="#FBC400" p-id="7586"></path><path d="M1074.432384 1024h-173.596402a123.816492 123.816492 0 0 1-123.701349-123.662969 28.785607 28.785607 0 0 1 57.571214 0c0 36.461769 29.629985 66.091754 66.130135 66.091755h173.596402c36.461769 0 66.130135-29.629985 66.130135-66.091755s-29.629985-66.091754-66.130135-66.091754h-84.744828a28.785607 28.785607 0 0 1 0-57.571214h84.744828c68.202699 0 123.701349 55.46027 123.701349 123.662968s-55.498651 123.662969-123.701349 123.662969z" fill="#FBC400" p-id="7587"></path></svg>
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1527772052094" class="icon" style="" viewBox="0 0 1198 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7583" xmlns:xlink="http://www.w3.org/1999/xlink" width="60" height="50"><defs><style type="text/css"></style></defs><path d="M515.454273 566.308846c-156.133133 0-283.173613-127.04048-283.173613-283.135233C232.28066 127.04048 359.282759 0 515.454273 0c156.094753 0 283.135232 127.04048 283.135232 283.173613s-127.04048 283.135232-283.135232 283.135233z m0-508.737632a225.871064 225.871064 0 0 0-225.602399 225.602399 225.832684 225.832684 0 0 0 225.602399 225.564018 225.832684 225.832684 0 0 0 225.564018-225.564018A225.871064 225.871064 0 0 0 515.454273 57.571214z" fill="#FBC400" p-id="7584"></path><path d="M28.785607 1024a28.785607 28.785607 0 0 1-28.785607-28.785607c0-268.013193 231.205997-486.092954 515.454273-486.092954 156.094753 0 302.095352 65.631184 400.542129 180.082759a28.785607 28.785607 0 1 1-43.638981 37.536432c-87.469865-101.709145-217.58081-160.047976-356.903148-160.047976-252.468966 0-457.883058 192.211094-457.883059 428.521739a28.785607 28.785607 0 0 1-28.785607 28.785607z" fill="#FBC400" p-id="7585"></path><path d="M727.508246 1024h-84.783209c-68.202699 0-123.701349-55.46027-123.701349-123.662969s55.46027-123.662969 123.701349-123.662968h173.596402a123.816492 123.816492 0 0 1 123.70135 123.662968 28.785607 28.785607 0 0 1-57.571215 0c0-36.461769-29.629985-66.091754-66.130135-66.091754h-173.596402c-36.461769 0-66.130135 29.629985-66.130134 66.091754s29.629985 66.091754 66.130134 66.091755h84.783209a28.785607 28.785607 0 0 1 0 57.571214z" fill="#FBC400" p-id="7586"></path><path d="M1074.432384 1024h-173.596402a123.816492 123.816492 0 0 1-123.701349-123.662969 28.785607 28.785607 0 0 1 57.571214 0c0 36.461769 29.629985 66.091754 66.130135 66.091755h173.596402c36.461769 0 66.130135-29.629985 66.130135-66.091755s-29.629985-66.091754-66.130135-66.091754h-84.744828a28.785607 28.785607 0 0 1 0-57.571214h84.744828c68.202699 0 123.701349 55.46027 123.701349 123.662968s-55.498651 123.662969-123.701349 123.662969z" fill="#FBC400" p-id="7587"></path></svg>
@@ -1 +1 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1527771984655" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5426" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M596.608 858.944l-85.632 85.568c-100.928 100.864-263.168 103.04-361.536 4.672-98.368-98.432-96.192-260.608 4.672-361.536l185.792-185.856A76.544 76.544 0 1 1 448.192 510.08L262.4 695.808c-41.28 41.344-43.328 106.368-4.672 145.088 38.656 38.72 103.808 36.544 145.088-4.608l85.568-85.632a76.544 76.544 0 1 1 108.224 108.288z" fill="#d4237a" p-id="5427"></path><path d="M869.888 436.416l-185.856 185.792A76.608 76.608 0 0 1 575.744 513.92L761.6 328.128c41.28-41.28 43.392-106.304 4.608-144.96-38.656-38.72-103.616-36.672-144.896 4.608l-85.76 85.632a76.544 76.544 0 1 1-108.224-108.224l85.632-85.632c100.928-100.992 263.168-103.104 361.536-4.736 98.368 98.496 96.32 260.608-4.608 361.6z" fill="#d4237a" p-id="5428"></path></svg>
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1527771984655" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5426" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M596.608 858.944l-85.632 85.568c-100.928 100.864-263.168 103.04-361.536 4.672-98.368-98.432-96.192-260.608 4.672-361.536l185.792-185.856A76.544 76.544 0 1 1 448.192 510.08L262.4 695.808c-41.28 41.344-43.328 106.368-4.672 145.088 38.656 38.72 103.808 36.544 145.088-4.608l85.568-85.632a76.544 76.544 0 1 1 108.224 108.288z" fill="#d4237a" p-id="5427"></path><path d="M869.888 436.416l-185.856 185.792A76.608 76.608 0 0 1 575.744 513.92L761.6 328.128c41.28-41.28 43.392-106.304 4.608-144.96-38.656-38.72-103.616-36.672-144.896 4.608l-85.76 85.632a76.544 76.544 0 1 1-108.224-108.224l85.632-85.632c100.928-100.992 263.168-103.104 361.536-4.736 98.368 98.496 96.32 260.608-4.608 361.6z" fill="#d4237a" p-id="5428"></path></svg>
@@ -1 +1 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1527779182864" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="15581" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="14"><defs><style type="text/css"></style></defs><path d="M797.590945 780.01822c-6.070252 0-11.975752-3.133364-15.259542-8.750291-4.925173-8.420787-2.090615-19.22997 6.332219-24.15412 40.406269-23.622 74.28589-57.45148 97.961102-97.830119 24.3772-41.573861 37.262672-89.184205 37.262672-137.672546 0-48.073902-12.67774-95.325066-36.667108-136.648217-23.294542-40.116673-56.669674-73.887824-96.522334-97.652064-8.376785-4.990664-11.118222-15.83157-6.123464-24.208355 4.992711-8.372691 15.833617-11.119245 24.209378-6.122441 44.99375 26.835182 82.678024 64.959477 108.97597 110.252033 27.109428 46.705742 41.441854 100.084463 41.441854 154.379043 0 54.762231-14.561647 108.550275-42.113143 155.534356-26.733874 45.589314-64.979944 83.785242-110.603027 110.455671C803.68678 779.240507 800.620955 780.01822 797.590945 780.01822L797.590945 780.01822zM704.394357 665.60747c-6.070252 0-11.975752-3.12927-15.259542-8.746198-4.925173-8.41874-2.090615-19.23611 6.330172-24.15412 20.732184-12.119015 38.112016-29.476335 50.257637-50.193169 12.503778-21.319561 19.10922-45.736671 19.10922-70.609151 0-24.658609-6.500041-48.8905-18.805298-70.081125-11.946077-20.579711-29.070082-37.907355-49.514717-50.101071-8.378831-4.991688-11.116175-15.83157-6.123464-24.207331 4.996804-8.373715 15.835663-11.115152 24.207331-6.119371 25.586748 15.256472 47.01785 36.94033 61.9704 62.696947 15.423271 26.568099 23.577998 56.936757 23.577998 87.812975 0 31.149441-8.284687 61.739133-23.959691 88.470961-15.198144 25.927509-36.948517 47.64616-62.893422 62.817698C710.488145 664.827711 707.418226 665.60747 704.394357 665.60747L704.394357 665.60747zM566.925449 906.136615c-31.956829 0-63.730487-21.708418-68.219731-24.8909l-33.998325-23.716144c-7.995091-5.575995-9.958816-16.579607-4.38282-24.581861 5.581112-7.999185 16.584724-9.957793 24.584931-4.38282l34.19787 23.852244c8.958022 6.328126 38.501896 23.121604 55.770188 17.244756 6.217608-2.118244 12.101619-4.115738 12.81691-36.707017L587.694471 191.876052c-1.828648-30.618345-8.368598-33.580816-15.926738-37.006845-16.133446-7.308453-43.536562 9.978259-51.861158 16.614399l-0.455371 0.352017L308.919257 329.447291c-47.357588 38.544875-111.886253 36.931121-119.159914 36.610826-44.834114 0.202615-82.775238 33.994232-88.422865 78.798671l-1.222851 12.138458 0 110.508883 1.222851 12.146645c5.662977 44.900629 43.759643 78.749552 88.722694 78.797647 0.6191-0.010233 1.238201-0.010233 1.853208-0.010233 60.969607 0 111.988584 33.446763 114.15083 34.883485 3.284813 2.199085 79.546707 53.988612 119.461789 140.396587 4.091178 8.849552 0.228197 19.346627-8.625448 23.431665-8.850575 4.086062-19.34151 0.229221-23.432689-8.623401-35.223223-76.257801-104.660688-124.231419-106.968244-125.807311-1.663896-1.079588-46.193065-29.547966-96.124268-28.963659l-0.207731 0.004093c-62.863746 0-116.127857-47.269583-123.895775-109.955274l-0.050142-0.407276-1.422396-14.117532 0-114.057709 1.471514-14.525831c7.766894-62.681598 61.032028-109.952204 123.895775-109.952204l0.981351 0.029676c0.528026 0.022513 57.3031 2.548032 95.707782-28.900214l0.604774-0.469698L498.097874 143.706983c1.964748-1.539053 12.831236-9.857509 27.221991-16.547885 22.880103-10.637268 43.9817-12.178367 61.022819-4.453429 8.647961 3.917216 17.626449 9.086959 24.672936 20.279882 6.941086 11.023054 10.742668 26.069749 11.965519 47.362704l0.029676 1.010003 0 641.97626-0.00614 0.188288c-0.595564 27.813462-3.975545 58.421574-36.755112 69.568449C579.95009 905.237129 573.434699 906.136615 566.925449 906.136615L566.925449 906.136615z" fill="#f55d54" p-id="15582"></path></svg>
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1527779182864" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="15581" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="14"><defs><style type="text/css"></style></defs><path d="M797.590945 780.01822c-6.070252 0-11.975752-3.133364-15.259542-8.750291-4.925173-8.420787-2.090615-19.22997 6.332219-24.15412 40.406269-23.622 74.28589-57.45148 97.961102-97.830119 24.3772-41.573861 37.262672-89.184205 37.262672-137.672546 0-48.073902-12.67774-95.325066-36.667108-136.648217-23.294542-40.116673-56.669674-73.887824-96.522334-97.652064-8.376785-4.990664-11.118222-15.83157-6.123464-24.208355 4.992711-8.372691 15.833617-11.119245 24.209378-6.122441 44.99375 26.835182 82.678024 64.959477 108.97597 110.252033 27.109428 46.705742 41.441854 100.084463 41.441854 154.379043 0 54.762231-14.561647 108.550275-42.113143 155.534356-26.733874 45.589314-64.979944 83.785242-110.603027 110.455671C803.68678 779.240507 800.620955 780.01822 797.590945 780.01822L797.590945 780.01822zM704.394357 665.60747c-6.070252 0-11.975752-3.12927-15.259542-8.746198-4.925173-8.41874-2.090615-19.23611 6.330172-24.15412 20.732184-12.119015 38.112016-29.476335 50.257637-50.193169 12.503778-21.319561 19.10922-45.736671 19.10922-70.609151 0-24.658609-6.500041-48.8905-18.805298-70.081125-11.946077-20.579711-29.070082-37.907355-49.514717-50.101071-8.378831-4.991688-11.116175-15.83157-6.123464-24.207331 4.996804-8.373715 15.835663-11.115152 24.207331-6.119371 25.586748 15.256472 47.01785 36.94033 61.9704 62.696947 15.423271 26.568099 23.577998 56.936757 23.577998 87.812975 0 31.149441-8.284687 61.739133-23.959691 88.470961-15.198144 25.927509-36.948517 47.64616-62.893422 62.817698C710.488145 664.827711 707.418226 665.60747 704.394357 665.60747L704.394357 665.60747zM566.925449 906.136615c-31.956829 0-63.730487-21.708418-68.219731-24.8909l-33.998325-23.716144c-7.995091-5.575995-9.958816-16.579607-4.38282-24.581861 5.581112-7.999185 16.584724-9.957793 24.584931-4.38282l34.19787 23.852244c8.958022 6.328126 38.501896 23.121604 55.770188 17.244756 6.217608-2.118244 12.101619-4.115738 12.81691-36.707017L587.694471 191.876052c-1.828648-30.618345-8.368598-33.580816-15.926738-37.006845-16.133446-7.308453-43.536562 9.978259-51.861158 16.614399l-0.455371 0.352017L308.919257 329.447291c-47.357588 38.544875-111.886253 36.931121-119.159914 36.610826-44.834114 0.202615-82.775238 33.994232-88.422865 78.798671l-1.222851 12.138458 0 110.508883 1.222851 12.146645c5.662977 44.900629 43.759643 78.749552 88.722694 78.797647 0.6191-0.010233 1.238201-0.010233 1.853208-0.010233 60.969607 0 111.988584 33.446763 114.15083 34.883485 3.284813 2.199085 79.546707 53.988612 119.461789 140.396587 4.091178 8.849552 0.228197 19.346627-8.625448 23.431665-8.850575 4.086062-19.34151 0.229221-23.432689-8.623401-35.223223-76.257801-104.660688-124.231419-106.968244-125.807311-1.663896-1.079588-46.193065-29.547966-96.124268-28.963659l-0.207731 0.004093c-62.863746 0-116.127857-47.269583-123.895775-109.955274l-0.050142-0.407276-1.422396-14.117532 0-114.057709 1.471514-14.525831c7.766894-62.681598 61.032028-109.952204 123.895775-109.952204l0.981351 0.029676c0.528026 0.022513 57.3031 2.548032 95.707782-28.900214l0.604774-0.469698L498.097874 143.706983c1.964748-1.539053 12.831236-9.857509 27.221991-16.547885 22.880103-10.637268 43.9817-12.178367 61.022819-4.453429 8.647961 3.917216 17.626449 9.086959 24.672936 20.279882 6.941086 11.023054 10.742668 26.069749 11.965519 47.362704l0.029676 1.010003 0 641.97626-0.00614 0.188288c-0.595564 27.813462-3.975545 58.421574-36.755112 69.568449C579.95009 905.237129 573.434699 906.136615 566.925449 906.136615L566.925449 906.136615z" fill="#f55d54" p-id="15582"></path></svg>
@@ -1,116 +1,116 @@
1
- %!PS-Adobe-3.0 EPSF-3.0
2
- %%Creator: cairo 1.14.2 (http://cairographics.org)
3
- %%CreationDate: Thu May 31 18:41:18 2018
4
- %%Pages: 1
5
- %%DocumentData: Clean7Bit
6
- %%LanguageLevel: 2
7
- %%BoundingBox: 0 -1 681 702
8
- %%EndComments
9
- %%BeginProlog
10
- save
11
- 50 dict begin
12
- /q { gsave } bind def
13
- /Q { grestore } bind def
14
- /cm { 6 array astore concat } bind def
15
- /w { setlinewidth } bind def
16
- /J { setlinecap } bind def
17
- /j { setlinejoin } bind def
18
- /M { setmiterlimit } bind def
19
- /d { setdash } bind def
20
- /m { moveto } bind def
21
- /l { lineto } bind def
22
- /c { curveto } bind def
23
- /h { closepath } bind def
24
- /re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
25
- 0 exch rlineto 0 rlineto closepath } bind def
26
- /S { stroke } bind def
27
- /f { fill } bind def
28
- /f* { eofill } bind def
29
- /n { newpath } bind def
30
- /W { clip } bind def
31
- /W* { eoclip } bind def
32
- /BT { } bind def
33
- /ET { } bind def
34
- /pdfmark where { pop globaldict /?pdfmark /exec load put }
35
- { globaldict begin /?pdfmark /pop load def /pdfmark
36
- /cleartomark load def end } ifelse
37
- /BDC { mark 3 1 roll /BDC pdfmark } bind def
38
- /EMC { mark /EMC pdfmark } bind def
39
- /cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
40
- /Tj { show currentpoint cairo_store_point } bind def
41
- /TJ {
42
- {
43
- dup
44
- type /stringtype eq
45
- { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
46
- } forall
47
- currentpoint cairo_store_point
48
- } bind def
49
- /cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
50
- cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
51
- /Tf { pop /cairo_font exch def /cairo_font_matrix where
52
- { pop cairo_selectfont } if } bind def
53
- /Td { matrix translate cairo_font_matrix matrix concatmatrix dup
54
- /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
55
- /cairo_font where { pop cairo_selectfont } if } bind def
56
- /Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
57
- cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
58
- /g { setgray } bind def
59
- /rg { setrgbcolor } bind def
60
- /d1 { setcachedevice } bind def
61
- %%EndProlog
62
- %%BeginSetup
63
- %%EndSetup
64
- %%Page: 1 1
65
- %%BeginPageSetup
66
- %%PageBoundingBox: 0 -1 681 702
67
- %%EndPageSetup
68
- q 0 -1 681 703 rectclip q
69
- 0.0705882 0.588235 0.858824 rg
70
- 611.781 180.256 m 584.672 165.744 503.043 103.53 473.734 100.24 c 444.715
71
- 96.94 366.16 102.076 310.301 106.768 c 247.078 112.045 271.734 134.862
72
- 281.734 137.303 c 291.75 139.752 412.863 145.58 453.316 149.713 c 489.73
73
- 153.448 484.477 185.436 443.434 186.733 c 402.395 187.983 216.434 199.186
74
- 153.918 195.444 c 91.355 191.701 0 117.229 0 117.229 c 3.418 105.428 l
75
- 136.656 -0.002 l 154.426 1.24 l 154.426 1.24 187.078 17.983 214.246 23.018
76
- c 241.414 28.049 391.539 13.342 443.375 20.076 c 495.211 26.799 628.766
77
- 126.393 658.074 148.119 c 672.32 158.721 682.504 173.877 679.551 177.959
78
- c 665.273 197.338 629.34 189.666 611.781 180.256 c h
79
- 611.781 180.256 m f
80
- 216.598 506.076 m 214.359 503.498 214.441 570.783 195.031 569.701 c 186.402
81
- 533.037 141.109 438.135 138.953 405.783 c 136.793 373.428 171.305 296.881
82
- 250.031 265.604 c 234.934 322.74 226.305 324.901 241.402 357.252 c 256.5
83
- 389.604 297.48 435.979 291.012 475.881 c 308.266 424.115 306.109 432.744
84
- 302.875 404.701 c 332 431.662 353.57 469.408 344.941 523.33 c 381.609 478.037
85
- 424.746 434.901 422.59 361.565 c 420.434 288.252 406.414 265.604 406.414
86
- 265.604 c 406.414 265.604 505.629 291.588 535.824 440.881 c 550.922 517.94
87
- 444.16 630.096 444.16 630.096 c 444.16 630.096 447.395 541.662 430.137
88
- 519.018 c 419.355 568.623 389.156 639.803 305.031 701.272 c 291.012 639.803
89
- 308.266 611.764 216.598 506.076 c h
90
- 216.598 506.076 m f
91
- 611.781 180.256 m 584.672 165.744 503.043 103.53 473.734 100.24 c 444.715
92
- 96.94 366.16 102.076 310.301 106.768 c 247.078 112.045 271.734 134.862
93
- 281.734 137.303 c 291.75 139.752 412.863 145.58 453.316 149.713 c 489.73
94
- 153.448 484.477 185.436 443.434 186.733 c 402.395 187.983 216.434 199.186
95
- 153.918 195.444 c 91.355 191.701 0 117.229 0 117.229 c 3.418 105.428 l
96
- 136.656 -0.002 l 154.426 1.24 l 154.426 1.24 187.078 17.983 214.246 23.018
97
- c 241.414 28.049 391.539 13.342 443.375 20.076 c 495.211 26.799 628.766
98
- 126.393 658.074 148.119 c 672.32 158.721 682.504 173.877 679.551 177.959
99
- c 665.273 197.338 629.34 189.666 611.781 180.256 c h
100
- 611.781 180.256 m f
101
- 216.598 506.076 m 214.359 503.498 214.441 570.783 195.031 569.701 c 186.402
102
- 533.037 141.109 438.135 138.953 405.783 c 136.793 373.428 171.305 296.881
103
- 250.031 265.604 c 234.934 322.74 226.305 324.901 241.402 357.252 c 256.5
104
- 389.604 297.48 435.979 291.012 475.881 c 308.266 424.115 306.109 432.744
105
- 302.875 404.701 c 332 431.662 353.57 469.408 344.941 523.33 c 381.609 478.037
106
- 424.746 434.901 422.59 361.565 c 420.434 288.252 406.414 265.604 406.414
107
- 265.604 c 406.414 265.604 505.629 291.588 535.824 440.881 c 550.922 517.94
108
- 444.16 630.096 444.16 630.096 c 444.16 630.096 447.395 541.662 430.137
109
- 519.018 c 419.355 568.623 389.156 639.803 305.031 701.272 c 291.012 639.803
110
- 308.266 611.764 216.598 506.076 c h
111
- 216.598 506.076 m f
112
- Q Q
113
- showpage
114
- %%Trailer
115
- end restore
116
- %%EOF
1
+ %!PS-Adobe-3.0 EPSF-3.0
2
+ %%Creator: cairo 1.14.2 (http://cairographics.org)
3
+ %%CreationDate: Thu May 31 18:41:18 2018
4
+ %%Pages: 1
5
+ %%DocumentData: Clean7Bit
6
+ %%LanguageLevel: 2
7
+ %%BoundingBox: 0 -1 681 702
8
+ %%EndComments
9
+ %%BeginProlog
10
+ save
11
+ 50 dict begin
12
+ /q { gsave } bind def
13
+ /Q { grestore } bind def
14
+ /cm { 6 array astore concat } bind def
15
+ /w { setlinewidth } bind def
16
+ /J { setlinecap } bind def
17
+ /j { setlinejoin } bind def
18
+ /M { setmiterlimit } bind def
19
+ /d { setdash } bind def
20
+ /m { moveto } bind def
21
+ /l { lineto } bind def
22
+ /c { curveto } bind def
23
+ /h { closepath } bind def
24
+ /re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
25
+ 0 exch rlineto 0 rlineto closepath } bind def
26
+ /S { stroke } bind def
27
+ /f { fill } bind def
28
+ /f* { eofill } bind def
29
+ /n { newpath } bind def
30
+ /W { clip } bind def
31
+ /W* { eoclip } bind def
32
+ /BT { } bind def
33
+ /ET { } bind def
34
+ /pdfmark where { pop globaldict /?pdfmark /exec load put }
35
+ { globaldict begin /?pdfmark /pop load def /pdfmark
36
+ /cleartomark load def end } ifelse
37
+ /BDC { mark 3 1 roll /BDC pdfmark } bind def
38
+ /EMC { mark /EMC pdfmark } bind def
39
+ /cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
40
+ /Tj { show currentpoint cairo_store_point } bind def
41
+ /TJ {
42
+ {
43
+ dup
44
+ type /stringtype eq
45
+ { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
46
+ } forall
47
+ currentpoint cairo_store_point
48
+ } bind def
49
+ /cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
50
+ cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
51
+ /Tf { pop /cairo_font exch def /cairo_font_matrix where
52
+ { pop cairo_selectfont } if } bind def
53
+ /Td { matrix translate cairo_font_matrix matrix concatmatrix dup
54
+ /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
55
+ /cairo_font where { pop cairo_selectfont } if } bind def
56
+ /Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
57
+ cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
58
+ /g { setgray } bind def
59
+ /rg { setrgbcolor } bind def
60
+ /d1 { setcachedevice } bind def
61
+ %%EndProlog
62
+ %%BeginSetup
63
+ %%EndSetup
64
+ %%Page: 1 1
65
+ %%BeginPageSetup
66
+ %%PageBoundingBox: 0 -1 681 702
67
+ %%EndPageSetup
68
+ q 0 -1 681 703 rectclip q
69
+ 0.0705882 0.588235 0.858824 rg
70
+ 611.781 180.256 m 584.672 165.744 503.043 103.53 473.734 100.24 c 444.715
71
+ 96.94 366.16 102.076 310.301 106.768 c 247.078 112.045 271.734 134.862
72
+ 281.734 137.303 c 291.75 139.752 412.863 145.58 453.316 149.713 c 489.73
73
+ 153.448 484.477 185.436 443.434 186.733 c 402.395 187.983 216.434 199.186
74
+ 153.918 195.444 c 91.355 191.701 0 117.229 0 117.229 c 3.418 105.428 l
75
+ 136.656 -0.002 l 154.426 1.24 l 154.426 1.24 187.078 17.983 214.246 23.018
76
+ c 241.414 28.049 391.539 13.342 443.375 20.076 c 495.211 26.799 628.766
77
+ 126.393 658.074 148.119 c 672.32 158.721 682.504 173.877 679.551 177.959
78
+ c 665.273 197.338 629.34 189.666 611.781 180.256 c h
79
+ 611.781 180.256 m f
80
+ 216.598 506.076 m 214.359 503.498 214.441 570.783 195.031 569.701 c 186.402
81
+ 533.037 141.109 438.135 138.953 405.783 c 136.793 373.428 171.305 296.881
82
+ 250.031 265.604 c 234.934 322.74 226.305 324.901 241.402 357.252 c 256.5
83
+ 389.604 297.48 435.979 291.012 475.881 c 308.266 424.115 306.109 432.744
84
+ 302.875 404.701 c 332 431.662 353.57 469.408 344.941 523.33 c 381.609 478.037
85
+ 424.746 434.901 422.59 361.565 c 420.434 288.252 406.414 265.604 406.414
86
+ 265.604 c 406.414 265.604 505.629 291.588 535.824 440.881 c 550.922 517.94
87
+ 444.16 630.096 444.16 630.096 c 444.16 630.096 447.395 541.662 430.137
88
+ 519.018 c 419.355 568.623 389.156 639.803 305.031 701.272 c 291.012 639.803
89
+ 308.266 611.764 216.598 506.076 c h
90
+ 216.598 506.076 m f
91
+ 611.781 180.256 m 584.672 165.744 503.043 103.53 473.734 100.24 c 444.715
92
+ 96.94 366.16 102.076 310.301 106.768 c 247.078 112.045 271.734 134.862
93
+ 281.734 137.303 c 291.75 139.752 412.863 145.58 453.316 149.713 c 489.73
94
+ 153.448 484.477 185.436 443.434 186.733 c 402.395 187.983 216.434 199.186
95
+ 153.918 195.444 c 91.355 191.701 0 117.229 0 117.229 c 3.418 105.428 l
96
+ 136.656 -0.002 l 154.426 1.24 l 154.426 1.24 187.078 17.983 214.246 23.018
97
+ c 241.414 28.049 391.539 13.342 443.375 20.076 c 495.211 26.799 628.766
98
+ 126.393 658.074 148.119 c 672.32 158.721 682.504 173.877 679.551 177.959
99
+ c 665.273 197.338 629.34 189.666 611.781 180.256 c h
100
+ 611.781 180.256 m f
101
+ 216.598 506.076 m 214.359 503.498 214.441 570.783 195.031 569.701 c 186.402
102
+ 533.037 141.109 438.135 138.953 405.783 c 136.793 373.428 171.305 296.881
103
+ 250.031 265.604 c 234.934 322.74 226.305 324.901 241.402 357.252 c 256.5
104
+ 389.604 297.48 435.979 291.012 475.881 c 308.266 424.115 306.109 432.744
105
+ 302.875 404.701 c 332 431.662 353.57 469.408 344.941 523.33 c 381.609 478.037
106
+ 424.746 434.901 422.59 361.565 c 420.434 288.252 406.414 265.604 406.414
107
+ 265.604 c 406.414 265.604 505.629 291.588 535.824 440.881 c 550.922 517.94
108
+ 444.16 630.096 444.16 630.096 c 444.16 630.096 447.395 541.662 430.137
109
+ 519.018 c 419.355 568.623 389.156 639.803 305.031 701.272 c 291.012 639.803
110
+ 308.266 611.764 216.598 506.076 c h
111
+ 216.598 506.076 m f
112
+ Q Q
113
+ showpage
114
+ %%Trailer
115
+ end restore
116
+ %%EOF
@@ -1 +1 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1527766432051" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="18868" xmlns:xlink="http://www.w3.org/1999/xlink" width="30" height="13"><defs><style type="text/css"></style></defs><path d="M552.448 396.8c12.288 12.288 19.456 29.184 19.456 46.592 0 17.408-7.168 34.304-19.456 46.592-12.288 12.288-29.184 19.456-46.592 19.456-17.408 0-34.304-7.168-46.592-19.456-12.288-12.288-19.456-29.184-19.456-46.592 0-17.408 7.168-34.304 19.456-46.592 12.288-12.288 29.184-19.456 46.592-19.456 17.408 0 34.816 7.168 46.592 19.456z m166.4-19.456c-17.408 0-34.304 7.168-46.592 19.456-12.288 12.288-19.456 29.184-19.456 46.592 0 17.408 7.168 34.304 19.456 46.592 12.288 12.288 29.184 19.456 46.592 19.456 17.408 0 34.304-7.168 46.592-19.456 12.288-12.288 19.456-29.184 19.456-46.592 0-17.408-7.168-34.304-19.456-46.592-12.288-12.288-28.672-19.456-46.592-19.456z m-412.672 0c-17.408 0-34.304 7.168-46.592 19.456-12.288 12.288-19.456 29.184-19.456 46.592 0 17.408 7.168 34.304 19.456 46.592 12.288 12.288 29.184 19.456 46.592 19.456 17.408 0 34.304-7.168 46.592-19.456 12.288-12.288 19.456-29.184 19.456-46.592 0-17.408-7.168-34.304-19.456-46.592-12.288-12.288-29.184-19.456-46.592-19.456z m670.208 64.512c0 202.24-217.6 386.56-468.992 385.536l-19.968 6.144-181.248 138.24c-6.656 3.584-14.336 5.632-22.528 5.12-13.312 0.512-27.136-7.68-35.328-21.504l-54.784-196.096c-1.536-3.072-2.56-5.632-4.096-8.704-104.448-73.216-142.336-196.608-142.336-315.392 0-210.432 207.872-388.608 464.384-388.608 257.024 0 464.896 184.32 464.896 395.264z m-66.048 0.512c0-180.736-178.688-331.264-398.336-331.264-220.16 0-398.336 143.872-398.336 324.608 0 108.032 35.328 220.672 134.144 283.136 0 0 2.56 2.048 3.584 8.192 2.048 7.68 44.032 176.128 44.032 176.128s150.528-124.416 156.16-126.976c5.632-2.048 18.432-3.584 25.6-3.584 219.648 0.512 433.152-149.504 433.152-330.24z" fill="#1B7EF5" p-id="18869"></path></svg>
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1527766432051" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="18868" xmlns:xlink="http://www.w3.org/1999/xlink" width="30" height="13"><defs><style type="text/css"></style></defs><path d="M552.448 396.8c12.288 12.288 19.456 29.184 19.456 46.592 0 17.408-7.168 34.304-19.456 46.592-12.288 12.288-29.184 19.456-46.592 19.456-17.408 0-34.304-7.168-46.592-19.456-12.288-12.288-19.456-29.184-19.456-46.592 0-17.408 7.168-34.304 19.456-46.592 12.288-12.288 29.184-19.456 46.592-19.456 17.408 0 34.816 7.168 46.592 19.456z m166.4-19.456c-17.408 0-34.304 7.168-46.592 19.456-12.288 12.288-19.456 29.184-19.456 46.592 0 17.408 7.168 34.304 19.456 46.592 12.288 12.288 29.184 19.456 46.592 19.456 17.408 0 34.304-7.168 46.592-19.456 12.288-12.288 19.456-29.184 19.456-46.592 0-17.408-7.168-34.304-19.456-46.592-12.288-12.288-28.672-19.456-46.592-19.456z m-412.672 0c-17.408 0-34.304 7.168-46.592 19.456-12.288 12.288-19.456 29.184-19.456 46.592 0 17.408 7.168 34.304 19.456 46.592 12.288 12.288 29.184 19.456 46.592 19.456 17.408 0 34.304-7.168 46.592-19.456 12.288-12.288 19.456-29.184 19.456-46.592 0-17.408-7.168-34.304-19.456-46.592-12.288-12.288-29.184-19.456-46.592-19.456z m670.208 64.512c0 202.24-217.6 386.56-468.992 385.536l-19.968 6.144-181.248 138.24c-6.656 3.584-14.336 5.632-22.528 5.12-13.312 0.512-27.136-7.68-35.328-21.504l-54.784-196.096c-1.536-3.072-2.56-5.632-4.096-8.704-104.448-73.216-142.336-196.608-142.336-315.392 0-210.432 207.872-388.608 464.384-388.608 257.024 0 464.896 184.32 464.896 395.264z m-66.048 0.512c0-180.736-178.688-331.264-398.336-331.264-220.16 0-398.336 143.872-398.336 324.608 0 108.032 35.328 220.672 134.144 283.136 0 0 2.56 2.048 3.584 8.192 2.048 7.68 44.032 176.128 44.032 176.128s150.528-124.416 156.16-126.976c5.632-2.048 18.432-3.584 25.6-3.584 219.648 0.512 433.152-149.504 433.152-330.24z" fill="#1B7EF5" p-id="18869"></path></svg>