ike-weblca-html 1.1.16 → 1.3.0
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/.idea/git_toolbox_blame.xml +6 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/IkeWebFooter.js +311 -97
- package/src/IkeWebHeader.js +96 -89
- package/dist/my-package.js +0 -2
- package/dist/my-package.js.LICENSE.txt +0 -21
package/package.json
CHANGED
package/src/IkeWebFooter.js
CHANGED
|
@@ -201,20 +201,24 @@ export class IkeWebFooter extends LitElement {
|
|
|
201
201
|
`;
|
|
202
202
|
// @ts-ignore
|
|
203
203
|
identification = window.location.hostname.split('.')[0]
|
|
204
|
-
|
|
204
|
+
hostName = window.location.href
|
|
205
|
+
isPlat = this.identification === 'www' || this.identification === '192' || this.identification === 'online'
|
|
205
206
|
data = []; // 创建用于存储 Ajax 数据的属性
|
|
206
207
|
personalizedConfigJson = {}; // 创建用于存储 Ajax 数据的属性
|
|
207
208
|
logo = null;
|
|
208
209
|
currentLanguage = 'zh_CN';
|
|
210
|
+
JumpHref = '';
|
|
209
211
|
zhCN = {
|
|
210
|
-
'联系我们':'联系我们',
|
|
211
|
-
'QQ群':'QQ群',
|
|
212
|
-
'邮编':'邮编',
|
|
213
|
-
'关注我们':'关注我们',
|
|
214
|
-
'WebLCA开放平台':'WebLCA开放平台',
|
|
215
|
-
'
|
|
216
|
-
'
|
|
217
|
-
'
|
|
212
|
+
'联系我们': '联系我们',
|
|
213
|
+
'QQ群': 'QQ群',
|
|
214
|
+
'邮编': '邮编',
|
|
215
|
+
'关注我们': '关注我们',
|
|
216
|
+
'WebLCA开放平台': 'WebLCA开放平台',
|
|
217
|
+
'WebLCA开放平台-关注': 'WebLCA开放平台',
|
|
218
|
+
'跳转安全管理平台': '',
|
|
219
|
+
'蜀ICP备08100730号-1': '蜀ICP备08100730号-1',
|
|
220
|
+
'技术支持:亿科环境': '技术支持:亿科环境',
|
|
221
|
+
'了解更多信息': '了解更多信息',
|
|
218
222
|
}
|
|
219
223
|
zhTW = {
|
|
220
224
|
"联系我们": "聯繫我們",
|
|
@@ -222,6 +226,8 @@ export class IkeWebFooter extends LitElement {
|
|
|
222
226
|
"邮编": "郵編",
|
|
223
227
|
"关注我们": "關注我們",
|
|
224
228
|
"WebLCA开放平台": "WebLCA開放平臺",
|
|
229
|
+
'WebLCA开放平台-关注': 'WebLCA開放平臺',
|
|
230
|
+
'跳转安全管理平台': '',
|
|
225
231
|
"蜀ICP备08100730号-1": "蜀ICP備08100730號-1",
|
|
226
232
|
"技术支持:亿科环境": "技術支持:億科環境",
|
|
227
233
|
"了解更多信息": "瞭解更多資訊",
|
|
@@ -232,20 +238,71 @@ export class IkeWebFooter extends LitElement {
|
|
|
232
238
|
"邮编": "Postal Code",
|
|
233
239
|
"关注我们": "Follow Us",
|
|
234
240
|
"WebLCA开放平台": "WebLCA Open Platform",
|
|
241
|
+
'WebLCA开放平台-关注': 'WebLCA Open Platform',
|
|
242
|
+
'跳转安全管理平台': '',
|
|
235
243
|
"蜀ICP备08100730号-1": "Sichuan ICP No. 08100730-1",
|
|
236
244
|
"技术支持:亿科环境": "Technical Support: ECO Environment",
|
|
237
245
|
"了解更多信息": "Learn More",
|
|
238
246
|
}
|
|
239
247
|
i18n = {}
|
|
240
248
|
createLang = navigator.language.replace('-', '_')
|
|
241
|
-
lang = window.localStorage.getItem('lang')
|
|
242
|
-
|
|
243
|
-
|
|
249
|
+
lang = window.localStorage.getItem('lang') || this.createLang //(await localStorage.getItem('lang') || this.translate.getBrowserCultureLang() || '').includes('zh') ? 'zh' : 'en';
|
|
244
250
|
|
|
245
251
|
|
|
246
252
|
// 在 connectedCallback 中发起 Ajax 请求
|
|
247
253
|
connectedCallback() {
|
|
248
|
-
|
|
254
|
+
let origin = window.location.origin
|
|
255
|
+
if (origin.includes('efootprint.net')) {
|
|
256
|
+
this.JumpHref = 'https://www.beian.gov.cn/portal/registerSystemInfo?recordcode=51010702003680'
|
|
257
|
+
this.zhCN['跳转安全管理平台'] = '公安备案号:51010702003680'
|
|
258
|
+
this.zhTW['跳转安全管理平台'] = '公安備案號:51010702003680'
|
|
259
|
+
this.enUS['跳转安全管理平台'] = 'Public security registration number: 51010702003680'
|
|
260
|
+
this.zhCN['WebLCA开放平台'] = '亿科在线LCA评价系统efootprint'
|
|
261
|
+
this.zhTW['WebLCA开放平台'] = '亿科在線LCA評價系統efootprint'
|
|
262
|
+
this.enUS['WebLCA开放平台'] = 'EFOOTPRINT LCA Evaluation System'
|
|
263
|
+
} else if (origin.includes('ike-global.com')) {
|
|
264
|
+
this.JumpHref = 'https://www.beian.gov.cn/portal/registerSystemInfo?recordcode=51010702003679'
|
|
265
|
+
this.zhCN['跳转安全管理平台'] = '公安备案号:51010702003679'
|
|
266
|
+
this.zhTW['跳转安全管理平台'] = '公安備案號:51010702003679'
|
|
267
|
+
this.enUS['跳转安全管理平台'] = 'Public security registration number: 51010702003679'
|
|
268
|
+
this.zhCN['WebLCA开放平台'] = '亿科官网'
|
|
269
|
+
this.zhTW['WebLCA开放平台'] = '亿科官網'
|
|
270
|
+
this.enUS['WebLCA开放平台'] = 'Yike Official Website'
|
|
271
|
+
} else if (origin.includes('webgpm.net')) {
|
|
272
|
+
this.JumpHref = 'https://www.beian.gov.cn/portal/registerSystemInfo?recordcode=51010702003678'
|
|
273
|
+
this.zhCN['跳转安全管理平台'] = '公安备案号:51010702003678'
|
|
274
|
+
this.zhTW['跳转安全管理平台'] = '公安備案號:51010702003678'
|
|
275
|
+
this.enUS['跳转安全管理平台'] = 'Public security registration number: 51010702003678'
|
|
276
|
+
this.zhCN['WebLCA开放平台'] = '亿科企业绿色管理系统'
|
|
277
|
+
this.zhTW['WebLCA开放平台'] = '亿科企業綠色管理系統'
|
|
278
|
+
this.enUS['WebLCA开放平台'] = 'Yike Enterprise Green Management System'
|
|
279
|
+
} else if (origin.includes('webcarbon.net')) {
|
|
280
|
+
this.JumpHref = 'https://www.beian.gov.cn/portal/registerSystemInfo?recordcode=51010702003676'
|
|
281
|
+
this.zhCN['跳转安全管理平台'] = '公安备案号:51010702003676'
|
|
282
|
+
this.zhTW['跳转安全管理平台'] = '公安備案號:51010702003676'
|
|
283
|
+
this.enUS['跳转安全管理平台'] = 'Public security registration number: 51010702003676'
|
|
284
|
+
this.zhCN['WebLCA开放平台'] = '亿科企业碳中和管理系统'
|
|
285
|
+
this.zhTW['WebLCA开放平台'] = '亿科企業碳中和系統'
|
|
286
|
+
this.enUS['WebLCA开放平台'] = 'Yike Enterprise Carbon Emission Management System'
|
|
287
|
+
} else if (origin.includes('weblca.net')) {
|
|
288
|
+
this.JumpHref = 'https://www.beian.gov.cn/portal/registerSystemInfo?recordcode=51010702003670'
|
|
289
|
+
this.zhCN['跳转安全管理平台'] = '公安备案号:51010702003670'
|
|
290
|
+
this.zhTW['跳转安全管理平台'] = '公安備案號:51010702003670'
|
|
291
|
+
this.enUS['跳转安全管理平台'] = 'Public security registration number: 51010702003670'
|
|
292
|
+
this.zhCN['WebLCA开放平台'] = '亿科产品生命周期分析系统'
|
|
293
|
+
this.zhTW['WebLCA开放平台'] = '亿科產品生命週期分析系統'
|
|
294
|
+
this.enUS['WebLCA开放平台'] = 'Yike Product Life Cycle Analysis System'
|
|
295
|
+
} else {
|
|
296
|
+
this.JumpHref = 'https://www.beian.gov.cn/portal/registerSystemInfo?recordcode=51010702003680'
|
|
297
|
+
this.zhCN['跳转安全管理平台'] = '公安备案号:51010702003680'
|
|
298
|
+
this.zhTW['跳转安全管理平台'] = '公安備案號:51010702003680'
|
|
299
|
+
this.enUS['跳转安全管理平台'] = 'Public security registration number: 51010702003680'
|
|
300
|
+
this.zhCN['WebLCA开放平台'] = '亿科在线LCA评价系统efootprint'
|
|
301
|
+
this.zhTW['WebLCA开放平台'] = '亿科在線LCA評價系統efootprint'
|
|
302
|
+
this.enUS['WebLCA开放平台'] = 'EFOOTPRINT LCA Evaluation System'
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
switch (this.lang) {
|
|
249
306
|
case 'zh':
|
|
250
307
|
this.currentLanguage = 'zh_CN';
|
|
251
308
|
this.i18n = this.zhCN
|
|
@@ -260,17 +317,18 @@ export class IkeWebFooter extends LitElement {
|
|
|
260
317
|
break;
|
|
261
318
|
case 'en_US':
|
|
262
319
|
this.currentLanguage = 'en_US';
|
|
263
|
-
this.i18n= this.enUS
|
|
320
|
+
this.i18n = this.enUS
|
|
264
321
|
break;
|
|
265
322
|
default:
|
|
266
323
|
this.currentLanguage = 'zh_CN';
|
|
267
324
|
this.i18n = this.zhCN
|
|
268
325
|
break;
|
|
269
326
|
}
|
|
270
|
-
console.log('this.currentLanguage', this.i18n)
|
|
271
327
|
|
|
272
328
|
super.connectedCallback();
|
|
273
329
|
this.fetchData();
|
|
330
|
+
|
|
331
|
+
|
|
274
332
|
}
|
|
275
333
|
|
|
276
334
|
async fetchData() {
|
|
@@ -289,7 +347,7 @@ export class IkeWebFooter extends LitElement {
|
|
|
289
347
|
this.phone = this.personalizedConfigJson?.orgPhone
|
|
290
348
|
this.address = this.personalizedConfigJson?.orgAddress;
|
|
291
349
|
this.followUrl = this.personalizedConfigJson?.followUrl;
|
|
292
|
-
window.localStorage.setItem('ike-follow-url',this.followUrl)
|
|
350
|
+
window.localStorage.setItem('ike-follow-url', this.followUrl)
|
|
293
351
|
setTimeout(() => this.requestUpdate(), 1000)
|
|
294
352
|
|
|
295
353
|
// this.requestUpdate(); // 更新组件以触发重新渲染
|
|
@@ -302,96 +360,252 @@ export class IkeWebFooter extends LitElement {
|
|
|
302
360
|
|
|
303
361
|
render() {
|
|
304
362
|
return html`${this.isPlat ? html`
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
363
|
+
<div class="plate-footer" id="box-id">
|
|
364
|
+
<div class="footer1-box flex">
|
|
365
|
+
<div class="box-a">
|
|
366
|
+
<img src="http://ike-web.oss-cn-hangzhou.aliyuncs.com/WebLCA_logo.png" alt="">
|
|
367
|
+
</div>
|
|
368
|
+
<div class="flex flex-clon box-b">
|
|
369
|
+
<div class="box-c-b"><span>${this.i18n['联系我们']}</span></div>
|
|
370
|
+
<div>
|
|
371
|
+
<div class="box-b-a ">
|
|
372
|
+
<img src="https://ike-web.oss-cn-hangzhou.aliyuncs.com/index_icon_tel_normal.png"
|
|
373
|
+
alt="">
|
|
374
|
+
<span>189 8093 7517</span>
|
|
375
|
+
</div>
|
|
376
|
+
<div class="box-b-b">
|
|
377
|
+
<img src="https://ike-web.oss-cn-hangzhou.aliyuncs.com/index_icon_qq_normal.png" alt="">
|
|
378
|
+
<span>609453080 (${this.i18n['QQ群']})</span>
|
|
379
|
+
|
|
380
|
+
</div>
|
|
381
|
+
<div class="box-b-b">
|
|
382
|
+
<img src="https://ike-web.oss-cn-hangzhou.aliyuncs.com/index_icon_e-mail_normal.png"
|
|
383
|
+
alt="">
|
|
384
|
+
<span>support@weblca.net</span>
|
|
385
|
+
</div>
|
|
386
|
+
<div class="box-b-b">
|
|
387
|
+
<img src="https://ike-web.oss-cn-hangzhou.aliyuncs.com/index_icon_postcode_normal.png"
|
|
388
|
+
alt="">
|
|
389
|
+
<span>610065(${this.i18n['邮编']})</span>
|
|
390
|
+
|
|
391
|
+
</div>
|
|
392
|
+
</div>
|
|
393
|
+
</div>
|
|
394
|
+
<div class="box-c">
|
|
395
|
+
<div class="box-c-b"><span>${this.i18n['关注我们']}</span></div>
|
|
396
|
+
<div class="box-c-a flex flex-clon">
|
|
397
|
+
<img src="https://ike-web.oss-cn-hangzhou.aliyuncs.com/QR.png" alt="">
|
|
398
|
+
<span>${this.i18n['WebLCA开放平台-关注']}</span>
|
|
399
|
+
</div>
|
|
400
|
+
</div>
|
|
331
401
|
</div>
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
<div class="box-c">
|
|
335
|
-
<div class="box-c-b"><span>${this.i18n['关注我们']}</span></div>
|
|
336
|
-
<div class="box-c-a flex flex-clon">
|
|
337
|
-
<img src="https://ike-web.oss-cn-hangzhou.aliyuncs.com/QR.png" alt="">
|
|
338
|
-
<span>${this.i18n['WebLCA开放平台']}</span>
|
|
339
|
-
</div>
|
|
340
|
-
</div>
|
|
341
|
-
</div>
|
|
342
|
-
|
|
343
|
-
<div class="footer-min">
|
|
402
|
+
|
|
403
|
+
<div class="footer-min">
|
|
344
404
|
<span>
|
|
345
|
-
© ${this.i18n['WebLCA开放平台']} |
|
|
405
|
+
© ${this.i18n['WebLCA开放平台']} | <a
|
|
406
|
+
href="https://beian.miit.gov.cn/#/Integrated/index"> ${this.i18n['蜀ICP备08100730号-1']} </a> | <a
|
|
407
|
+
href="${this.JumpHref}"> ${this.i18n['跳转安全管理平台']} </a> | ${this.i18n['技术支持:亿科环境']} | ${this.hostName.includes('efootprint.net')
|
|
408
|
+
? (this.lang === 'en_US' ? html`<a
|
|
409
|
+
href="https://xyt.xcc.cn/getpcInfo?sn=1734139875478667264&language=EN&certType=8&url=*.efootprint.net"
|
|
410
|
+
target="_blank"
|
|
411
|
+
style="position: relative;display: inline-block;height: 38px;">
|
|
412
|
+
<div style="width:100%;height:100%;position: absolute;top: 0;left: 0;"></div>
|
|
413
|
+
<embed src="https://program.xinchacha.com/web/1734139875478667264=*.efootprint.neten.svg"
|
|
414
|
+
width="103" height="38" type="image/svg+xml"
|
|
415
|
+
pluginspage="//www.adobe.com/svg/viewer/install/"/>
|
|
416
|
+
</a>` : html`<a
|
|
417
|
+
href="https://xyt.xcc.cn/getpcInfo?sn=1734139875478667264&language=CN&certType=8&url=*.efootprint.net"
|
|
418
|
+
style="position: relative;display: inline-block;height: 38px;"
|
|
419
|
+
target="_blank">
|
|
420
|
+
<div style="width:100%;height:100%;position: absolute;top: 0;left: 0;"></div>
|
|
421
|
+
<embed height="38" pluginspage="//www.adobe.com/svg/viewer/install/"
|
|
422
|
+
src="https://program.xinchacha.com/web/1734139875478667264=*.efootprint.net.svg"
|
|
423
|
+
type="image/svg+xml" width="103"/>
|
|
424
|
+
</a>`)
|
|
425
|
+
: this.hostName.includes('webcarbon.net')
|
|
426
|
+
? (this.lang === 'en_US' ? html`<a
|
|
427
|
+
href="https://xyt.xcc.cn/getpcInfo?sn=1734139921221746688&language=EN&certType=8&url=*.webcarbon.net"
|
|
428
|
+
target="_blank"
|
|
429
|
+
style="position: relative;display: inline-block;height: 38px;">
|
|
430
|
+
<div style="width:100%;height:100%;position: absolute;top: 0;left: 0;"></div>
|
|
431
|
+
<embed src="https://program.xinchacha.com/web/1734139921221746688=*.webcarbon.neten.svg"
|
|
432
|
+
width="103" height="38" type="image/svg+xml"
|
|
433
|
+
pluginspage="//www.adobe.com/svg/viewer/install/"/>
|
|
434
|
+
</a>` : html`<a
|
|
435
|
+
href="https://xyt.xcc.cn/getpcInfo?sn=1734139921221746688&language=CN&certType=8&url=*.webcarbon.net"
|
|
436
|
+
target="_blank"
|
|
437
|
+
style="position: relative;display: inline-block;height: 38px;">
|
|
438
|
+
<div style="width:100%;height:100%;position: absolute;top: 0;left: 0;"></div>
|
|
439
|
+
<embed src="https://program.xinchacha.com/web/1734139921221746688=*.webcarbon.net.svg"
|
|
440
|
+
width="103" height="38" type="image/svg+xml"
|
|
441
|
+
pluginspage="//www.adobe.com/svg/viewer/install/"/>
|
|
442
|
+
</a>`)
|
|
443
|
+
: this.hostName.includes('webgpm.net')
|
|
444
|
+
? (this.lang === 'en_US' ? html`<a
|
|
445
|
+
href="https://xyt.xcc.cn/getpcInfo?sn=1734139778921594880&language=EN&certType=8&url=*.webgpm.net"
|
|
446
|
+
target="_blank"
|
|
447
|
+
style="position: relative;display: inline-block;height: 38px;">
|
|
448
|
+
<div style="width:100%;height:100%;position: absolute;top: 0;left: 0;"></div>
|
|
449
|
+
<embed src="https://program.xinchacha.com/web/1734139778921594880=*.webgpm.neten.svg"
|
|
450
|
+
width="103" height="38" type="image/svg+xml"
|
|
451
|
+
pluginspage="//www.adobe.com/svg/viewer/install/"/>
|
|
452
|
+
</a>` : html`<a
|
|
453
|
+
href="https://xyt.xcc.cn/getpcInfo?sn=1734139778921594880&language=CN&certType=8&url=*.webgpm.net"
|
|
454
|
+
target="_blank"
|
|
455
|
+
style="position: relative;display: inline-block;height: 38px;">
|
|
456
|
+
<div style="width:100%;height:100%;position: absolute;top: 0;left: 0;"></div>
|
|
457
|
+
<embed src="https://program.xinchacha.com/web/1734139778921594880=*.webgpm.net.svg"
|
|
458
|
+
width="103" height="38" type="image/svg+xml"
|
|
459
|
+
pluginspage="//www.adobe.com/svg/viewer/install/"/>
|
|
460
|
+
</a>`)
|
|
461
|
+
: (this.lang === 'en_US' ? html`<a
|
|
462
|
+
href="https://xyt.xcc.cn/getpcInfo?sn=1734139832650629120&language=EN&certType=8&url=*.weblca.net"
|
|
463
|
+
target="_blank"
|
|
464
|
+
style="position: relative;display: inline-block;height: 38px;">
|
|
465
|
+
<div style="width:100%;height:100%;position: absolute;top: 0;left: 0;"></div>
|
|
466
|
+
<embed src="https://program.xinchacha.com/web/1734139832650629120=*.weblca.neten.svg"
|
|
467
|
+
width="103" height="38" type="image/svg+xml"
|
|
468
|
+
pluginspage="//www.adobe.com/svg/viewer/install/"/>
|
|
469
|
+
</a>` : html`<a
|
|
470
|
+
href="https://xyt.xcc.cn/getpcInfo?sn=1734139832650629120&language=CN&certType=8&url=*.weblca.net"
|
|
471
|
+
target="_blank"
|
|
472
|
+
style="position: relative;display: inline-block;height: 38px;">
|
|
473
|
+
<div style="width:100%;height:100%;position: absolute;top: 0;left: 0;"></div>
|
|
474
|
+
<embed src="https://program.xinchacha.com/web/1734139832650629120=*.weblca.net.svg"
|
|
475
|
+
width="103" height="38" type="image/svg+xml"
|
|
476
|
+
pluginspage="//www.adobe.com/svg/viewer/install/"/>
|
|
477
|
+
</a>`)
|
|
478
|
+
}
|
|
346
479
|
</span>
|
|
347
|
-
|
|
348
|
-
|
|
480
|
+
</div>
|
|
481
|
+
</div>`
|
|
349
482
|
: html`
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
<div class="flex flex-clon box-b">
|
|
356
|
-
<div class="box-c-b"><span
|
|
357
|
-
style="color: #272727;border-bottom: 3px solid #272727"> ${this.i18n['联系我们']}</span></div>
|
|
358
|
-
<div>
|
|
359
|
-
<div class="box-b-b-ent">
|
|
360
|
-
<img src="https://ike-web.oss-cn-hangzhou.aliyuncs.com/index_icon_people_normal.png"
|
|
361
|
-
alt="">
|
|
362
|
-
<span>${this.orgContacts}</span>
|
|
483
|
+
<div class="plate-footer-ent" id="box-id">
|
|
484
|
+
<div class="footer1-box-ent flex">
|
|
485
|
+
<div class="box-a" style="display: flex;align-items: center">
|
|
486
|
+
<img src="${this.logo}" alt=""> <span
|
|
487
|
+
style="margin-left: 12px;color: #373737;font-weight: 600;font-size: 20px">${this.name}</span>
|
|
363
488
|
</div>
|
|
364
|
-
<div class="box-b
|
|
365
|
-
<
|
|
366
|
-
|
|
489
|
+
<div class="flex flex-clon box-b">
|
|
490
|
+
<div class="box-c-b"><span
|
|
491
|
+
style="color: #272727;border-bottom: 3px solid #272727"> ${this.i18n['联系我们']}</span>
|
|
492
|
+
</div>
|
|
493
|
+
<div>
|
|
494
|
+
<div class="box-b-b-ent">
|
|
495
|
+
<img src="https://ike-web.oss-cn-hangzhou.aliyuncs.com/index_icon_people_normal.png"
|
|
496
|
+
alt="">
|
|
497
|
+
<span>${this.orgContacts}</span>
|
|
498
|
+
</div>
|
|
499
|
+
<div class="box-b-b-ent">
|
|
500
|
+
<img src="http://ike-web.oss-cn-hangzhou.aliyuncs.com/tel.png" alt="">
|
|
501
|
+
<span>${this.phone}</span>
|
|
502
|
+
</div>
|
|
503
|
+
<div class="box-b-b-ent">
|
|
504
|
+
<img src="http://ike-web.oss-cn-hangzhou.aliyuncs.com/e-mail.png" alt="">
|
|
505
|
+
<span>${this.email}</span>
|
|
506
|
+
</div>
|
|
507
|
+
<div class="box-b-b-ent">
|
|
508
|
+
<img src="https://ike-web.oss-cn-hangzhou.aliyuncs.com/index_icon_address_normal.png"
|
|
509
|
+
alt="">
|
|
510
|
+
<span>${this.address}</span>
|
|
511
|
+
</div>
|
|
512
|
+
</div>
|
|
367
513
|
</div>
|
|
368
|
-
<div class="box-
|
|
369
|
-
<
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
514
|
+
<div class="box-c">
|
|
515
|
+
<div class="box-c-b"><span
|
|
516
|
+
style="color: #272727;border-bottom: 3px solid #272727">${this.i18n['关注我们']}</span>
|
|
517
|
+
</div>
|
|
518
|
+
<div class="box-c-a flex flex-clon">
|
|
519
|
+
${this.followUrl ? html`<img src="${this.followUrl}" alt="">` : html`<img
|
|
520
|
+
src="https://ike-web.oss-cn-hangzhou.aliyuncs.com/QR.png" alt="">`}
|
|
521
|
+
<span>${this.i18n['了解更多信息']}</span>
|
|
522
|
+
</div>
|
|
376
523
|
</div>
|
|
377
524
|
</div>
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
525
|
+
<div class="footer-min-ent">
|
|
526
|
+
<span>
|
|
527
|
+
© ${this.i18n['WebLCA开放平台']} | <a
|
|
528
|
+
href="https://beian.miit.gov.cn/#/Integrated/index"> ${this.i18n['蜀ICP备08100730号-1']} </a> | <a
|
|
529
|
+
href="${this.JumpHref}"> ${this.i18n['跳转安全管理平台']} </a> | ${this.i18n['技术支持:亿科环境']} |
|
|
530
|
+
|
|
531
|
+
${this.hostName.includes('efootprint.net')
|
|
532
|
+
? (this.lang === 'en_US' ? html`<a
|
|
533
|
+
href="https://xyt.xcc.cn/getpcInfo?sn=1734139875478667264&language=EN&certType=8&url=*.efootprint.net"
|
|
534
|
+
target="_blank"
|
|
535
|
+
style="position: relative;display: inline-block;height: 38px;">
|
|
536
|
+
<div style="width:100%;height:100%;position: absolute;top: 0;left: 0;"></div>
|
|
537
|
+
<embed src="https://program.xinchacha.com/web/1734139875478667264=*.efootprint.neten.svg"
|
|
538
|
+
width="103" height="38" type="image/svg+xml"
|
|
539
|
+
pluginspage="//www.adobe.com/svg/viewer/install/"/>
|
|
540
|
+
</a>` : html`<a
|
|
541
|
+
href="https://xyt.xcc.cn/getpcInfo?sn=1734139875478667264&language=CN&certType=8&url=*.efootprint.net"
|
|
542
|
+
style="position: relative;display: inline-block;height: 38px;"
|
|
543
|
+
target="_blank">
|
|
544
|
+
<div style="width:100%;height:100%;position: absolute;top: 0;left: 0;"></div>
|
|
545
|
+
<embed height="38" pluginspage="//www.adobe.com/svg/viewer/install/"
|
|
546
|
+
src="https://program.xinchacha.com/web/1734139875478667264=*.efootprint.net.svg"
|
|
547
|
+
type="image/svg+xml" width="103"/>
|
|
548
|
+
</a>`)
|
|
549
|
+
: this.hostName.includes('webcarbon.net')
|
|
550
|
+
? (this.lang === 'en_US' ? html`<a
|
|
551
|
+
href="https://xyt.xcc.cn/getpcInfo?sn=1734139921221746688&language=EN&certType=8&url=*.webcarbon.net"
|
|
552
|
+
target="_blank"
|
|
553
|
+
style="position: relative;display: inline-block;height: 38px;">
|
|
554
|
+
<div style="width:100%;height:100%;position: absolute;top: 0;left: 0;"></div>
|
|
555
|
+
<embed src="https://program.xinchacha.com/web/1734139921221746688=*.webcarbon.neten.svg"
|
|
556
|
+
width="103" height="38" type="image/svg+xml"
|
|
557
|
+
pluginspage="//www.adobe.com/svg/viewer/install/"/>
|
|
558
|
+
</a>` : html`<a
|
|
559
|
+
href="https://xyt.xcc.cn/getpcInfo?sn=1734139921221746688&language=CN&certType=8&url=*.webcarbon.net"
|
|
560
|
+
target="_blank"
|
|
561
|
+
style="position: relative;display: inline-block;height: 38px;">
|
|
562
|
+
<div style="width:100%;height:100%;position: absolute;top: 0;left: 0;"></div>
|
|
563
|
+
<embed src="https://program.xinchacha.com/web/1734139921221746688=*.webcarbon.net.svg"
|
|
564
|
+
width="103" height="38" type="image/svg+xml"
|
|
565
|
+
pluginspage="//www.adobe.com/svg/viewer/install/"/>
|
|
566
|
+
</a>`)
|
|
567
|
+
: this.hostName.includes('webgpm.net')
|
|
568
|
+
? (this.lang === 'en_US' ? html`<a
|
|
569
|
+
href="https://xyt.xcc.cn/getpcInfo?sn=1734139778921594880&language=EN&certType=8&url=*.webgpm.net"
|
|
570
|
+
target="_blank"
|
|
571
|
+
style="position: relative;display: inline-block;height: 38px;">
|
|
572
|
+
<div style="width:100%;height:100%;position: absolute;top: 0;left: 0;"></div>
|
|
573
|
+
<embed src="https://program.xinchacha.com/web/1734139778921594880=*.webgpm.neten.svg"
|
|
574
|
+
width="103" height="38" type="image/svg+xml"
|
|
575
|
+
pluginspage="//www.adobe.com/svg/viewer/install/"/>
|
|
576
|
+
</a>` : html`<a
|
|
577
|
+
href="https://xyt.xcc.cn/getpcInfo?sn=1734139778921594880&language=CN&certType=8&url=*.webgpm.net"
|
|
578
|
+
target="_blank"
|
|
579
|
+
style="position: relative;display: inline-block;height: 38px;">
|
|
580
|
+
<div style="width:100%;height:100%;position: absolute;top: 0;left: 0;"></div>
|
|
581
|
+
<embed src="https://program.xinchacha.com/web/1734139778921594880=*.webgpm.net.svg"
|
|
582
|
+
width="103" height="38" type="image/svg+xml"
|
|
583
|
+
pluginspage="//www.adobe.com/svg/viewer/install/"/>
|
|
584
|
+
</a>`)
|
|
585
|
+
: (this.lang === 'en_US' ? html`<a
|
|
586
|
+
href="https://xyt.xcc.cn/getpcInfo?sn=1734139832650629120&language=EN&certType=8&url=*.weblca.net"
|
|
587
|
+
target="_blank"
|
|
588
|
+
style="position: relative;display: inline-block;height: 38px;">
|
|
589
|
+
<div style="width:100%;height:100%;position: absolute;top: 0;left: 0;"></div>
|
|
590
|
+
<embed src="https://program.xinchacha.com/web/1734139832650629120=*.weblca.neten.svg"
|
|
591
|
+
width="103" height="38" type="image/svg+xml"
|
|
592
|
+
pluginspage="//www.adobe.com/svg/viewer/install/"/>
|
|
593
|
+
</a>` : html`<a
|
|
594
|
+
href="https://xyt.xcc.cn/getpcInfo?sn=1734139832650629120&language=CN&certType=8&url=*.weblca.net"
|
|
595
|
+
target="_blank"
|
|
596
|
+
style="position: relative;display: inline-block;height: 38px;">
|
|
597
|
+
<div style="width:100%;height:100%;position: absolute;top: 0;left: 0;"></div>
|
|
598
|
+
<embed src="https://program.xinchacha.com/web/1734139832650629120=*.weblca.net.svg"
|
|
599
|
+
width="103" height="38" type="image/svg+xml"
|
|
600
|
+
pluginspage="//www.adobe.com/svg/viewer/install/"/>
|
|
601
|
+
</a>`)
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
</span>
|
|
606
|
+
|
|
386
607
|
</div>
|
|
387
|
-
</div
|
|
388
|
-
</div>
|
|
389
|
-
<div class="footer-min-ent">
|
|
390
|
-
<span>
|
|
391
|
-
© ${this.i18n['WebLCA开放平台']} | ${this.i18n['蜀ICP备08100730号-1']} | ${this.i18n['技术支持:亿科环境']}
|
|
392
|
-
</span>
|
|
393
|
-
</div>
|
|
394
|
-
</div>`}`;
|
|
608
|
+
</div>`}`;
|
|
395
609
|
}
|
|
396
610
|
}
|
|
397
611
|
|