1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
|
<!DOCTYPE html><html xmlns="http://java.sun.com/jsf/html"><head>
<title>万方数据知识服务平台</title>
<meta name="viewport" content="width=1310" />
<meta http-equiv="keywords" name="keywords" content="万方数据、论文、文献、期刊论文、学位论文、学术会议、中外标准、法律法规、科技成果、中外专利、外文文献" />
<meta name="description" content="万方数据知识服务平台-中外学术论文、中外标准、中外专利、科技成果、政策法规等科技文献的在线服务平台。" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="baidu-site-verification" content="fNgFSqsWet" />
<script src="https://hm.baidu.com/hm.js?838fbc4154ad87515435bf1e10023fab"></script><script type="text/javascript" async="" src="//w.wanfangdata.com.cn/log.js"></script><script type="text/javascript" src="https://cdn.wanfangdata.com.cn/js/min/jquery-1.9.1.min.js"></script>
<link rel="shortcut icon" href="https://cdn.wanfangdata.com.cn/page/images/favicon.ico" />
<link href="https://cdn.wanfangdata.com.cn/page/css/min/public.css?version=1.2022.37-20220425142155" rel="stylesheet" type="text/css" />
<link href="https://cdn.wanfangdata.com.cn/page/css/min/headerCom.css?version=1.2022.37-20220425142155" rel="stylesheet" type="text/css" />
<script src="https://com.wf.pub/thin.js"></script><link rel="stylesheet" href="https://com.wf.pub/dialog/dialog.css" /><script src="https://com.wf.pub/dialog/dialog.js"></script><link rel="stylesheet" href="https://cdn.login.wanfangdata.com.cn/Content/js/lib/skin/layer.css" id="layui_layer_skinlayercss" style="" /><link rel="stylesheet" href="https://com.wf.pub/swiper/swiper-bundle.min.css" /><script src="https://com.wf.pub/swiper/swiper-bundle.min.js"></script><script src="https://com.wf.pub/qrcode/jquery.qrcode.min.js"></script></head>
<body>
<!-- IE10 以下提示条 -->
<div id="ie-tip-wrapper" style="display: none;">
<div style="font-size: 14px; color: #333; background: #f9f3cf;height: 30px;line-height: 30px;border: 1px solid #f7eaac;text-align: center;">
<span>
检测到您的浏览器版本过低,可能导致检索或导出功能无法正常使用,建议升级您的浏览器,或使用推荐浏览器
<a style="color: #2d8cf0" href="https://www.google.cn/intl/zh-CN/chrome/" target="_blank" rel="noopener noreferrer">
Google Chrome
</a>
、
<a style="color: #2d8cf0" href="https://www.microsoft.com/zh-cn/edge" target="_blank" rel="noopener noreferrer">
Microsoft Edge
</a>
、
<a style="color: #2d8cf0" href="https://www.firefox.com.cn/" target="_blank" rel="noopener noreferrer">
Firefox
</a>
。
</span>
<span id="ie-tip-bar-close" style="display: inline-block;cursor: pointer; color: #8e6529;background-color: #f7eaac;font-size: 10px; height: 15px;width: 15px;line-height: 15px;border-radius: 10px;margin-left: 15px;" onclick="javascript:var b = document.getElementById('ie-tip-wrapper');b.innerHTML = '';b.style = 'display:none';">
X
</span>
</div>
<script>
function testIE(edition) {
function lowerIE(edition) {
var reg = /MSIE\s+(\d+)/;
var exec = reg.exec(navigator.userAgent);
return exec && exec[1] === String(edition);
}
function IE11() {
var reg = /rv:(\d+)/;
var exec = reg.exec(navigator.userAgent);
return exec && exec[1] === '11';
}
if (edition <= 10) {
return lowerIE(edition);
} else if (edition === 11) {
return IE11();
}
}
if (testIE(10) || testIE(9) || testIE(8) || testIE(7)) {
var el = document.getElementById('ie-tip-wrapper');
el.style.display = 'block';
}
</script>
</div>
<!--公共头部-->
<div class="top me-top">
<div class="container me-container">
<!--
logo
-->
<style>
.anxs-top-88qwe-logo_sns{padding: 9px 0;float: left;height:84px;box-sizing: border-box;}.anxs-top-88qwe-logo_sns a{color: #333;cursor: pointer;text-decoration: none}.anxs-top-88qwe-logo_sns .anxs-top-88qwe-imgwrapper{margin-right:25px;display: block;float: left;}.anxs-top-index_sns{float: left;line-height: 60px;}.anxs-top-88qwe-logo_sns .nav_color_index{font-size: 16px;vertical-align: middle; margin: 0 10px;}.anxs-top-88qwe-logo_sns .nav_color_index:hover{color: #6BA439;}
.anxs-sns-guide-icon{display: inline-block;display:none;font-weight: 100;padding:0 4px;background: #ff6c00;height: 14px;line-height: 13px;position: relative;top: -13px;left: -5px;text-align: center;color: #fff;font-size: 12px;border-radius: 7px;}
.anxs-top-sns-guide-icon{display: inline-block;display:none;font-weight: 100;text-indent:0;padding:0 4px;background: #ff6c00;height: 14px;line-height: 13px;position: relative;text-align: center;color: #fff;font-size: 12px;border-radius: 7px;}
.nav_sns_hint,.nav_sns_authority {
display:none;
min-width: 105px;
height: 155px;
background: #fff;
border: 1px solid #f5f5f5;
box-shadow: 0 1px 5px 3px #e6e6e6;
z-index: 5;
position: absolute;
left: -27px;
top:57px;
}
.nav_sns_hint a{display: block;
line-height: 30px;
z-index: 1;
font-size: 12px;
font-weight: 700;
color:#555;
text-indent:9px}
.nav_sns_hint a:hover{
background:#f1f1f1;
}
.anxs-sns-nav-list-filter{
width: 100%;
height: 20px;
position: absolute;
top: -20px;
right: 0;
z-index: 1;
}
.anxs-sns-icon{
display: block;
width: 9px;
height: 7px;
background:url(https://login.wanfangdata.com.cn/Content/src/img/anxs-tri.png) no-repeat;
position: relative;
top: 12px;
left: 50%;
margin-left: -5px
}
.nav_color_sns_box{
display: inline-block;
position: relative;
}
.nav_color_sns_box:hover .nav_sns_hint{
display:block;
}
</style>
<div class="anxs-top-88qwe-logo_sns">
<a href="https://www.wanfangdata.com.cn/index.html?index=true" class="anxs-top-88qwe-imgwrapper">
<img src="https://cdn.login.wanfangdata.com.cn/Content/src/img/anxs-logo_sns.png" />
</a>
<div class="anxs-top-index_sns">
<div class="nav_color_sns_box">
<a href="https://www.wanfangdata.com.cn/sns" class="nav_color_index nav_color_sns">
社区
<span class="anxs-sns-guide-icon hint-count"></span>
</a>
<div class="nav_sns_authority">
<div class="anxs-sns-nav-list-filter">
<i class="anxs-sns-icon"></i>
</div>
<a href="https://www.wanfangdata.com.cn/sns/#message/at">@我的 <span class="anxs-top-sns-guide-icon my-hint-count"></span></a>
<a href="https://www.wanfangdata.com.cn/sns/#comments/at">@我的评论 <span class="anxs-top-sns-guide-icon my-comment-hint-count"></span></a>
<a href="https://www.wanfangdata.com.cn/sns/#comments/received">收到的评论 <span class="anxs-top-sns-guide-icon received-comment-hint-count"></span></a>
<a href="https://www.wanfangdata.com.cn/sns/#praise/receive">收到的赞 <span class="anxs-top-sns-guide-icon received-praise-hint-count"></span></a>
<a href="https://www.wanfangdata.com.cn/sns/#chat/all">私信 <span class="anxs-top-sns-guide-icon chat-hint-count"></span></a>
</div>
</div>
<link rel="stylesheet" href="https://com.wf.pub/wf.css" />
<link rel="stylesheet" href="https://apps.wanfangdata.com.cn/css/appmenu.css" />
<script src="https://com.wf.pub/jsbuilder/wf.js"></script>
<script src="https://apps.wanfangdata.com.cn/jsbuilder/wfpub.js"></script>
<a href="javascript:;" class="nav_color_index" id="wfpub_app">应用</a>
</div>
</div>
<script type="text/javascript">
$(function () {
function anxsGetCookie(name){
var arr,reg=new RegExp("(^| )"+name+"=([^;]*)(;|$)");
if(arr=document.cookie.match(reg))
return unescape(arr[2]);
else
return null;
}
function anxsSetCookie(name,value){
document.cookie = name + "="+ escape (value) + ";path=/;domain=wanfangdata.com.cn";
}
//社区消息提示
function anxsGuide(){
var backurl = anxsGetCookie("sync_login_wfpub_token");
var generalUserId = $(".anxs-8qwe-back").attr("data-useid");
var perioUserId = $(".anxs-8qwe-list-jg .anxs-8qwe-nav-list-main-back").attr("data-useid");
if(backurl && generalUserId ){
if(perioUserId){
return;
}else{
$(".nav_sns_authority").addClass("nav_sns_hint");
}
}else{
return;
}
var headers = {}
headers['X-Ca-AppKey'] = wf.appFalg()
wf.http.post( {
url: wf.apiServer() + '/sns/notify_count',
data: {},
headers:headers,
},
function (data) {
var totalCount = data.totalCount>99?'99+':data.totalCount;
var chatUnreadCount = data.chatUnreadCount>99?'99+':data.chatUnreadCount;
var commentReceivedCount = data.commentReceivedCount>99?'99+':data.commentReceivedCount;
var commentUnreadCount = data.commentUnreadCount>99?'99+':data.commentUnreadCount;
var messagePraisedCount= data.messagePraisedCount>99?'99+':data.messagePraisedCount;
var messageUnreadCount = data.messageUnreadCount>99?'99+':data.messageUnreadCount;
if(data.totalCount=0||data.err_message){
$(".anxs-sns-guide-icon").hide();
$(".anxs-top-sns-guide-icon").hide();
return;
}
totalCount>0? $(".hint-count").css('display','inline-block').text(totalCount):$(".hint-count").hide()
messageUnreadCount>0? $(".my-hint-count").css('display','inline-block').text(messageUnreadCount):$(".my-hint-count").hide()
commentUnreadCount>0? $(".my-comment-hint-count").css('display','inline-block').text(commentUnreadCount):$(".my-comment-hint-count").hide()
commentReceivedCount>0? $(".received-comment-hint-count").css('display','inline-block').text(commentReceivedCount):$(".received-comment-hint-count").hide()
messagePraisedCount>0? $(".received-praise-hint-count").css('display','inline-block').text(messagePraisedCount):$(".received-praise-hint-count").hide()
chatUnreadCount>0? $(".chat-hint-count").css('display','inline-block').text(chatUnreadCount):$(".chat-hint-count").hide()
})
}
setTimeout(function () {
anxsGuide();
}, 1000)
setInterval(function () {
anxsGuide();
}, 60000 )
$('.nav_sns_authority a').click(function(){
setTimeout(function () {
anxsGuide();
}, 1000)
})
//查看当前url地址
var backurl = anxsGetCookie("firstvisit_backurl");
if(backurl == "" || backurl == null || backurl == undefined){
//首次进入记录访问url地址写入cookie
backurl = "http://" + window.location.hostname;
if(backurl.indexOf("www.") > -1 ||
backurl.indexOf("g.") > -1){
anxsSetCookie("firstvisit_backurl",backurl);
}
}
//获取当前的domain
var currentDomain = "http://" + window.location.hostname;
if(currentDomain.indexOf("www.wanfangdata.com.cn") > -1
|| currentDomain.indexOf("g.wanfangdata.com.cn") > -1){
if(backurl != currentDomain){
anxsSetCookie("firstvisit_backurl",currentDomain);
backurl = currentDomain;
}
}
});
</script>
<script>
var domainConf = {
search : "https://www.wanfangdata.com.cn/",
login : "https://my.wanfangdata.com.cn/auth/",
tran : "https://my.wanfangdata.com.cn/user/",
user : "https://my.wanfangdata.com.cn/user/",
common : "https://common.wanfangdata.com.cn/",
loginbyurl : "https://login.wanfangdata.com.cn/",
Istic : "https://istic.wanfangdata.com.cn/",
f : "https://oss.wanfangdata.com.cn/",
csite : "https://c.wanfangdata.com.cn/",
D : "https://d.wanfangdata.com.cn/",
S: "https://s.wanfangdata.com.cn/",
ossbranch : "https://oss.wanfangdata.com.cn/branch/",
miner: "https://miner.wanfangdata.com.cn/",
nstl : "https://nstl.wanfangdata.com.cn/",
sns : "https://www.wanfangdata.com.cn/sns",
msgUrl: "http://www.wanfangdata.com.cn/sns/third-web/per/",
publishfulltext: "https://prepub.wanfangdata.com.cn/",
social: "https://social.wanfangdata.com.cn/",
fz : "https://fz.wanfangdata.com.cn/",
trend : "https://trend.wanfangdata.com.cn/",
expert : "https://institution.wanfangdata.com.cn/",
CookieName : "CASTGC",
CookieDomain : "wanfangdata.com.cn",
CookieTimeout : "7200",
video : "https://video.wanfangdata.com.cn/",
resultanalysis : "https://analysis.wanfangdata.com.cn/resultanalysis/",
trends : "https://trends.wanfangdata.com.cn/"
};
</script>
<!-- Matomo -->
<script type="text/javascript">
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(["setCookieDomain", "*.wanfangdata.com.cn"]);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//w.wanfangdata.com.cn/";
_paq.push(['setTrackerUrl', u+'log']);
_paq.push(['setSiteId', '30002']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.src=u+'log.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--
状态栏
-->
<script type="text/javascript" src="https://cdn.login.wanfangdata.com.cn/Content/js/lib/layer-2.4.js"></script>
<style>
.clear{zoom:1}.clear:after{content:"";display:block;clear:both;visibility:hidden;height:0}.anxs-8qwe-top-rt{float:right;padding-top:35px;font-family:'Microsoft YaHei'}.anxs-8qwe-top-rt .anxs-8qwe-list{float:left;border-left:1px solid #d4d9dc;color:#555;font-size:16px;font-family:'Microsoft YaHei'}.anxs-8qwe-reading{position:relative}.anxs-8qwe-readingDay{width:74px;height:20px;position:absolute;left:32px;top:-22px;display:none}.anxs-8qwe-top-rt .anxs-8qwe-list_bind{padding-right:20px;border-left:none;border-right:1px solid #d4d9dc;cursor:pointer;position:relative;z-index:999999;display:none;}.anxs-8qwe-list_bind .anxs-8qwe-list_bind-wx{position:absolute;top:36px;right:0px;width:320px;background-color:#fff;text-align:center;box-shadow:0 0 10px #888;border:1px solid #cccccc\9;cursor:default;display:none;}.anxs-8qwe-list_bind .anxs-8qwe-list_bind-wx span:first-child{position:absolute;top:-20px;right:-2px;display:inline-block;width:110px;height:36px;}.anxs-8qwe-list_bind .anxs-8qwe-list_bind-wx span:first-child i{display:inline-block;position:absolute;top:12px;left:54px;width:11px;height:8px;background:url(https://cdn.login.wanfangdata.com.cn/Content/src/img/anxs-tri.png) no-repeat;}.anxs-8qwe-list_bind .anxs-8qwe-list_bind-wx .anxs-8qwe-list_bind-img{padding-top:30px;width:120px;height:120px;}.anxs-8qwe-list_bind-wx .anxs-8qwe-bind-layer{display:inline-block;position:absolute;top:30px;left:100px;width:120px;height:120px;background:rgba(0,0,0,0.6)!important;background:#000;filter:Alpha(opacity=60);display:none;}.anxs-8qwe-list_bind-wx .anxs-8qwe-bind-layer span{display:block;text-align:center;color:#ffffff;font-size:12px;line-height:28px;}.anxs-8qwe-list_bind .anxs-8qwe-list_bind-wx .anxs-8qwe-bind-title{display:inline-block;padding:16px;font-size:12px;line-height:22px;text-align:left;}.anxs-8qwe-list_bind-wx .anxs-8qwe-bind-title i{color:#f00;font-style:normal;display:none;}.anxs-8qwe-list_bind-wx .anxs-8qwe-bind-title em{font-style:normal;color:#417dc9;text-decoration:underline;cursor:pointer;}.anxs-8qwe-top-rt .anxs-no-line{border:0}.anxs-8qwe-top-rt .anxs-8qwe-list-login .anxs-8qwe-login-gr,.anxs-8qwe-top-rt .anxs-8qwe-list-login .anxs-8qwe-login-jg{display:none}.anxs-8qwe-top-rt .anxs-8qwe-list>a{color:#555;padding:0 10px;text-decoration:none;cursor:pointer;}.anxs-8qwe-top-rt .anxs-8qwe-list.anxs-8qwe-nav:hover{color:#555}.anxs-8qwe-top-rt .anxs-8qwe-list .anxs-8qwe-login{color:#ff6c00}.anxs-8qwe-top-rt a:hover{text-decoration:none; color: #6BA439;}.anxs-8qwe-top-rt .anxs-8qwe-nav{position:relative;display:inline-block;cursor:pointer;padding-left:0px}.anxs-8qwe-top-rt .anxs-8qwe-list .anxs-8qwe-nav-list{display:none;width:348px;cursor:default;position:absolute;top:33px;left:-325px;z-index:1;padding:16px 25px 12px;background:#fff;border:1px solid #f5f5f5;box-shadow:0 1px 12px 3px #e6e6e6}.anxs-8qwe-top-rt .anxs-8qwe-list .anxs-8qwe-nav-list .anxs-8qwe-nav-list-filter{width:100%;height:20px;position:absolute;top:-20px;right:0;z-index:1}.anxs-8qwe-top-rt .anxs-8qwe-list .anxs-8qwe-nav-list .anxs-8qwe-nav-list-filter .anxs-8qwe-icon{display:block;width:9px;height:7px;background:url(https://cdn.login.wanfangdata.com.cn/Content/src/img/anxs-tri.png) no-repeat;position:relative;top:12px;left:50%;margin-left:-5px}.anxs-8qwe-top-rt .anxs-8qwe-list .anxs-8qwe-nav-list dl{float:left;color:#555;font-size:12px;font-family:'Microsoft YaHei'}.anxs-8qwe-top-rt .anxs-8qwe-list .anxs-8qwe-nav-list dl dt{font-weight:700;margin-bottom:5px}.anxs-8qwe-top-rt .anxs-8qwe-list .anxs-8qwe-nav-list dl dd{float:left;width:90px;line-height:26px;text-align:left;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.anxs-8qwe-top-rt .anxs-8qwe-list .anxs-8qwe-nav-list dl dd a{text-decoration:none;color:#555;}.anxs-8qwe-top-rt .anxs-8qwe-list .anxs-8qwe-nav-list dl dd a:hover{color:#ff6c00;text-decoration:none;}.anxs-8qwe-top-rt .anxs-8qwe-list .anxs-8qwe-nav-list .anxs-8qwe-list-resource{width:180px}.anxs-8qwe-top-rt .anxs-8qwe-list .anxs-8qwe-nav-list .anxs-8qwe-list-service{width:100px}.anxs-8qwe-top-rt .anxs-8qwe-list .anxs-8qwe-nav-list .anxs-8qwe-list-view{width:68px}.anxs-8qwe-top-rt .anxs-8qwe-list .anxs-8qwe-nav-list .anxs-8qwe-list-view dd{width:74px}.anxs-8qwe-top-rt .anxs-8qwe-nav:hover .anxs-8qwe-nav-list{display:block}.anxs-8qwe-top-rt .anxs-8qwe-list-jg{display:none;padding-right:20px;}.anxs-8qwe-top-rt .anxs-8qwe-list-jg .anxs-8qwe-jgName b{display:inline-block;font-weight:500;max-width:120px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:bottom;}.anxs-8qwe-top-rt .anxs-icon-jg{display:inline-block;width:6px;height:4px;background:url(https://cdn.login.wanfangdata.com.cn/Content/src/img/anxs-jg.png) no-repeat;margin-left:10px;position:relative;top:-3px;}.anxs-8qwe-top-rt .anxs-8qwe-list-jg .anxs-8qwe-list-jg-box{display:none;width:158px;left:50%;padding:10px 20px;margin-left:-94px}.anxs-8qwe-top-rt .anxs-8qwe-list-jg .anxs-8qwe-list-jg-box .anxs-8qwe-nav-list-filter{width:100%;text-align:center}.anxs-8qwe-top-rt .anxs-8qwe-list-jg .anxs-8qwe-list-jg-box .anxs-8qwe-nav-list-filter .anxs-8qwe-icon{left:50%;}.anxs-8qwe-top-rt .anxs-8qwe-list-jg .anxs-8qwe-list-jg-box .anxs-8qwe-nav-list-main h5{margin:0;margin-bottom:8px;}.anxs-8qwe-top-rt .anxs-8qwe-list-jg .anxs-8qwe-list-jg-box .anxs-8qwe-nav-list-main h5 .anxs-8qwe-nav-list-main-name{color:#333;font-weight:700;display:inline-block;max-width:116px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}.anxs-8qwe-top-rt .anxs-8qwe-list-jg .anxs-8qwe-list-jg-box .anxs-8qwe-nav-list-main h5 .anxs-8qwe-nav-list-main-back{float:right;color:#666;font-size:12px;cursor:pointer;}.anxs-8qwe-top-rt .anxs-8qwe-list-jg .anxs-8qwe-list-jg-box .anxs-8qwe-nav-list-main p{margin:0;}.anxs-8qwe-top-rt .anxs-8qwe-list-jg .anxs-8qwe-list-jg-box .anxs-8qwe-nav-list-main p .anxs-8qwe-login-jg{font-size:12px;color:#333;font-weight:700;}.anxs-8qwe-top-rt .anxs-8qwe-list-common-box{padding-right:20px;display:none;}.anxs-8qwe-top-rt .anxs-8qwe-list-common-box .anxs-8qwe-nav-list{width:108px;left:50%;margin-left:-54px;padding:0;}.anxs-8qwe-top-rt .anxs-8qwe-list-common-box .anxs-8qwe-nav-list .anxs-8qwe-nav-list-main h5{line-height:30px;margin:0;}.anxs-8qwe-top-rt .anxs-8qwe-list-common-box .anxs-8qwe-nav-list .anxs-8qwe-nav-list-main h5:hover{background:#f1f1f1}.anxs-8qwe-top-rt .anxs-8qwe-list-common-box .anxs-8qwe-nav-list .anxs-8qwe-nav-list-main h5 a{color:#555;display:inline-block;width:100%;text-indent:20px;text-decoration:none;cursor:pointer;}.anxs-8qwe-top-rt .anxs-8qwe-list-gr .anxs-8qwe-grName{display:inline-block;max-width:94px;margin-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:0;}.anxs-8qwe-top-rt .anxs-8qwe-list-gr .anxs-8qwe-certification-no{display:inline-block;width:18px;height:18px;background:url(https://cdn.login.wanfangdata.com.cn/Content/src/img/anxs-certification-no.png) no-repeat;position:absolute;right:21px;top:0;}.anxs-8qwe-top-rt .anxs-8qwe-list-gr .anxs-8qwe-certification{background:url(https://cdn.login.wanfangdata.com.cn/Content/src/img/anxs-certification.png) no-repeat}.anxs-8qwe-top-rt .anxs-8qwe-list-gr .anxs-icon-jg{margin-left:0;top:8px;position:absolute;right:12px;}.anxs-8qwe-top-rt .anxs-8qwe-list-gr .anxs-8qwe-list-gr-box .anxs-8qwe-nav-list-filter{width:100%;right:0;}.anxs-8qwe-top-rt .anxs-8qwe-list-gr .anxs-8qwe-list-gr-box .anxs-8qwe-nav-list-main h5{line-height:30px;}.anxs-8qwe-top-rt .anxs-8qwe-list-gr .anxs-8qwe-no-certification-wrapper{padding:0;}.anxs-8qwe-top-rt .anxs-8qwe-list-message .anxs-8qwe-jgName a{color:#555;text-decoration:none;}.anxs-8qwe-top-rt .anxs-8qwe-list-message .anxs-8qwe-num{background:#ff6c00;color:#fff;text-align:center;display:inline-block;line-height:8px;max-width:28px;border-radius:7px;font-size:12px;padding:3px 2px 4px;position:absolute;margin-top:8px;right:6px;font-weight:500;display:none;}.anxs-8qwe-top-rt .anxs-8qwe-list-message .anxs-8qwe-num-all{position:static;padding:0 4px;}.anxs-8qwe-top-rt .anxs-8qwe-list-message .anxs-8qwe-nav-list .anxs-8qwe-nav-list-main h5 a{text-indent:27px;}.anxs-8qwe-top-rt .anxs-8qwe-list-message .anxs-icon-jg{margin-left:0;}
.anxs-8qwe-top-rt .new-semester-message-2018 { position:absolute;display:none; top: 15px; right: 110px;width: 96px; height: 18px;background:url(https://cdn.login.wanfangdata.com.cn/Content/src/img/new-semester-2018.png) no-repeat;} .anxs-8qwe-top-rt .anxs-8qwe-reading{border-left:0px} .anxs-8qwe-top-rt .anxs-8qwe-nav-main .nav_color{color: #ff6c00;padding:0 4px;}.anxs-8qwe-nav-main a{color: #ff6c00}.anxs-8qwe-top-rt .anxs-8qwe-list_bind{border-right:0px}.anxs-8qwe-top-rt .anxs-8qwe-list{border-left:0px}.anxs-8qwe-top-rt .anxs-8qwe-nav-main{border-left: 1px solid #d4d9dc}.anxs-8qwe-top-rt .anxs-8qwe-list.anxs-8qwe-nav-main:hover { color: #f60;}.anxs-8qwe-top-rt .anxs-8qwe-return_old{display: inline-block;cursor: pointer; padding-left: 8px;}.anxs-8qwe-top-rt .anxs-8qwe-return_old a{color: #333;font-size: 14px;}
.header-i18n {
display: inline-block;
padding-left: 32px;
font-size: 16px;
color: #999;
cursor: pointer;
font-family: 'Microsoft YaHei';
position: relative;
}
.header-i18n span:hover {
color: #6BA439;
}
.header-i18n::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 1px;
height: 24px;
background: #ddd;
}
.header-i18n span {
margin-right: 20px;
}
.header-i18n .header-english {
color: #999;
}
.header-i18n .header-english:hover {
color: #6BA439;
}
</style>
<div class="anxs-8qwe-top-rt">
<a class="new-semester-message-2018" href="https://my.wanfangdata.com.cn/user/personal/index" target="_blank"></a>
<div class="anxs-8qwe-list_bind anxs-8qwe-list" style="display: none;">绑定机构
<div class="anxs-8qwe-list_bind-wx" style="display: none">
<span><i></i></span>
<img src="https://cdn.login.wanfangdata.com.cn/Content/src/img/anxs-loding-wx.gif" class="anxs-8qwe-list_bind-img" />
<div class="anxs-8qwe-bind-layer" style="display: none;">
<img src="https://cdn.login.wanfangdata.com.cn/Content/images/bind_right_icon.png" style="width:18px;height: 15px;margin-top:14px" />
<span>扫描成功</span>
<span>请在APP上操作</span>
</div>
<span></span>
<span class="anxs-8qwe-bind-title">
打开万方数据APP,点击右上角"扫一扫",扫描二维码即可将您登录的个人账号与机构账号绑定,绑定后您可在APP上享有机构权限,如需更换机构账号,可到个人中心解绑。
</span>
</div>
</div>
<div class="anxs-8qwe-list anxs-8qwe-nav anxs-8qwe-list-jg anxs-no-line" style="display: block;">
<span class="anxs-8qwe-jgName"><b>中国科学院信息工程研究所</b></span><i class="anxs-icon-jg"></i>
<div class="anxs-8qwe-nav-list anxs-8qwe-list-jg-box">
<div class="anxs-8qwe-nav-list-filter">
<i class="anxs-8qwe-icon"></i>
</div>
<div class="anxs-8qwe-nav-list-main"><h5><a href="https://www.wanfangdata.com.cn/institution/showAuth.do" target="_blank" class="anxs-8qwe-nav-list-main-name">g_zkyxxgc</a></h5>
<p><a class="anxs-8qwe-login anxs-8qwe-login-jg" style="display: inline;">登录机构账号</a></p>
</div>
</div>
</div>
<div class="anxs-8qwe-list anxs-8qwe-list-login">
<a class="anxs-8qwe-login-all" style="margin-right: 20px; display: none;">登录 / 注册</a>
<a class="anxs-8qwe-login-gr" style="margin-right: 20px; display: inline;">登录 / 注册</a>
<a class="anxs-8qwe-login-jg" style="margin-right: 20px; display: none;">机构登录</a>
</div>
<div class="anxs-8qwe-list anxs-8qwe-nav anxs-8qwe-list-common-box anxs-8qwe-list-gr" style="margin-right: 14px">
<a href="https://my.wanfangdata.com.cn/user/index" target="_blank" class="anxs-8qwe-person-center anxs-8qwe-grName"></a>
<a href="https://my.wanfangdata.com.cn/auth/user/authenticationintro.do" target="_blank" class="anxs-8qwe-no-certification-wrapper"><i class="anxs-8qwe-certification-no"></i></a>
<i class="anxs-icon-jg"></i>
<div class="anxs-8qwe-nav-list anxs-8qwe-list-gr-box">
<div class="anxs-8qwe-nav-list-filter">
<i class="anxs-8qwe-icon"></i>
</div>
<div class="anxs-8qwe-nav-list-main">
<h5><a class="anxs-8qwe-person-center" target="_blank" href="https://my.wanfangdata.com.cn/user/index">个人中心</a></h5>
<h5><a class="anxs-8qwe-social-my" target="_blank" href="https://www.wanfangdata.com.cn/sns">我的学术圈</a></h5>
<h5><a target="_blank" href="https://work.wanfangdata.com.cn/">我的书案</a></h5>
<h5><a data-useid="" class="anxs-8qwe-nav-list-main-back anxs-8qwe-back">退出</a></h5>
</div>
</div>
</div>
<div class="header-i18n">
<span onclick="zh_tran('s')" class="header-simplified" id="zh_click_s">简</span>
<span onclick="zh_tran('t')" class="header-traditional" id="zh_click_t">繁</span>
</div>
</div>
<iframe id="anxs-8qwe-login" style="margin-left:-10px;margin-top:-100px;display:none" src="" height="750px;" width="710px;" scrolling="no" frameborder="0" class="layui-layer-wrap">
</iframe>
<script>
document.domain="wanfangdata.com.cn";
var refer = document.referrer;
if(refer!=null && (refer.indexOf("http://tongji.baidu.com/")!=-1 || refer.indexOf("https://tongji.baidu.com/")!=-1|| refer.indexOf("https://wf.pub/")!=-1|| refer.indexOf("https://app.wanfangdata.com.cn/")!=-1)){
}else{
try{
if (window != parent && parent.location.hostname!="wf.pub") {
top.location.href = location.href;
}
}catch(e){}
}
$(function(){
var getProp = (function () {
var me = $('#anxs-8qwe-login');
var loginParent = $('.anxs-8qwe-list-login');
var allLogin = loginParent.find('.anxs-8qwe-login-all'); //默认登陆按钮
var grLogin = loginParent.find('.anxs-8qwe-login-gr'); //个人登陆按钮
var grShow = $('.anxs-8qwe-list-gr');
var grName = grShow.find('.anxs-8qwe-grName'); //个人名字
var certificationImg = grShow.find('.anxs-8qwe-certification-no'); //认证图片
var jgLogin = $('.anxs-8qwe-login-jg'); //机构登陆按钮
var jgname = $('.anxs-8qwe-list-jg');
var jgMain = jgname.find('.anxs-8qwe-nav-list-main'); //机构下拉列表
var listJgName = jgname.find('.anxs-8qwe-login-jg'); //机构下拉列表中的机构登陆按钮
var registerName = $('.anxs-8qwe-register'); //注册按钮
var personBack = $('.anxs-8qwe-back'); //个人下拉列表中的退出按钮
var messageName = $('.anxs-8qwe-list-message'); //消息按钮
var messageNum = messageName.find('.anxs-8qwe-num'); //消息按钮下拉列表下的消息数
var castgc = '';
var socialBtn = $('.anxs-8qwe-social-my'); //我的学术圈按钮
var addPeople = $('.anxs-8qwe-addPeople'); //新增关注
//Binding mecFhanism variable
var bindMe = $('.anxs-8qwe-list_bind');
var bindMeWx = $('.anxs-8qwe-list_bind-wx');//扫码
var bindMeImg = $('.anxs-8qwe-list_bind-img');//图片
var bindMeTitle = bindMeWx.find('.anxs-8qwe-bind-title');//文字提示
var bindTime = '';
var flagBindShow = $('#indexScanCodeBind');
return {
//绑定机构的出现
bindMeShow:function () {
var that = this;
$.ajax({
url: 'https://login.wanfangdata.com.cn/showBindTip',
dataType: 'jsonp',
jsonp: 'callback',
cache:false,
success:function(data){
if((data == 'true') && (flagBindShow.length)) {
bindMe.show();
that.bindMechanism();
}else {
bindMe.hide();
$('.anxs-8qwe-bind-layer').hide();
}
}
});
},
//绑定机构
bindMechanism:function () {
var that = this;
bindMe.hover(function (e) {
bindMeWx.show();
that.getBindqcInfo();
that.refreshQrCode();
},function () {
bindMeWx.hide();
clearInterval(that.bindTime);
clearInterval(that.sweepCode);
});
},
//拿到二维码信息
getBindqcInfo:function () {
var that = this;
clearInterval(that.sweepCode);
$.ajax({
url:'https://login.wanfangdata.com.cn/getQRcodeMessage?time='+(+new Date()),
dataType:'jsonp',
jsonp:'callback',
success:function (data) {
if(data == 'isBind') {
window.location.reload();
}else if(data == 'error'){
window.location.reload();
}else {
var Ciphertext = data.ciphertext,
CodeId = data.codeId;
bindMeImg.attr('src','https://login.wanfangdata.com.cn/createQRCode?ciphertext='+encodeURIComponent(Ciphertext))
that.sweepCodeSuccess(CodeId);
that.refreshsweepCodeSuccess(CodeId);
}
},
error:function() {
console.log('二维码请求失败!');
}
});
},
//1秒钟自动刷新扫描状态请求
refreshsweepCodeSuccess:function (CodeId) {
var that = this;
clearInterval(that.sweepCode);
this.sweepCode = setInterval(function () {
that.sweepCodeSuccess(CodeId);
},1500)
},
//一分钟自动刷新
refreshQrCode:function () {
var that = this;
clearInterval(that.bindTime);
this.bindTime = setInterval(function () {
that.getBindqcInfo();
},60000)
},
//扫描成功
sweepCodeSuccess:function (CodeId) {
var that = this;
$.ajax({
url: 'https://login.wanfangdata.com.cn/getQRCodeStatus',
dataType:'jsonp',
jsonp:'callback',
data:{codeId:CodeId},
success:function(data){
if(data == 'scanned') {
clearInterval(that.sweepCode);
clearInterval(that.bindTime);
$('.anxs-8qwe-bind-layer').show();
}else if (data == 'available') {
$('.anxs-8qwe-bind-layer').hide();
}else{
$('.anxs-8qwe-bind-layer').hide();
}
},
error:function (err) {
console.log(err)
}
});
},
//弹出登录框
layerAlert:function(){
var winHeight = $(window).height();
if(winHeight<800){
layer.open({
offset: '40px',
type: 1, //page层 1div,2页面
area: ['50%px'],
title: '',
shade: 0.6, //遮罩透明度
moveType: 1, //拖拽风格,0是默认,1是传统拖动
shift: 1, //0-6的动画形式,-1不开启
content: $("#anxs-8qwe-login"),
success:function(layero){
$(layero).css({'position':'absolute','top':'40px','left':'50%','marginLeft':'-350px','marginBottom':'40px'});
$(window).resize(function(){
var winHeight = $(window).height();
if(winHeight <800){
$(layero).css({'position':'absolute','top':'40px','left':'50%','marginLeft':'-350px','marginBottom':'40px'});
}else{
$(layero).css({'position':'','top':'','left':'50%','marginLeft':'-350px','marginBottom':''});
}
});
},
end: function(){
}
});
}else{
layer.open({
offset:'auto',
type: 1, //page层 1div,2页面
area: ['50%px'],
scrollbar: true,
title: '',
shade: 0.6, //遮罩透明度
moveType: 1, //拖拽风格,0是默认,1是传统拖动
shift: 1, //0-6的动画形式,-1不开启
content: $("#anxs-8qwe-login"),
success:function(layero){
$(window).resize(function(){
var winHeight = $(window).height();
if(winHeight <800){
$(layero).css({'position':'absolute','top':'40px','left':'50%','marginLeft':'-350px','marginBottom':'40px'});
}else{
$(layero).css({'position':'','top':'','left':'50%','marginLeft':'-350px','marginBottom':''});
}
});
},
end: function(){
}
});
}
},
//获取url参数
getRequest: function () {
var url = location.search; //获取url中"?"符后的字串
if (!url) {
return '';
}
var theRequest = new Object();
if (url.indexOf("?") != -1) {
var str = url.substr(1);
var strs = str.split("&");
for (var i = 0; i < strs.length; i++) {
theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]);
}
}
return theRequest;
},
//获取cookie名字
getCookies: function (cookieName) {
var strCookie = document.cookie;
var arrCookie = strCookie.split("; ");
for (var i = 0; i < arrCookie.length; i++) {
var arr = arrCookie[i].split("=");
if (cookieName == arr[0]) {
return arr[1];
}
}
return "";
},
//赋值给iframe
getSrc: function (loginModel) {
this.layerAlert();
me.attr('src', '//my.wanfangdata.com.cn/auth/user/'+loginModel+'?login_mode=AJAX&service=' + encodeURIComponent(window.location.href));
},
//消息发请求
initMessage:function(){
$.ajax({
url: 'https://my.wanfangdata.com.cn/user/message/getUnreadAmountJSONP',
dataType: "jsonp",
timeout:3000,
jsonp: "callback",
success: function (data) {
if(data){
var unreadAmountNum = data.unreadAmount,
unreadSystemAmountNum = data.unreadSystemAmount,
unreadSubAmountNum = data.unreadSubAmount,
unreadFollowAmountNum = data.unreadFollowAmount;
if(unreadAmountNum > 99){
unreadAmountNum = '99+';
}
if(unreadSystemAmountNum > 99){
unreadSystemAmountNum = '99+';
messageName.find('.anxs-8qwe-nav-list-main h5 a').css('textIndent','17px');
}
if(unreadSubAmountNum > 99){
unreadSubAmountNum = '99+';
messageName.find('.anxs-8qwe-nav-list-main h5 a').css('textIndent','17px');
}
if(unreadFollowAmountNum > 99){
unreadFollowAmountNum = '99+';
messageName.find('.anxs-8qwe-nav-list-main h5 a').css('textIndent','17px');
}
if(unreadAmountNum){
messageName.find('.anxs-8qwe-num-all').show().text(unreadAmountNum);//获取未读消息总量
}else{
messageName.find('.anxs-8qwe-num-all').hide();
}
if(unreadSystemAmountNum){
messageName.find('.anxs-8qwe-system').show().text(unreadSystemAmountNum);//获取未读系统消息
}else{
messageName.find('.anxs-8qwe-system').hide();
}
if(unreadSubAmountNum){
messageName.find('.anxs-8qwe-subscription').show().text(unreadSubAmountNum);//获取未读订阅消息
}else{
messageName.find('.anxs-8qwe-subscription').hide();
}
if(unreadFollowAmountNum){
messageName.find('.anxs-8qwe-attention').show().text(unreadFollowAmountNum);//获取未读关注消息
}else{
messageName.find('.anxs-8qwe-attention').hide();
}
}
}
});
},
//获取ip的值
isIp:function(nameData){
for(var prop in nameData){
if(prop == 'OnlyIPLogin'){
return nameData[prop];
break;
}
}
return false;
},
//判断是否存在机构
isGroup:function(nameData){
for(var prop in nameData){
var propId = prop.split('.');
if(propId[0] == 'Group'){
return true;
break;
}
}
return false;
},
//判断是否是个人
isPerson:function(nameData){
for(var prop in nameData){
var propId = prop.split('.');
if(propId[0] == 'Person'){
return true;
}
}
return false;
},
//获取cookie中的值,判断是否登录
cookieAjax: function () {
var that = this;
$.ajax({
url: "https://login.wanfangdata.com.cn/getUserState",
dataType: "jsonp",
jsonp: "callback",
success: function (data) {
var dataParent = data.context;
var accountId = dataParent.accountIds;
var idLength = accountId.length;
if(!idLength){
return true;
}
var nameData = dataParent.data;
var nameArr = [];
// begin 判断是否有全局配置排序方法,如果有执行检测产品排序方法
if (window._accountOrderFun) {
//替换原有的accountId
try {
accountId = _accountOrderFun(accountId)
} catch (error) {
console.log(error)
}
}
// end
for(var i=0;i<idLength;i++){
var idArr = accountId[i].split('.');
if(idArr[0] == 'Group' || idArr[0] == 'GroupSub'){
//显示样式
allLogin.hide().parent().removeClass('anxs-no-line');
jgLogin.hide();
if(accountId.length>1){
jgname.show().addClass('anxs-no-line');
listJgName.show();
grLogin.show();
var idList = [];
var groupList=[];
for(var j=0;j<accountId.length;j++){
var idArr = accountId[j].split('.');
if(idArr[1]=='njxzxyIP'||idArr[1]=='softcentertest'){
idList.push(idArr[1]);
}
if(idArr[0] == 'Group' || idArr[0] == 'GroupSub'){
groupList.push(idArr[1])
}
};
if(idList.length===1&&groupList.length===1){
jgname.hide();
listJgName.show();
grLogin.show();
}
}else{
if(idArr[1]==='softcentertest'||idArr[1]==='njxzxyIP'){
jgname.hide();
listJgName.show();
grLogin.show();
}else{
jgname.show().addClass('anxs-no-line');
listJgName.show();
grLogin.show();
}
}
//取机构的最新值
for(var prop in nameData){
var propId = prop.split('.');
if(propId[0] == 'Group' || propId[0] == 'GroupSub'){
if(accountId[i]+'.'+propId[propId.length-1] == prop){
nameArr.push(nameData[prop]);
}
}
};
jgname.find('.anxs-8qwe-jgName b').text(nameArr[0]?nameArr[0]:nameArr[1]);
}
if(idArr[0] == 'Person'){
allLogin.hide();
var hasGroup = that.isGroup(nameData);
if(!hasGroup){
jgLogin.show();
}else{
jgLogin.hide();
}
listJgName.show();
that.backEvent(); //初始化退出
}
if(idArr[0] == 'Researcher'){
certificationImg.addClass('anxs-8qwe-certification');
certificationImg.parent().attr('href','https://my.wanfangdata.com.cn/user/personal/rights');
}
}
//给机构下拉框赋值
for(var i=idLength-1;i>=0;i--){
var idArr = accountId[i].split('.');
if(idArr[0] == 'Group' || idArr[0] == 'GroupSub'){
var groupLength = idArr[0].length+1;
if(idArr[1]==='njxzxyIP' ||idArr[1]==='softcentertest'){
jgMain.prepend('');
}else{
jgMain.prepend('<h5><a href="https://www.wanfangdata.com.cn/institution/showAuth.do" target="_blank" class="anxs-8qwe-nav-list-main-name">'+accountId[i].slice(groupLength)+'</a><span data-useId="'+accountId[i].slice(groupLength)+'" class="anxs-8qwe-nav-list-main-back">退出</span></h5>');
}
var onlyIpStr=nameData['OnlyIPLogin'];
if(typeof onlyIpStr != "undefined" && onlyIpStr != null && onlyIpStr != ""){
var onlyIpStrs = onlyIpStr.split(",");
jgMain.find('h5').each(function(index){
var nameValue = $(this).find('.anxs-8qwe-nav-list-main-name').html();
for(var i=0;i<onlyIpStrs.length;i++){
if(nameValue == onlyIpStrs[i]){
$(this).find('span').remove();
}
}
});
}
}
}
that.backEvent(); //初始化退出
var hasPerson = that.isPerson(nameData);
if(hasPerson){
that.initMessage();//初始化消息数量
}
for(var prop in nameData){
var propId = prop.split('.');
if(propId[0] == 'Person'){
grLogin.hide();
if($.trim(nameData[prop])){
grName.text(nameData[prop]);
}else{
grName.text(propId[1]);
}
personBack.attr('data-useId',propId[1]);
registerName.hide();
messageName.show();
grShow.show();
}
}
for(var prop in nameData){
var propId = prop.split('.');
if(propId[0] == 'Researcher'){
if($.trim(nameData[prop])){
grName.text(nameData[prop]);
}else{
grName.text(propId[1]);
}
}
}
},
error: function () {
console.log('fail');
}
});
},
//登录按钮
loginEvent:function(){
var that = this;
allLogin.click(function(){
that.getSrc('alllogin.do');
});
grLogin.click(function(){
that.getSrc('alllogin.do');
});
jgLogin.click(function(){
that.getSrc('jglogin.do');
});
registerName.click(function(){
var registerHref = "/auth/user/register.do";
var locaHref = window.location.pathname;
if(registerHref == locaHref) {
$(this).attr('href',window.location.href);
}else {
$(this).attr('href',"https://my.wanfangdata.com.cn/auth/user/register.do?service="+ encodeURIComponent(window.location.href));
}
});
},
//退出登录
backEvent:function(){
var that = this;
$('.anxs-8qwe-nav-list-main-back').click(function(){
var backurl = window.location.href;
backurl = encodeURIComponent(backurl).replace("&","%26");//复制原先的代码,具体为什么replace不清楚
var username = encodeURIComponent($(this).data('useid'));
castgc = that.getCookies('CASTGC');
window.location.href="https://my.wanfangdata.com.cn/auth/rest/logout.do?user_id="+username+"&service="+backurl+"&token="+castgc;
});
},
//开学季充值送检测码(2021.9.10-2021.12.31)(下一次修改删除)
newSemester:function () {
$.ajax({
url: 'https://login.wanfangdata.com.cn/getServerTime',
success:function(data){
var startDate = Date.parse("2021/09/10 00:00:00");
var endDate = Date.parse("2021/12/31 23:59:59");
if(startDate <= data && endDate > data) {
// 我的钱包-立即充值-限时充值活动-提示+主站-header-钱包右上角惠icon
$(".recharge-2021").show();
// 我的钱包 > 账户充值-请选择充值金额-提示
$(".active-hint").show();
// 我的钱包 > 账户充值-电商充值-京东右上角惠icon
// $(".active-ds-icon").show();
// 我的钱包 > 账户充值-充值限时优惠-右边感叹号icon-鼠标移入的说明
$(".recharge-active-2021").show().siblings(".fast-recharge").hide();
// 个人中心-钱包余额-充值-右上角惠icon
$(".active-icon").show();
}else{
$(".recharge-2021").remove();
$(".active-hint").remove();
$(".active-icon").remove();
// $(".active-ds-icon").remove();
}
}
});
},
//暑期畅游礼包套餐活动自动上下线;活动时间(6.21-7.5):2021-06-21 00:00:00 至 2021-07-06 00:00:00
summerPackageGoOnlineRegularly:function () {
$.ajax({
url: 'https://login.wanfangdata.com.cn/getServerTime',
success:function(data){
var startDate = Date.parse("2021/06/21 00:00");
var endDate = Date.parse("2021/07/06 00:00");
// var startDate = Date.parse("2021/06/11 14:22");
// var endDate = Date.parse("2021/06/11 14:25");
// 活动时间开始前
// 活动时间进行中
if( data >= startDate){
// 暑期畅游礼包套餐
$(".summerPackageGoOnlineRegularly-start-on").show();
// 活动时间结束后
}
if(data >endDate ){
// $(".summerPackageGoOnlineRegularly-start-on").remove();
// 畅游大礼包(原价)
$(".summerPackageGoOnlineRegularly-end-on").show();
// 原价元,现价元
$(".specia-price-comparison").remove();
// 惊喜大礼包购买入口
$(".summerPackageGoOnlineRegularly-end-remove").remove();
}
}
});
},
init: function () {
this.loginEvent();
this.cookieAjax();
this.bindMeShow();
this.newSemester();
this.summerPackageGoOnlineRegularly();
}
};
})().init();
})
</script>
</div>
</div>
<!--<script type="text/javascript" src="https://cdn.wanfangdata.com.cn/page/common/js/public_head.js?version=1.2022.37-20220425142155"></script>-->
<!--<script type="text/javascript" src="https://cdn.wanfangdata.com.cn/page/common/js/exchangeSearchTypeValue.js?version=1.2022.37-20220425142155"></script>-->
<!-- <script type="text/javascript" src="http://miner.wanfangdata.com.cn/wflog/Content/js/browers-log.js?version=1.2022.37-20220425142155"></script> -->
<script type="text/javascript" src="https://cdn.wanfangdata.com.cn/page/common/min/jquery.cookie.js"></script>
<script type="text/javascript" src="https://cdn.wanfangdata.com.cn/page/common/min/list.js"></script>
<!--<script type="text/javascript" src="https://cdn.wanfangdata.com.cn/js/headerCom.js?version=1.2022.37-20220425142155"></script>-->
<!--<script type="text/javascript" src="https://cdn.wanfangdata.com.cn/js/share.js?version=1.2022.37-20220425142155"></script>-->
<!--第三方统计分析-->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?838fbc4154ad87515435bf1e10023fab";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
var winUrl =window.location.href;
if(winUrl.indexOf("/tech/techindex.do") > -1){
$('head').append('<link rel="stylesheet" href="/page/css/ClassNav.css?version=1.2022.37-20220425142155" rel="stylesheet" type="text/css">');
}
})();
</script>
<!--<link rel="stylesheet" href="https://cdn.wanfangdata.com.cn/page/css/min/slider.css?version=1.2022.37-20220425142155">-->
<!--</style>-->
<link rel="stylesheet" href="https://cdn.wanfangdata.com.cn/page/common/js/swiper.css" />
<link href="https://cdn.wanfangdata.com.cn/page/common/css/index.min.css?version=1.2022.37-20220425142155" rel="stylesheet" type="text/css" />
<script>
window.__sogou_secure_input = {};
window.__sogou_secure_input.check = function () { };
</script>
<!--[if lt IE 8]>
<style>
.service_box .ser_up .title{
background:url(../../images/ser_upBG.png);
background-repeat-y: no-repeat;
}
.service_box .ser_up:hover .title{
background:url(../../images/ser_uphoverBG.png);
}
</style>
<![endif]-->
<input type="hidden" value="1" id="indexScanCodeBind" />
<input type="hidden" value="首页" id="" />
<!--topSearch-->
<!--topSearch 开始-->
<div class="search-new-container">
<div class="search-new-block">
<div class="search-new-warp">
<div class="search-new-icon"> </div>
<div class="search-input-container">
<div class="input">
<div class="picker">
<span class="search-input-picker-icon"></span>
<p id="search-input-picker-key" data="paper">全部</p>
<span class="search-input-picker-border"></span>
</div>
<input type="text" placeholder="海量资源,等你发现" autocomplete="off" id="search-input" />
<div class="search-btn-container">
<div class="search-btn-group" id="search-btn-document" data="first">
<span class="search-btn-icon-find"></span>
检索
</div>
<div class="search-btn-group" id="search-btn-periodical" data="second">
搜期刊
</div>
</div>
<div class="search-input-list-popover" id="search-input-key-popover">
<i class="triangle"></i>
<div class="search-input-list">
<ul id="search-input-key-list"></ul>
</div>
</div>
<div id="search-picker-popover">
<div id="search-picker-popover-arrow"></div>
<ul class="search-picker-list">
<li><span class="search-picker-li-checked" data="paper">全部</span></li>
<li><span data="periodical">期刊</span></li>
<li><span data="thesis">学位</span></li>
<li><span data="conference">会议</span></li>
<li><span data="patent">专利</span></li>
<li><span data="nstr">科技报告</span></li>
<li><span data="cstad">成果</span></li>
<li><span data="standard">标准</span></li>
<li><span data="law">法规</span></li>
<li><span data="localchronicleitem">地方志</span></li>
<li><span data="video">视频</span></li>
</ul>
</div>
<div class="search-associate-popover">
<ul class="search-associate-list"> </ul>
</div>
</div>
</div>
<div class="search-senior-container">
<a id="advanced-search" href="https://s.wanfangdata.com.cn/advanced-search/paper">高级检索
<div class="search-senior-arrow"></div>
</a>
<a href="https://s.wanfangdata.com.cn/history">检索历史
<div class="search-senior-arrow"></div>
</a>
</div>
</div>
<div class="search-roll-container">
<div class="search-roll-news-container">
<div class="search-roll-news">
<span class="search-roll-icon"></span>
<ul class="news_li">
<li><a href="https://mall.jd.com/index-779622.html" target="_blank" title="开学季京东万方官方旗舰店,优惠酬宾">
开学季京东万方官方旗舰店,优惠酬宾</a></li><li><a href="https://ad.wanfangdata.com.cn/doc/关于延期举办《第十九届(2021)全国核心期刊与期刊国际化、网络化研讨会》的通知.pdf" target="_blank" title="全国核心期刊与期刊国际化、网络化研讨会延期通知">
全国核心期刊与期刊国际化、网络化研讨会延期通知</a>
</li></ul>
<ul class="swap">
<li><a href="https://mall.jd.com/index-779622.html" target="_blank" title="开学季京东万方官方旗舰店,优惠酬宾">
开学季京东万方官方旗舰店,优惠酬宾</a></li><li><a href="https://ad.wanfangdata.com.cn/doc/关于延期举办《第十九届(2021)全国核心期刊与期刊国际化、网络化研讨会》的通知.pdf" target="_blank" title="全国核心期刊与期刊国际化、网络化研讨会延期通知">
全国核心期刊与期刊国际化、网络化研讨会延期通知</a>
</li></ul>
</div>
</div>
<div class="search-roll-container-bg"></div>
</div>
</div>
</div>
<!--topSearch 结束-->
<script src="/page/common/js/topsearch-new.js"></script>
<!--banner开始-->
<!--<link href="https://cdn.wanfangdata.com.cn/page/css/index.css?version1=1.2022.37-20220425142155" rel="stylesheet" type="text/css">-->
<!--创研平台、数字图书馆、科研诚信-->
<div class="resource">
<div class="resource-innovation">
<a class="resource-link" href="/innovation.html" target="_blank"><div class="resource-img"></div></a>
<div class="resource-innovation-content">
<a class="resource-content-item scifund" target="_blank" href="https://scifund.wanfangdata.com.cn/">
<div class="resource-icon scifund-icon"></div>
<span class="resource-title">科慧</span>
</a>
<a class="resource-content-item topic" target="_blank" href="https://topic.wanfangdata.com.cn/index.do">
<div class="resource-icon topic-icon"></div>
<span class="resource-title">万方选题</span>
</a>
<a class="resource-content-item miner" target="_blank" href="https://miner.wanfangdata.com.cn/themeAnalysis/toIndex.do">
<div class="resource-icon miner-icon"></div>
<span class="resource-title">万方分析</span>
</a>
<a class="resource-content-item subject" target="_blank" href="https://xueke.wanfangdata.com.cn/evaluationIndex.do">
<div class="resource-icon subject-icon"></div>
<span class="resource-title">学科评估</span>
</a>
<a class="resource-content-item trend" target="_blank" href="https://trend.wanfangdata.com.cn/">
<div class="resource-icon trend-icon"></div>
<span class="resource-title">知识脉络</span>
</a>
<a class="resource-content-item et" target="_blank" href="https://et.wanfangdata.com.cn/bz/">
<div class="resource-icon et-icon"></div>
<span class="resource-title">标准管理</span>
</a>
<a class="resource-more" target="_blank" href="/innovation.html">更多 <i class="resource-more-icon"></i></a>
</div>
</div>
<div class="resource-library">
<a class="resource-link" target="_blank" href="https://s.wanfangdata.com.cn/nav-page?a=second"><div class="resource-img" src="https://cdn.wanfangdata.com.cn/page/common/new/image/library.png" alt="数字图书馆"></div></a>
<div class="resource-library-content">
<div class="resource-library-navigation">
<div class="resource-library-title">资源导航</div>
<div class="resource-library-navigation-content">
<a class="resource-content-item periodical" target="_blank" href="https://c.wanfangdata.com.cn/periodical">
<div class="resource-icon periodical-icon"></div>
<span class="resource-title">学术期刊</span>
</a>
<a class="resource-content-item thesis" target="_blank" href="https://c.wanfangdata.com.cn/thesis">
<div class="resource-icon thesis-icon"></div>
<span class="resource-title">学位论文</span>
</a>
<a class="resource-content-item conference" target="_blank" href="https://c.wanfangdata.com.cn/conference">
<div class="resource-icon conference-icon"></div>
<span class="resource-title">会议论文</span>
</a>
<a class="resource-content-item nstr" target="_blank" href="https://c.wanfangdata.com.cn/nstr">
<div class="resource-icon nstr-icon"></div>
<span class="resource-title">科技报告</span>
</a>
<a class="resource-content-item patent" target="_blank" href="https://c.wanfangdata.com.cn/patent">
<div class="resource-icon patent-icon"></div>
<span class="resource-title">专利</span>
</a>
<a class="resource-content-item standard" target="_blank" href="https://c.wanfangdata.com.cn/standard">
<div class="resource-icon standard-icon"></div>
<span class="resource-title">标准</span>
</a>
<a class="resource-content-item cstad" target="_blank" href="https://c.wanfangdata.com.cn/cstad">
<div class="resource-icon cstad-icon"></div>
<span class="resource-title">科技成果</span>
</a>
<a class="resource-content-item claw" target="_blank" href="https://c.wanfangdata.com.cn/claw">
<div class="resource-icon claw-icon"></div>
<span class="resource-title">法律法规</span>
</a>
</div>
</div>
<div class="resource-library-link">
<div class="resource-library-title">特色资源</div>
<div class="resource-library-link-content">
<a target="_blank" href="https://fz.wanfangdata.com.cn/" class="resource-library-link-item">地方志</a>
<a target="_blank" href="https://video.wanfangdata.com.cn/" class="resource-library-link-item">视频</a>
<a target="_blank" href="https://et.wanfangdata.com.cn/Subpage/TradeCategory" class="resource-library-link-item">行业知识服务平台</a>
<a target="_blank" href="https://mswh.wanfangdata.com.cn/index.do" class="resource-library-link-item">民俗文化专题库</a>
<a target="_blank" href="http://cpc.wanfangdata.com.cn/jfjx/" class="resource-library-link-item">家训家风专题库</a>
</div>
</div>
<a class="resource-more" target="_blank" href="https://s.wanfangdata.com.cn/nav-page?a=second">更多合作资源 <i class="resource-more-icon"></i></a>
</div>
</div>
<div class="resource-integrity">
<a class="resource-link" target="_blank" href="https://cx.wanfangdata.com.cn/cnris/"><div class="resource-img"></div></a>
<div class="resource-integrity-content">
<a class="resource-content-item cx" target="_blank" href="https://cx.wanfangdata.com.cn/e-learning/login">
<div style="height: 47px;" class="resource-icon cx-icon"></div>
<span class="resource-title">科研诚信学习系统</span>
</a>
<a class="resource-content-item jc" target="_blank" href="https://jc.wanfangdata.com.cn/#/index">
<div style="height: 46px;" class="resource-icon jc-icon"></div>
<span class="resource-title">个人用户文献检测</span>
</a>
<a class="resource-content-item check" target="_blank" href="https://check.wanfangdata.com.cn/checklogin/?service=https://check.wanfangdata.com.cn/al">
<div class="resource-icon check-icon"></div>
<span class="resource-title">学术预审检测</span>
</a>
<a class="resource-content-item md" target="_blank" href="https://check.wanfangdata.com.cn/checklogin/?service=https://check.wanfangdata.com.cn/md">
<div class="resource-icon md-icon"></div>
<span class="resource-title">硕博论文检测</span>
</a>
<a class="resource-content-item bd" target="_blank" href="https://check.wanfangdata.com.cn/checklogin/?service=https://check.wanfangdata.com.cn/bd">
<div style="height: 46px;" class="resource-icon bd-icon"></div>
<span class="resource-title">大学生论文检测</span>
</a>
<a class="resource-content-item pa" target="_blank" href="https://check.wanfangdata.com.cn/checklogin/?service=https://check.wanfangdata.com.cn/pa">
<div style="height: 46px;" class="resource-icon pa-icon"></div>
<span class="resource-title">职称论文检测</span>
</a>
<a class="resource-more" target="_blank" href="https://cx.wanfangdata.com.cn/cnris/">更多 <i class="resource-more-icon"></i></a>
</div>
</div>
</div><!--云商城-->
<link rel="stylesheet" href="https://com.wf.pub/thin.css" />
<link rel="stylesheet" href="https://com.wf.pub/wf.css" />
<script src="https://com.wf.pub/thin.js"></script>
<script src="https://com.wf.pub/jsbuilder/appstore.js"></script>
<wf-appstore><wf-appstore-title><a href="https://apps.wanfangdata.com.cn" target="_blank">热门应用</a></wf-appstore-title><typelist><typename class="sort active" data-sort=""><span>全部</span></typename><typename class="sort" data-sort="19"><span>毕业论文写作</span><span class="appstore-hot">HOT</span></typename><typename class="sort" data-sort="22"><span>论文查重包月版</span><span class="appstore-hot">HOT</span></typename><typename class="sort" data-sort="20"><span>考研选题</span><span class="appstore-hot">HOT</span></typename><typename class="sort" data-sort="21"><span>基础教育</span></typename><typename class="sort" data-sort="13"><span>自营</span></typename><typename class="sort" data-sort="12"><span>期刊</span></typename><typename class="sort" data-sort="15"><span>热销</span></typename></typelist><container><app><recommend-app class="recommended-app">荐</recommend-app><a href="https://apps.wanfangdata.com.cn/open" target="_blank"><image style="background-image: url("https://img.wf.pub/1/8631.189382391014-开放平台.png"); background-size: 170px 106px;"></image></a><app-info><a href="https://apps.wanfangdata.com.cn/apps/open" title="查看简介" target="_blank"><app-name>开放平台</app-name></a><app-desc></app-desc><wf-user data-nickname="万方数据"><a href="https://apps.wanfangdata.com.cn/u/万方数据" target="_blank">@万方数据</a></wf-user><favorite-info><img src="https://com.wf.pub/img/g-star.png" /><star-number>(<number>165</number>)</star-number></favorite-info><br /></app-info></app><app><recommend-app class="recommended-app">荐</recommend-app><a href="https://apps.wanfangdata.com.cn/perios" target="_blank"><image style="background-image: url("https://img.wf.pub/6%2F5207.034854996062-%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20220321103915.png"); background-size: 170px 106px;"></image></a><app-info><a href="https://apps.wanfangdata.com.cn/apps/perios" title="查看简介" target="_blank"><app-name>期刊专题</app-name></a><app-desc></app-desc><wf-user data-nickname="万方数据"><a href="https://apps.wanfangdata.com.cn/u/万方数据" target="_blank">@万方数据</a></wf-user><favorite-info><img src="https://com.wf.pub/img/g-star.png" /><star-number>(<number>497</number>)</star-number></favorite-info><br /><sold>11030人已购买</sold></app-info></app><app><recommend-app class="recommended-app">荐</recommend-app><a href="https://apps.wanfangdata.com.cn/thesis" target="_blank"><image style="background-image: url("https://img.wf.pub/7%2F1077.6314951307374-%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20220321103918.png"); background-size: 170px 106px;"></image></a><app-info><a href="https://apps.wanfangdata.com.cn/apps/thesis" title="查看简介" target="_blank"><app-name>学位专题</app-name></a><app-desc></app-desc><wf-user data-nickname="万方数据"><a href="https://apps.wanfangdata.com.cn/u/万方数据" target="_blank">@万方数据</a></wf-user><favorite-info><img src="https://com.wf.pub/img/g-star.png" /><star-number>(<number>75</number>)</star-number></favorite-info><br /><sold>719人已购买</sold></app-info></app><app><recommend-app class="recommended-app">荐</recommend-app><a href="https://apps.wanfangdata.com.cn/check" target="_blank"><image style="background-image: url("https://img.wf.pub/627%2F237.22532682789011-15314659071179c191c7949fc1b0919.png"); background-size: 170px 106px;"></image></a><app-info><a href="https://apps.wanfangdata.com.cn/apps/check" title="查看简介" target="_blank"><app-name>万方检测</app-name></a><app-desc></app-desc><wf-user data-nickname="万方数据"><a href="https://apps.wanfangdata.com.cn/u/万方数据" target="_blank">@万方数据</a></wf-user><favorite-info><img src="https://com.wf.pub/img/g-star.png" /><star-number>(<number>425</number>)</star-number></favorite-info><br /><sold>1057人已购买</sold></app-info></app><app><recommend-app class="recommended-app">荐</recommend-app><a href="https://apps.wanfangdata.com.cn/cqtsk" target="_blank"><image style="background-image: url("https://img.wf.pub/24/5617.634435306416-%E6%B0%91%E5%9B%BD%E6%96%87%E7%8C%AE-%E6%94%B9.png"); background-size: 170px 106px;"></image></a><app-info><a href="https://apps.wanfangdata.com.cn/apps/cqtsk" title="查看简介" target="_blank"><app-name>重庆图书馆民国特色文献库</app-name></a><app-desc></app-desc><wf-user data-nickname="成都子公司"><a href="https://apps.wanfangdata.com.cn/u/成都子公司" target="_blank">@成都子公司</a></wf-user><favorite-info><img src="https://com.wf.pub/img/g-star.png" /><star-number>(<number>53</number>)</star-number></favorite-info><br /><sold>1人已购买</sold></app-info></app><app><recommend-app class="recommended-app">荐</recommend-app><a href="https://apps.wanfangdata.com.cn/ecph" target="_blank"><image style="background-image: url("https://img.wf.pub/202/6549.08716186643-微信图片_20210517164938.jpg"); background-size: 170px 106px;"></image></a><app-info><a href="https://apps.wanfangdata.com.cn/apps/ecph" title="查看简介" target="_blank"><app-name>大百科全书数据库</app-name></a><app-desc></app-desc><wf-user data-nickname="中国大百科全书出版社"><a href="https://apps.wanfangdata.com.cn/u/中国大百科全书出版社" target="_blank">@中国大百科全书出版社</a></wf-user><favorite-info><img src="https://com.wf.pub/img/g-star.png" /><star-number>(<number>96</number>)</star-number></favorite-info><br /><sold>12人已购买</sold></app-info></app><app><recommend-app class="recommended-app">荐</recommend-app><a href="https://apps.wanfangdata.com.cn/zxx" target="_blank"><image style="background-image: url("https://img.wf.pub/297%2F2472.891370202404-%E5%BC%80%E6%94%BE%E5%B9%B3%E5%8F%B0%E5%85%A5%E5%8F%A3-%E5%9F%BA%E6%95%99%E5%B9%B3%E5%8F%B01.jpg"); background-size: 170px 106px;"></image></a><app-info><a href="https://apps.wanfangdata.com.cn/apps/zxx" title="查看简介" target="_blank"><app-name>中小学数字图书馆</app-name></a><app-desc>服务中小学的数字图书馆</app-desc><wf-user data-nickname="基础教育知识服务平台"><a href="https://apps.wanfangdata.com.cn/u/基础教育知识服务平台" target="_blank">@基础教育知识服务平台</a></wf-user><favorite-info><img src="https://com.wf.pub/img/g-star.png" /><star-number>(<number>58</number>)</star-number></favorite-info><br /></app-info></app><app><recommend-app class="recommended-app">荐</recommend-app><a href="https://apps.wanfangdata.com.cn/journal" target="_blank"><image style="background-image: url("https://img.wf.pub/155%2F8982.647534510616-%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20210914152727.jpg"); background-size: 170px 106px;"></image></a><app-info><a href="https://apps.wanfangdata.com.cn/apps/journal" title="查看简介" target="_blank"><app-name>科技纵览</app-name></a><app-desc></app-desc><wf-user data-nickname="小阿牛"><a href="https://apps.wanfangdata.com.cn/u/小阿牛" target="_blank">@小阿牛</a></wf-user><favorite-info><img src="https://com.wf.pub/img/g-star.png" /><star-number>(<number>132</number>)</star-number></favorite-info><br /><sold>264人已购买</sold></app-info></app><app><a href="https://apps.wanfangdata.com.cn/lcsjwk" target="_blank"><image style="background-image: url("https://img.wf.pub/190/4740.305109447622-应用封面-最终版.png"); background-size: 170px 106px;"></image></a><app-info><a href="https://apps.wanfangdata.com.cn/apps/lcsjwk" title="查看简介" target="_blank"><app-name>《临床神经外科杂志》JCN新媒体栏目</app-name></a><app-desc></app-desc><wf-user data-nickname="神外编辑部"><a href="https://apps.wanfangdata.com.cn/u/神外编辑部" target="_blank">@神外编辑部</a></wf-user><favorite-info><img src="https://com.wf.pub/img/g-star.png" /><star-number>(<number>12</number>)</star-number></favorite-info><br /></app-info></app><app><a href="https://apps.wanfangdata.com.cn/pbxt" target="_blank"><image style="background-image: url("https://img.wf.pub/224/5392.0853488937755-20210601133343.png"); background-size: 170px 106px;"></image></a><app-info><a href="https://apps.wanfangdata.com.cn/apps/pbxt" title="查看简介" target="_blank"><app-name>万方中小学课题论文管理平台</app-name></a><app-desc></app-desc><wf-user data-nickname="上海万方数据有限公司"><a href="https://apps.wanfangdata.com.cn/u/上海万方数据有限公司" target="_blank">@上海万方数据有限公司</a></wf-user><favorite-info><img src="https://com.wf.pub/img/g-star.png" /><star-number>(<number>5</number>)</star-number></favorite-info><br /></app-info></app><app><a href="https://apps.wanfangdata.com.cn/xueyuan" target="_blank"><image style="background-image: url("https://img.wf.pub/62%2F1525.7568033436564-%E4%B8%87%E6%96%B9%E5%A4%A7%E8%AE%B2%E5%A0%82.png"); background-size: 170px 106px;"></image></a><app-info><a href="https://apps.wanfangdata.com.cn/apps/xueyuan" title="查看简介" target="_blank"><app-name>万方大讲堂</app-name></a><app-desc></app-desc><wf-user data-nickname="万方数据股份有限公司"><a href="https://apps.wanfangdata.com.cn/u/万方数据股份有限公司" target="_blank">@万方数据股份有限公司</a></wf-user><favorite-info><img src="https://com.wf.pub/img/g-star.png" /><star-number>(<number>64</number>)</star-number></favorite-info><br /></app-info></app><app><a href="https://apps.wanfangdata.com.cn/cihai" target="_blank"><image style="background-image: url("https://img.wf.pub/282%2F9025.739760324701-log.jpg"); background-size: 170px 106px;"></image></a><app-info><a href="https://apps.wanfangdata.com.cn/apps/cihai" title="查看简介" target="_blank"><app-name>辞海</app-name></a><app-desc>权威、可信的知识检索平台</app-desc><wf-user data-nickname="上海辞书出版社有限公司"><a href="https://apps.wanfangdata.com.cn/u/上海辞书出版社有限公司" target="_blank">@上海辞书出版社有限公司</a></wf-user><favorite-info><img src="https://com.wf.pub/img/g-star.png" /><star-number>(<number>48</number>)</star-number></favorite-info><br /></app-info></app><app><a href="https://apps.wanfangdata.com.cn/sklib" target="_blank"><image style="background-image: url("https://img.wf.pub/258%2F114.35758313029342-226-140.jpg"); background-size: 170px 106px;"></image></a><app-info><a href="https://apps.wanfangdata.com.cn/apps/sklib" title="查看简介" target="_blank"><app-name>中国社会科学文库</app-name></a><app-desc>中国社会科学文库</app-desc><wf-user data-nickname="任彦虎"><a href="https://apps.wanfangdata.com.cn/u/任彦虎" target="_blank">@任彦虎</a></wf-user><favorite-info><img src="https://com.wf.pub/img/g-star.png" /><star-number>(<number>29</number>)</star-number></favorite-info><br /></app-info></app><app><a href="https://apps.wanfangdata.com.cn/wqxuetang" target="_blank"><image style="background-image: url("https://img.wf.pub/156%2F6844.587710270755-195_8974.345120211252-%E5%9B%BE%E7%89%87%202%401x%20(1).png"); background-size: 170px 106px;"></image></a><app-info><a href="https://apps.wanfangdata.com.cn/apps/wqxuetang" title="查看简介" target="_blank"><app-name>文泉书局</app-name></a><app-desc></app-desc><wf-user data-nickname="3个W"><a href="https://apps.wanfangdata.com.cn/u/3个W" target="_blank">@3个W</a></wf-user><favorite-info><img src="https://com.wf.pub/img/g-star.png" /><star-number>(<number>23</number>)</star-number></favorite-info><br /></app-info></app><app><a href="https://apps.wanfangdata.com.cn/eas" target="_blank"><image style="background-image: url("https://img.wf.pub/305%2F991.3553215113446-logo.jpg"); background-size: 170px 106px;"></image></a><app-info><a href="https://apps.wanfangdata.com.cn/apps/eas" title="查看简介" target="_blank"><app-name>专业知识聚合站内应用平台V1.0-专家编审</app-name></a><app-desc></app-desc><wf-user data-nickname="郑佳"><a href="https://apps.wanfangdata.com.cn/u/郑佳" target="_blank">@郑佳</a></wf-user><favorite-info><img src="https://com.wf.pub/img/g-star.png" /><star-number>(<number>4</number>)</star-number></favorite-info><br /></app-info></app><app><a href="https://apps.wanfangdata.com.cn/xlcbs" target="_blank"><image style="background-image: url("https://img.wf.pub/213/5126.6287838004955-未标题-1.jpg"); background-size: 170px 106px;"></image></a><app-info><a href="https://apps.wanfangdata.com.cn/apps/xlcbs" title="查看简介" target="_blank"><app-name>新蕾出版社</app-name></a><app-desc></app-desc><wf-user data-nickname="新蕾出版社"><a href="https://apps.wanfangdata.com.cn/u/新蕾出版社" target="_blank">@新蕾出版社</a></wf-user><favorite-info><img src="https://com.wf.pub/img/g-star.png" /><star-number>(<number>7</number>)</star-number></favorite-info><br /></app-info></app></container><wf-pagination><button>首页</button><button>上一页</button><button>下一页</button><button>尾页</button><span>1/9</span><input /><button>跳转</button></wf-pagination></wf-appstore>
<!--科研赋能-->
<div class="scientific">
<h1 class="scientific-title">科研赋能</h1>
<p class="scientific-description">关注各类科研场景,提供便捷、高效的科研工具,打造科研全流程解决方案</p>
<div class="scientific-list">
<div class="scientific-list-item">
<h5 class="scientific-list-item-title"><span class="scientific-list-item-arrow">< </span>科研选题<span class="scientific-list-item-arrow"> ></span></h5>
<a href="https://topic.wanfangdata.com.cn/index.do" target="_blank" class="scientific-list-item-column">万方选题</a>
<a href="https://scifund.wanfangdata.com.cn/" target="_blank" class="scientific-list-item-column">科慧</a>
</div>
<div class="scientific-list-item">
<h5 class="scientific-list-item-title"><span class="scientific-list-item-arrow">< </span>脉络分析<span class="scientific-list-item-arrow"> ></span></h5>
<a href="https://trend.wanfangdata.com.cn/" target="_blank" class="scientific-list-item-column">关键词知识脉络</a>
<a href="https://miner.wanfangdata.com.cn/themeAnalysis/toIndex.do" target="_blank" class="scientific-list-item-column">主题分析</a>
</div>
<div class="scientific-list-item">
<h5 class="scientific-list-item-title"><span class="scientific-list-item-arrow">< </span>诚信规范<span class="scientific-list-item-arrow"> ></span></h5>
<a href="https://check.wanfangdata.com.cn/" target="_blank" class="scientific-list-item-column">万方检测</a>
<a href="https://cx.wanfangdata.com.cn/e-learning/login" target="_blank" class="scientific-list-item-column">科研诚信学习系统</a>
</div>
<div class="scientific-list-item">
<h5 class="scientific-list-item-title"><span class="scientific-list-item-arrow">< </span>投稿推荐<span class="scientific-list-item-arrow"> ></span></h5>
<a href="https://miner.wanfangdata.com.cn/perioAnalysis/toIndex.do" target="_blank" class="scientific-list-item-column">期刊分析</a>
<a class="scientific-list-item-column" title="敬请期待">投稿助手</a>
</div>
<div class="scientific-list-item">
<h5 class="scientific-list-item-title"><span class="scientific-list-item-arrow">< </span>学术交流<span class="scientific-list-item-arrow"> ></span></h5>
<a href="https://social.wanfangdata.com.cn/" target="_blank" class="scientific-list-item-column">学术圈</a>
<a href="https://trend.wanfangdata.com.cn/" target="_blank" class="scientific-list-item-column">学者知识脉络</a>
</div>
<div class="scientific-list-item">
<h5 class="scientific-list-item-title"><span class="scientific-list-item-arrow">< </span>成果跟踪<span class="scientific-list-item-arrow"> ></span></h5>
<a href="https://et.wanfangdata.com.cn//kjcg/" target="_blank" class="scientific-list-item-column">科技成果共享管理系统</a>
<a href="http://patentool.wanfangdata.com.cn/" target="_blank" class="scientific-list-item-column">专利工具</a>
</div>
</div>
</div><!--阅读推荐-->
<div class="recommend">
<h1 class="column-title"><span class="column-title-item">阅读推荐</span></h1>
<div class="recommend-paper">
<div class="recommend-paper-left">
<div class="recommend-paper-title">
<h5>精品文献</h5>
<a class="more-link" href="/informationController/search.do?type=paper" target="_blank">更多</a>
</div>
<div class="recommend-paper-img"></div>
<div id="QualityArticle" style="display:none"> [{"abstract":"为研究碳酸钙和温度对土壤有机碳矿化的影响,以贵州典型黄壤为对象,通过60 d室内矿化培养试验,研究15、25℃和35℃下13C标记碳酸钙(30 g·kg-1)对土壤有机碳矿化及其温度敏感性的影响.结果 表明:不同处理的土壤CO2释放速率均在第1 d达到峰值,随后迅速减小,在15~60 d时趋于稳定.碳酸钙抑制了土壤原有有机碳的矿化(P<0.01),在培养前期(1~10 d)表现为强负激发效应,其负激发效应在不同温度下最强可达-81.0%(25℃)、-69.3%(35℃)和-54.0%(15℃).土壤总CO2累积释放量在35℃下高于15℃和25℃,温度可增强土壤有机碳的矿化(P<0.05).13CO2释放量在25℃和35℃下显著高于15℃(P<0.05),对土壤总CO2释放量的贡献率为25℃(27.33%)>35℃(19.36%)>15℃(13.81%).黄壤有机碳矿化温度敏感性(Q10)变化范围在0.90~1.69.添加碳酸钙对Q10值无显著影响,但温度对Q10值有显著影响,25~35℃体系下Q10值高于15~25℃.研究表明,在15~35℃范围内,外源碳酸钙抑制了黄壤有机碳的矿化,且外源碳酸钙对黄壤有机碳矿化的影响效果显著强于温度的影响.","id":"nyhjbh202201014","issue":"1","periodicalId":"nyhjbh","periodicalTitle":"农业环境科学学报","publishYear":"2022","title":"碳酸钙对黄壤有机碳矿化及其温度敏感性的影响"},{"abstract":"文章选取2009—2018年深市A股上市公司连续且有效的数据,以地方财政分权对企业全要素生产率的影响为切入点进行深入研究.研究发现:财政分权对企业全要素生产率产生了正向影响.从微观宏观角度研究,其直接改善了地方企业内外部的经济环境,间接促进了企业全要素生产率的增长;从企业区域、企业类型角度研究,中西部地区企业全要素生产率受到财政分权的影响较其他地区更为明显;非国企及高科技企业受到的影响较其他企业更为明显.根据以上结论,就深入财政分权改革等问题提出了相应建议:深入调整地方财政资源分配,改善当地企业内外部环境;完善财政分权制度,驱动区域发展协调;完善相关法律法规,改善立法的滞后性.","id":"hdjjgl202203009","issue":"3","periodicalId":"hdjjgl","periodicalTitle":"华东经济管理","publishYear":"2022","title":"地方财政分权程度对企业全要素生产率的影响"},{"abstract":"以聚丙烯(PP)和高纯氮气为原料,采用高压短时和低压长时两种注气方式进行了微发泡注塑实验,并在以低压长时为注气方式的实验中,在不同熔体温度、注气压差和储料长度下,研究了冷却时间与制品表面出现大气泡概率之间的关系.结果表明,通过高压短时注气方式得到的制品表面出现大气泡的概率较高,严重影响制品质量;采用低压长时注气方式,制品表面出现大气泡的概率显著降低;延长冷却时间可以完全消除制品表面的大气泡,且在一定范围内,熔体温度越高、注气压差越大、储料长度越大,消除大气泡所需要的最佳冷却时间越长.","id":"zgsuliao202202004","issue":"2","periodicalId":"zgsuliao","periodicalTitle":"中国塑料","publishYear":"2022","title":"微发泡注塑制品表面质量的优化研究"},{"abstract":"研究\"双一流\"高校国家知识产权信息服务中心开展的知识产权素养教育现状对了解当前我国高校图书馆知识产权信息服务实践具有典型代表意义.文章利用文献研究、网络调查等方法,结合开设栏目现状,从知识产权素养教育内容、教育形式两方面广泛调研26家\"双一流\"高校国家知识产权信息服务中心开展的知识产权素养教育现状,总结现有经验及存在问题,最后对我国知识产权素养教育的未来发展提出优化参考建议.","id":"tusg202202008","issue":"2","periodicalId":"tusg","periodicalTitle":"图书馆","publishYear":"2022","title":"\"双一流\"高校图书馆知识产权素养教育现状及优化策略"},{"abstract":"农业类院校主要是培养能够胜任农业科研、农业生产和农业产业运营的现代化农业人才,他们是现代化农业发展的中坚力量.在国际文化碰撞交流愈发频繁、信息网络飞速发展的时代,涉农专业学子同样受到许多外来思想文化观念的影响.这种影响既可能是正面的、积极的,也有可能是负面的、消极的.在信息纷繁驳杂的年代,要确保涉农高校学子秉持社会主义核心价值观,不为外来不良文化所侵扰,就必须对其加强思想政治教育.思想政治教育是高校所有专业学子的必修课程,但近年来传统思想政治理论课程教育的效果有所减弱,各高校在国家和教育主管部门的领导下,都依据自身专业教学现状开展了思想政治教育课程的创新探索,旨在将各专业课程与思想政治教育课程有效联动起来,形成协同共进、同向同行的教学格局,提升教学效果.","id":"zgdm202201032","issue":"1","periodicalId":"zgdm","periodicalTitle":"中国稻米","publishYear":"2022","title":"涉农高校课程思政协同育人创新探索"},{"abstract":"人们对于美的追求是对于生命本真的追求,数学美是数学生命力的重要支柱,是数学教育目标之一,是数学教师对数学教学的理性追求.学校的数学教育教学,承载着美育教育的任务.\r\n1 数学之美\r\n美是自然的,是一切事物生存和发展的本质特征.法国数学家笛卡尔也说过,美是客观适应满足于主观感受与体验的一种特征.张文俊认为,数学的美就是数学问题的结论或解决问题过程适应人类的心理需要而产生的一种满足感,简洁的表现形式,精细的思考方法,处处充满着理性、高雅、和谐之美,这是真与善的客观表现[1].","id":"sxtb202201010","issue":"1","periodicalId":"sxtb","periodicalTitle":"数学通报","publishYear":"2022","title":"模式识别美在其中"},{"abstract":"主要利用拟可逆元和m-potent元的概念,定义了Q-m-clean元和Q-m-clean环,给出了Q-m-clean元的一些等价条件,研究了Q-m-clean环的一些性质,证明了Q-m-clean环的同态像及有限直积均是Q-m-clean环.","id":"ahsfdx202201004","issue":"1","periodicalId":"ahsfdx","periodicalTitle":"安徽师范大学学报(自然科学版)","publishYear":"2022","title":"Q-m-clean环及其推广"},{"abstract":"大规模个性化定制的互联工厂是以用户互联为核心,整合用户个性化需求,并深度参与企业全流程、零距离互联生态资源,快速、低成本且高效地提供智能产品、服务和增值体验的智能制造模式.基于对大规模个性化定制的互联工厂的数字化技术应用研究,提出互联工厂的数字化技术总体实施架构,同时结合互联工厂中的实际业务需求场景,介绍数字化技术在大规模个性化定制的互联工厂中的应用实践和关键作用.通过互联工厂的数字化体系建设,实现互联工厂全流程业务智能管控、智慧运营和智能决策,最终实现降本提效,更好地服务企业管理,提升企业核心竞争力.","id":"jxgys202202004","issue":"2","periodicalId":"jxgys","periodicalTitle":"现代制造工程","publishYear":"2022","title":"面向大规模个性化定制的互联工厂的数字化技术应用研究"},{"abstract":"运用降雪深度加密观测资料,求取2020年2月14日华北中部一次降雪过程的平均雪水比(snow-to-liquid ratio,SLR),并分析了其变化特征和形成原因,发现此次过程SLR在东西方向上变化显著,即自北京平原地区至天津西部逐渐增大,再向东至天津东部又有所减小,京津两地SLR差别大.3h平均的SLR显示北京平原地区东部和天津中北部随时间变化不大,天津南部和天津沿海地区有增大趋势.基于Cobb算法的云内SLR也具有相似的东西向变化特征,表明云内过程是此次华北中部平原地区SLR东西向变化的主要原因.北京平原地区近地层的融雪作用以及北京平原地区西南部的地表融雪加强了此变化特征.另外,通过分析误差来源发现文中研究区域的中西部地区云内SLR与由积雪深度观测计算的SLR差异较大,尤其是西部地区,这主要与该地区较高的地面2m气温导致的近地面层的融雪作用有关,北京平原地区的误差基本上来源于此.对于天津西部,云内冰、液混合相态导致的凇附增长可能是该地区误差的主要来源.","id":"qx202202007","issue":"2","periodicalId":"qx","periodicalTitle":"气象","publishYear":"2022","title":"华北中部平原地区一次降雪过程雪水比变化特征及成因分析"},{"abstract":"战争中,预警探测体系作为典型的复杂系统,其探测效能发挥情况的有效评估一直是亟需人们研究解决的重要现实问题.突破了传统效能评估方法的局限,在分析了知识图谱技术、贝叶斯评估方法基本原理的基础上,提出了基于两者综合运用的预警探测体系探测效能评估新方法,利用专家知识和实验数据构建知识图谱,并进一步使用贝叶斯网络方法实施知识推理,从而实现了体系探测效能评估.通过构建具体作战场景,验证了所提方法的有效性,并基于推演数据分析了所提方法的评估情况.","id":"xdfyjs202201011","issue":"1","periodicalId":"xdfyjs","periodicalTitle":"现代防御技术","publishYear":"2022","title":"知识图谱的预警探测体系探测效能贝叶斯评估方法"}]</div>
<div id="recommend-paper-list-left" class="recommend-paper-list" style="overflow: hidden"><div><div class="recommend-paper-list-perio">
《 <a class="recommend-paper-list-perio-link" target="_blank" href="https://www.wanfangdata.com.cn/sns/perio/nyhjbh">农业环境科学学报 </a> 》<span>2022年1期</span></div><div> <a class="recommend-paper-list-title" href="https://d.wanfangdata.com.cn/periodical/nyhjbh202201014" target="_blank">碳酸钙对黄壤有机碳矿化及其温度敏感性的影响</a></div> <div class="recommend-paper-list-description">为研究碳酸钙和温度对土壤有机碳矿化的影响,以贵州典型黄壤为对象,通过60 d室内矿化培养试验,研究15、25℃和35℃下13C标记碳酸钙(30 g·kg-1)对土壤有机碳矿化及其温度敏感性的影响.结果 表明:不同处理的土壤CO2释放速率均在第1 d达到峰值,随后迅速减小,在15~60 d时趋于稳定.碳酸钙抑制了土壤原有有机碳的矿化(P<0.01),在培养前期(1~10 d)表现为强负激发效应,其负激发效应在不同温度下最强可达-81.0%(25℃)、-69.3%(35℃)和-54.0%(15℃).土壤总CO2累积释放量在35℃下高于15℃和25℃,温度可增强土壤有机碳的矿化(P<0.05).13CO2释放量在25℃和35℃下显著高于15℃(P<0.05),对土壤总CO2释放量的贡献率为25℃(27.33%)>35℃(19.36%)>15℃(13.81%).黄壤有机碳矿化温度敏感性(Q10)变化范围在0.90~1.69.添加碳酸钙对Q10值无显著影响,但温度对Q10值有显著影响,25~35℃体系下Q10值高于15~25℃.研究表明,在15~35℃范围内,外源碳酸钙抑制了黄壤有机碳的矿化,且外源碳酸钙对黄壤有机碳矿化的影响效果显著强于温度的影响.</div></div></div></div>
<div class="recommend-paper-right">
<div id="recommend-paper-list-left" class="recommend-paper-list" style="overflow: hidden"><div><div class="recommend-paper-list-perio">
《 <a class="recommend-paper-list-perio-link" target="_blank" href="https://www.wanfangdata.com.cn/sns/perio/hdjjgl">华东经济管理 </a> 》<span>2022年3期</span></div><div> <a class="recommend-paper-list-title" href="https://d.wanfangdata.com.cn/periodical/hdjjgl202203009" target="_blank">地方财政分权程度对企业全要素生产率的影响</a></div> <div class="recommend-paper-list-description">文章选取2009—2018年深市A股上市公司连续且有效的数据,以地方财政分权对企业全要素生产率的影响为切入点进行深入研究.研究发现:财政分权对企业全要素生产率产生了正向影响.从微观宏观角度研究,其直接改善了地方企业内外部的经济环境,间接促进了企业全要素生产率的增长;从企业区域、企业类型角度研究,中西部地区企业全要素生产率受到财政分权的影响较其他地区更为明显;非国企及高科技企业受到的影响较其他企业更为明显.根据以上结论,就深入财政分权改革等问题提出了相应建议:深入调整地方财政资源分配,改善当地企业内外部环境;完善财政分权制度,驱动区域发展协调;完善相关法律法规,改善立法的滞后性.</div></div></div><div id="recommend-paper-list-left" class="recommend-paper-list" style="overflow: hidden"><div><div class="recommend-paper-list-perio">
《 <a class="recommend-paper-list-perio-link" target="_blank" href="https://www.wanfangdata.com.cn/sns/perio/zgsuliao">中国塑料 </a> 》<span>2022年2期</span></div><div> <a class="recommend-paper-list-title" href="https://d.wanfangdata.com.cn/periodical/zgsuliao202202004" target="_blank">微发泡注塑制品表面质量的优化研究</a></div> <div class="recommend-paper-list-description">以聚丙烯(PP)和高纯氮气为原料,采用高压短时和低压长时两种注气方式进行了微发泡注塑实验,并在以低压长时为注气方式的实验中,在不同熔体温度、注气压差和储料长度下,研究了冷却时间与制品表面出现大气泡概率之间的关系.结果表明,通过高压短时注气方式得到的制品表面出现大气泡的概率较高,严重影响制品质量;采用低压长时注气方式,制品表面出现大气泡的概率显著降低;延长冷却时间可以完全消除制品表面的大气泡,且在一定范围内,熔体温度越高、注气压差越大、储料长度越大,消除大气泡所需要的最佳冷却时间越长.</div></div></div></div>
</div>
<div class="recommend-science">
<div class="recommend-science-title">
<h5>科技前沿</h5>
<a class="more-link" href="//w.wanfangdata.com.cn/article-list/science" target="_blank">更多</a>
</div>
<div class="recommend-science-img"></div>
<div class="recommend-science-list">
<ul>
<li><a href="https://w.wanfangdata.com.cn/article-detail/science/e17306401fed4288bd8135b17ee18247" target="_blank" title="万物互联:机器人的背后是谁?">
万物互联:机器人的背后是谁?</a></li><li><a href="https://w.wanfangdata.com.cn/article-detail/science/0e6517b2bc184cddab6df673bfd22f7d" target="_blank" title="万物互联:重新定义宽带">
万物互联:重新定义宽带</a></li><li><a href="https://w.wanfangdata.com.cn/article-detail/science/869266aa4885496c84017eb1e267b970" target="_blank" title="2021顶尖技术专题报道 10:无人见过的地方">
2021顶尖技术专题报道 10:无人见过的地方</a></li><li><a href="https://w.wanfangdata.com.cn/article-detail/science/4d4c3c4f552c4f95884b0e58c66f49b2" target="_blank" title="AI如何攻克蛋白质折叠">
AI如何攻克蛋白质折叠</a></li><li><a href="https://w.wanfangdata.com.cn/article-detail/science/4788883328e6499487d51c0f92bbda31" target="_blank" title="动手:立体视觉">
动手:立体视觉</a></li>
</ul>
</div>
</div>
</div>
<script>
$(document).ready(function(){
var data = $("#QualityArticle").html();
var jsonData = JSON.parse($("#QualityArticle").html());
if(jsonData&&jsonData instanceof Array){
var list= jsonData.map(function(item){
return "<div id=\"recommend-paper-list-left\" class=\"recommend-paper-list\" style=\"overflow: hidden\"><div><div class=\"recommend-paper-list-perio\">\n \u300A&nbsp;<a class=\"recommend-paper-list-perio-link\" target=\"_blank\" href=https://www.wanfangdata.com.cn/sns/perio/"+ item.periodicalId + ">" + item.periodicalTitle + "&nbsp;</a> \u300B<span>" + item.publishYear + '年' + item.issue + "\u671F</span></div><div> <a class=\"recommend-paper-list-title\" href=\"https://d.wanfangdata.com.cn/"+ "periodical/" + item.id + "\"" + "target=\"_blank\">" + item.title + "</a></div> <div class=\"recommend-paper-list-description\">" + item.abstract + "</div></div></div>";
});
var right = list.slice(1,3);
var left =list.splice(0,1);
$('.recommend-paper-left').append(left);
$('.recommend-paper-right').append(right);
}
})
</script><!--万方动态-->
<div class="dynamic">
<h1 class="column-title">
<span class="column-title-item">万方动态</span>
<a class="more-link" href="//w.wanfangdata.com.cn/article-list/activity" target="_blank">更多</a>
</h1>
<div class="dynamic-content">
<div class="dynamic-list">
<ul>
<li><a href="https://w.wanfangdata.com.cn/article-detail/activity/e1e5ca2a76a345419986e9c6dc16c67c" target="_blank" title="奋斗不息追梦不止——科研圈的2021">
奋斗不息追梦不止——科研圈的2021</a><img style="margin-left: 10px;" src="/page/images/new.gif" /></li><li><a href="https://w.wanfangdata.com.cn/article-detail/activity/86587c18b3b543ce825b872703adcb8d" target="_blank" title="信息素养提升系列——万方知识服务平台首页新攻略">
信息素养提升系列——万方知识服务平台首页新攻略</a></li><li><a href="https://w.wanfangdata.com.cn/article-detail/activity/da9372af4517488cab2bc884716fd7d5" target="_blank" title="信息素养提升系列——万方智搜检索方式大集合">
信息素养提升系列——万方智搜检索方式大集合</a></li><li><a href="https://w.wanfangdata.com.cn/article-detail/activity/45ec55f76b214efaa1503a656b7e9d3c" target="_blank" title="重磅!中国医院CT/MRI中文论文发表排行榜(TOP30)正式发布">
重磅!中国医院CT/MRI中文论文发表排行榜(TOP30)正式发布</a></li>
</ul>
</div>
<div class="dynamic-carousel swiper-initialized swiper-horizontal swiper-pointer-events swiper-backface-hidden" id="dynamic-carousel">
<iframe src="https://advert.wanfangdata.com.cn/advertmanager/advert/showAdvert?positionId=3" frameborder="0" width="1170" height="140"></iframe>
<span class="swiper-notification" aria-live="assertive" aria-atomic="true"></span></div>
</div>
</div>
<script src="/page/common/js/swiper.min.js"></script>
<script>
var swiper = new Swiper(".dynamic-carousel", {
pagination: ".swiper-pagination",
loop: true,
paginationClickable: true,
autoplay: 3000,
});
</script>
<!--特色资源-->
<div class="character">
<h1 class="character-title">特色资源</h1>
<p class="character-description">汇集特色资源 了解特色文化</p>
<div class="character-list">
<a class="character-list-item" href="https://fz.wanfangdata.com.cn/" target="_blank">
<div class="character-list-item-img character-list-img-fz"></div>
<span class="character-list-item-btn">地方志</span>
</a>
<a class="character-list-item" href="https://video.wanfangdata.com.cn/" target="_blank">
<div class="character-list-item-img character-list-img-video"></div>
<span class="character-list-item-btn">万方视频</span>
</a>
<a class="character-list-item" href="http://cpc.wanfangdata.com.cn/hswh/" target="_blank">
<div class="character-list-item-img character-list-img-hswh"></div>
<span class="character-list-item-btn">红色文化专题库</span>
</a>
<a class="character-list-item" href="https://mswh.wanfangdata.com.cn/index.do" target="_blank">
<div class="character-list-item-img character-list-img-mswh"></div>
<span class="character-list-item-btn">民俗文化专题库</span>
</a>
<a class="character-list-item" href="http://cpc.wanfangdata.com.cn/jfjx/" target="_blank">
<div class="character-list-item-img character-list-img-jfjx"></div>
<span class="character-list-item-btn">家风家训专题库</span>
</a>
</div>
</div><!--友情链接-->
<div class="link">
<h1 class="link-title">更多产品</h1>
<ul class="link-title-list"><li class="link-title-list-item"><a target="_blank" href="http://med.wanfangdata.com.cn/">万方医学网</a></li>
<li class="link-title-list-item"><a target="_blank" href="http://cpc.wanfangdata.com.cn/">公共文化知识服务平台</a></li>
<li class="link-title-list-item"><a target="_blank" href="https://video.wanfangdata.com.cn/">万方视频</a></li>
<li class="link-title-list-item"><a target="_blank" href="https://edu.wanfangdata.com.cn/">中小学数字图书馆</a></li>
<li class="link-title-list-item"><a target="_blank" href="https://www.cstservice.cn">创新助手</a></li>
<li class="link-title-list-item"><a target="_blank" href="http://kms.wanfangdata.com.cn/">内部知识构建系统</a></li>
<li class="link-title-list-item"><a target="_blank" href="https://et.wanfangdata.com.cn/Subpage/TradeCategory">行业知识服务平台</a></li>
<li class="link-title-list-item"><a target="_blank" href="https://et.wanfangdata.com.cn/IndustrySolutions/xueke/index.html">学科知识服务平台</a></li>
<li class="link-title-list-item"><a target="_blank" href="https://et.wanfangdata.com.cn/bz/">标准管理服务系统</a></li>
<li class="link-title-list-item"><a target="_blank" href="http://csta.wanfangdata.com.cn/www/wfmag/index.html">科技成果管理与研究</a></li>
<li class="link-title-list-item"><a target="_blank" href="http://www.wanfangtech.com/">万方科技</a></li>
<li class="link-title-list-item"><a target="_blank" href="https://wanfang.tmall.com/">万方天猫旗舰店</a></li>
<li class="link-title-list-item"><a target="_blank" href="https://mall.jd.com/index-779622.html">检测查重官方店铺</a></li>
<li class="link-title-list-item"><a target="_blank" href="https://www.wanfangdata.com.cn/app/app.html">万方数据App</a> </li></ul>
</div>
<script>
function resizeText() {
var list1440 = '<li class="link-title-list-item"><a target="_blank" href="http://med.wanfangdata.com.cn/">万方医学网</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="http://cpc.wanfangdata.com.cn/">公共文化知识服务平台</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://video.wanfangdata.com.cn/">万方视频</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://edu.wanfangdata.com.cn/">中小学数字图书馆</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://www.cstservice.cn">创新助手</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="http://kms.wanfangdata.com.cn/">内部知识构建系统</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://et.wanfangdata.com.cn/Subpage/TradeCategory">行业知识服务平台</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://et.wanfangdata.com.cn/IndustrySolutions/xueke/index.html">学科知识服务平台</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://et.wanfangdata.com.cn/bz/">标准管理服务系统</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="http://csta.wanfangdata.com.cn/www/wfmag/index.html">科技成果管理与研究</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="http://www.wanfangtech.com/">万方科技</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://wanfang.tmall.com/">万方天猫旗舰店</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://mall.jd.com/index-779622.html">检测查重官方店铺</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://www.wanfangdata.com.cn/app/app.html">万方数据App</a> </li>';
var list1200 = '<li class="link-title-list-item"><a target="_blank" href="http://med.wanfangdata.com.cn/">万方医学网</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="http://cpc.wanfangdata.com.cn/">公共文化知识服务平台</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://video.wanfangdata.com.cn/">万方视频</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://edu.wanfangdata.com.cn/">中小学数字图书馆</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="http://earth.wanfangdata.com.cn/">Earth insight</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://kms.wanfangdata.com.cn/">内部知识构建系统</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://et.wanfangdata.com.cn/Subpage/TradeCategory">行业知识服务平台</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://et.wanfangdata.com.cn/IndustrySolutions/xueke/index.html">学科知识服务平台</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://et.wanfangdata.com.cn/bz/">标准管理服务系统</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="http://csta.wanfangdata.com.cn/www/wfmag/index.html">科技成果管理与研究</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="http://www.wanfangtech.com/">万方科技</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href=" https://www.cstservice.cn">创新助手</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://wanfang.tmall.com/">万方天猫旗舰店</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://mall.jd.com/index-779622.html">检测查重官方店铺</a></li>\n' +
' <li class="link-title-list-item"><a target="_blank" href="https://www.wanfangdata.com.cn/app/app.html">万方数据App</a> </li>';
if($(window).width() < 1440) {
$('.link-title-list').html(list1200)
} else {
$('.link-title-list').html(list1440)
}
}
$(document).ready(function() {
resizeText()
})
$(window).on("resize", resizeText)
</script>
<!--判断是否是首页-->
<input type="hidden" class="me-onlyIndex" value="meIndex" />
<!--<script src="https://cdn.wanfangdata.com.cn/js/min/koala.min.1.5.js"></script>-->
<!--<script src="https://cdn.wanfangdata.com.cn/page/index/index/js/index.js?version1=1.2022.37-20220425142155"></script>-->
<script src="https://cdn.wanfangdata.com.cn/page/index/index/js/compatibilities-tips.js?version=1.2022.37-20220425142155"></script>
<script type="text/javascript" src="https://cdn.wanfangdata.com.cn/js/min/echo.min.js" charset="utf-8"></script>
<link href="https://cdn.wanfangdata.com.cn/page/common/css/media.css?version=1.2022.37-20220425142155" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="https://cdn.wanfangdata.com.cn/page/common/js/index.js?version=1.2022.37-20220425142155"></script>
<script language="javascript" src="https://cdn.login.wanfangdata.com.cn/Content/js/lang.js"></script>
<style>
body{overflow-x:hidden;}.anxs-8qwe-footRt ul{list-style:none;margin:0;padding:0;}.anxs-8qwe-footer .clear{zoom:1}.anxs-8qwe-footer .clear:after{content:"";display:block;clear:both;visibility:hidden;height:0}.anxs-8qwe-footer{font-family:'Microsoft YaHei';width:100%;background:#f3f3f3;color:#323232;clear:both;font-size:14px;padding-bottom:10px}.anxs-8qwe-footer a:hover{text-decoration:none;}.anxs-8qwe-footer .anxs-8qwe-footer-wrapper{max-width:1440px;margin:0 auto;cursor:default;}.anxs-8qwe-footer .anxs-8qwe-footLt{font-size:12px;position:relative;}.anxs-8qwe-footer .anxs-8qwe-small{padding-top:34px;width:100%;padding-bottom:31px;}.anxs-8qwe-footer .anxs-8qwe-small .anxs-8qwe-small-lt{float:left;}.anxs-8qwe-footer .anxs-8qwe-small .anxs-8qwe-small-rt{float:right;}.anxs-8qwe-footer .anxs-8qwe-small a{white-space:nowrap;color:#323232;font-size:13px;font-weight:700;text-decoration:none;vertical-align:top;}.anxs-8qwe-footer .anxs-8qwe-small .anxs-8qwe-small-lt a{margin-right:112px; font-size: 15px; line-height: 15px} .anxs-8qwe-small-lt a:last-child{margin-right:0;} .anxs-8qwe-footer .anxs-8qwe-small .anxs-8qwe-small-rt a:first-child+a{margin:0 4px;}.anxs-8qwe-footer .anxs-8qwe-footLt .anxs-8qwe-copy,.anxs-8qwe-footer .anxs-8qwe-footLt .anxs-8qwe-copy_middle{color:#666666;overflow:hidden;float:left;}.anxs-8qwe-footer .anxs-8qwe-footLt .anxs-8qwe-copy a,.anxs-8qwe-footer .anxs-8qwe-footLt .anxs-8qwe-copy_middle a{color:#666666;text-decoration:none;}.anxs-8qwe-footer .anxs-8qwe-footLt .anxs-8qwe-copy .anxs-lt,.anxs-8qwe-footer .anxs-8qwe-footLt .anxs-8qwe-copy_middle .anxs-rt{margin-bottom:16px;}.anxs-8qwe-footer .anxs-8qwe-footLt .anxs-8qwe-copy{width: 646px; font-size: 13px;line-height: 13px}.anxs-8qwe-footer .anxs-8qwe-footLt .anxs-8qwe-copy_middle{width:462px;font-size: 13px;line-height: 13px}.anxs-8qwe-footer .anxs-8qwe-footRt{color:#65686f;font-size:15px;float:left;margin-top:-7px;}.anxs-8qwe-onlineService{cursor: pointer;} .anxs-8qwe-footer .anxs-8qwe-footRt .anxs-8qwe-footRt-top{background:0 0;margin-bottom: 5px;}.anxs-8qwe-footer .anxs-8qwe-footRt .anxs-8qwe-footRt-top .anxs-8qwe-icon{width:32px;height:34px;display:inline-block;background:url(https://cdn.login.wanfangdata.com.cn/Content/src/img/me-global.png) no-repeat;background-position:-256px -75px;vertical-align:middle}.anxs-8qwe-footer .anxs-8qwe-footRt .anxs-8qwe-footRt-contactus li{margin-bottom:6px}.anxs-8qwe-footer .anxs-8qwe-footRt .anxs-8qwe-footRt-contactus li a{cursor:pointer;color:#65686f;text-decoration:none}.anxs-8qwe-footer .anxs-8qwe-footRt .anxs-8qwe-footRt-contactus li i{background:url(https://cdn.login.wanfangdata.com.cn/Content/src/img/icon-contactus.png) no-repeat;display:inline-block;height:20px;width:20px;vertical-align:top;margin:2px 12px 0 0}.anxs-8qwe-footer .anxs-8qwe-footRt .anxs-8qwe-footRt-contactus li .anxs-8qwe-footRt-online{background-position:0 0}.anxs-8qwe-footer .anxs-8qwe-footRt .anxs-8qwe-footRt-contactus li .anxs-8qwe-footRt-tel{background-position:0 -20px;}@media(max-width:1200px){.anxs-8qwe-footer{width:1200px;}}
@media screen and (max-width: 1440px){
body .anxs-8qwe-footer .anxs-8qwe-footLt .anxs-8qwe-copy{
width: 550px!important;
}
body .anxs-8qwe-footer .anxs-8qwe-footLt .anxs-8qwe-copy_middle {
width: 343px!important;
}
}
.character-list{display: inline-flex;}
</style>
<div class="anxs-8qwe-footer">
<div class="anxs-8qwe-footer-wrapper clear">
<div class="anxs-8qwe-small clear">
<div class="anxs-8qwe-small-lt">
<a target="_blank" href="https://www.wanfangdata.com.cn/link/platformProducts.do">帮助</a>
<a target="_blank" href="https://www.wanfangdata.com.cn/link/customerService.do">客户服务</a>
<a target="_blank" href="https://www.wjx.top/jq/23244564.aspx">问卷调查</a>
<a target="_blank" href="https://www.wanfangdata.com.cn/link/index.do">关于我们</a>
<a target="_blank" href="http://www.wanfang.com.cn">公司首页</a>
<a target="_blank" href="http://weibo.com/wanfangdata">平台微博</a>
<a target="_blank" href="https://app.mokahr.com/apply/wanfangdata/21976">加入我们</a>
<a target="_blank" href="https://www.wanfangdata.com.cn/link/siteMap.do">网站地图</a>
<a target="_blank" style="margin-right: 0" href="https://login.wanfangdata.com.cn/notice/shop">官方店铺</a>
</div>
</div>
<div class="anxs-8qwe-footLt clear">
<div class="anxs-8qwe-copy">
<div class="anxs-lt"><a target="_blank" href="https://ad.wanfangdata.com.cn/images/hlwcb.jpg">网络出版服务许可证:(总)网出证(京)字096号</a></div>
<div class="anxs-lt"><a target="_blank" href="https://ad.wanfangdata.com.cn/images/zhengshu_2.jpg">互联网药品信息服务资格证书号:(京)-经营性-2016-0015</a></div>
<div class="anxs-lt"><a target="_blank" href="https://ad.wanfangdata.com.cn/images/stjmxkz2.jpg">信息网络传播视听节目许可证 许可证号:0108284</a></div>
<div class="anxs-lt">万方数据知识服务平台--国家科技支撑计划资助项目(编号:2006BAH03B01)</div>
<div class="anxs-lt"><a target="_blank" href="https://ad.wanfangdata.com.cn/images/wfdatazs.jpg">万方数据学术资源发现服务系统[简称:万方智搜]V1.0 证书号:软著登字第2255655号</a></div>
</div>
<div class="anxs-8qwe-copy_middle">
<div class="anxs-rt"><a target="_blank" href="https://ad.wanfangdata.com.cn/images/icp.jpg">京ICP证:010071</a></div>
<div class="anxs-rt"><a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010802020237">京公网安备11010802020237号</a></div>
<div class="anxs-rt"><a target="_blank" href="https://beian.miit.gov.cn/">京ICP备08100800号-1</a></div>
<div class="anxs-rt">©北京万方数据股份有限公司 万方数据电子出版社</div>
</div>
<div class="anxs-8qwe-footRt">
<div class="anxs-8qwe-footRt-top">
<span class="anxs-8qwe-onlineService">在线客服</span>
</div>
<ul class="anxs-8qwe-footRt-contactus">
<li>客服电话:4000115888</li>
<li><a href="mailto:[email protected]">客服邮箱:[email protected]</a></li>
<li>违法和不良信息举报电话:4000115888</li>
<li>举报邮箱:[email protected]</li>
<li><a target="_blank" href="https://www.12377.cn/ ">举报专区:https://www.12377.cn/</a></li>
</ul>
</div>
</div>
</div>
</div>
<script>
NTKF_PARAM = {
siteid: 'kf_9358', // 企业ID,为固定值,必填
settingid: 'kf_9358_1469523642099', // 接待组ID,为固定值,必填
uid: "", // 用户ID,未登录可以为空,但不能给null,uid赋予的值显示到小能客户端上
uname: "", // 用户名,未登录可以为空,但不能给null,uname赋予的值显示到小能客户端上
isvip: '0', // 是否为vip用户,0代表非会员,1代表会员,取值显示到小能客户端上
userlevel: '1', // 网站自定义会员级别,0-N,可根据选择判断,取值显示到小能客户端上
erpparam: 'abc' // erpparam为erp功能的扩展字段,可选,购买erp功能后用于erp功能集成
};
$('.anxs-8qwe-onlineService').click(function(){
onlineService();
});
function onlineService(){
$.ajax({
url:'https://login.wanfangdata.com.cn/user/getOnlineUser',
dataType: "jsonp",
jsonp: "callback",
success: function (data) {
window.NTKF_PARAM.uid = data.Id;
window.NTKF_PARAM.uname = data.Phone;
var protocol = "https:" == location.protocol ? "https://" : "http://";
$.get(protocol + 'dl.ntalker.com/js/xn6/ntkfstat.js?siteid=kf_9358', function () {
NTKF.im_openInPageChat('kf_9358_1469523642099');
}, 'script');
}
});
}
</script>
<!--建议-->
<style>
.clear{zoom: 1}
.clear:after{content: "";display: block;clear: both;visibility: hidden;height: 0}
.anxs-left-bom{left:auto;width: 60px;background: #ffffff;color: #fff;font-size: 12px;position: fixed;bottom: 25px;right: 0;font-family: 'Microsoft YaHei';z-index: 19;border: 1px solid #CEE4BB;border-bottom: none;box-shadow: 0px 2px 6px 0px rgba(35, 24, 21, 0.09);}
.anxs-left-bom-list{text-align: center;border-bottom: 1px solid #CEE4BB;height: 60px;border-top:0;cursor: pointer;position: relative;}
.anxs-left-bom-list a{color: #fff;text-decoration: none;padding: 16px 0 15px 0;display: inline-block;margin-left: 0;height: 29px;width: 60px;}
.anxs-left-bom-list a em{font-style:normal;color: #fff;-webkit-transition: left .3s ease-in-out .1s;-moz-transition: left .3s ease-in-out .1s;transition: left .3s ease-in-out .1s;display: none;line-height:28px;font-style:normal;}
.anxs-bom-icon-service{background: url(https://cdn.wanfangdata.com.cn/page/common/new/image/css_sprites_icon.png) -1px -150px;display: inline-block;width: 28px;height: 28px}
.anxs-left-bom-list a .anxs-bom-icon-circle{width: 28px;height: 29px;background-position: 0 -3px;margin-left:auto;}
.anxs-left-bom-list:hover, .anxs-left-bom-list2:hover{background:#81B951; border-bottom: 1px solid #fff;}
.anxs-left-bom-list2{text-align: center;border-bottom: 1px solid #CEE4BB;height: 60px;border-top:0;cursor: pointer;width:60px;position: relative;}
.anxs-left-bom-list2 a{color: #fff;text-decoration: none;padding: 16px 0 0px 0;display: inline-block;margin-left: 0;height: 29px;width: 60px;}
.anxs-left-bom-list2 a em{font-style:normal;color: #fff;font-weight: bold;-webkit-transition: left .3s ease-in-out .1s;-moz-transition: left .3s ease-in-out .1s;transition: left .3s ease-in-out .1s;display: none;line-height:28px;font-style:normal;}
.anxs-bom-icon-top{background: url(https://cdn.wanfangdata.com.cn/page/common/new/image/css_sprites_icon.png) -1px -95px;;display: inline-block;width: 24px;height:24px;}
.anxs-left-bom-list2 a .anxs-bom-icon-circle{width: 28px;height: 29px;background-position: 0 -3px;margin-left:auto;}
.anxs-left-bom-list2 a .anxs-bom-icon-service{width: 23px;height: 27px;background-position: 0 -130px;}
.anxs-left-bom-list2 a .anxs-bom-icon-top{width: 26px;height: 31px;background-position: 0 -171px;}
.anxs-left-bom-list2:hover .phone-p{color:#fff;}
.anxs-left-bom .description2{display:none;position:absolute;right:65px;width:60px;height:62px;}
.anxs-left-bom .description2 .message{position:absolute;right:8px;height: 195px;width:256px;background-color: #FFF;color:#417DC9;font-size:14px;line-height:35px;border-radius: 5px;padding:10px;z-index:100;padding-bottom:12px;top: -95px;}
.anxs-left-bom .description2 .arrow{position:absolute;top:12px;right:0;width:0;height:0;border-left:8px solid #FFF;border-top:5px solid transparent;border-bottom:5px solid transparent;}
.code-box{overflow:hidden;}
.border-line{border-bottom:1px solid #ddd;}
.code-box .code-img{float:left;width:80px;height:80px;margin:8px;}
.code-box .code-info{float:left;width:140px;margin-top:5px;line-height:25px;text-align:left;}
.code-box .code-info span{height:25px;line-height:25px;color:#333;font-weight:bold; }
.code-box .code-info .code-span{color:#ff6c00; font-weight: normal;}
.code-box .code-img2{width:20px;height:22px;margin-right:5px;position:relative;top:5px;}
.code-box .code-info .code-span2{color:#417dc9;display:block;text-align:left;height:25px;line-height:22px; font-weight: normal;}
.description2 .code-box a{width:240px;height:100px;display:block;padding-top:6px;}
#anxs-top{display:none;}
.anxs-left-bom .description .message{position:absolute;right:8px;height:35px;background-color: #FFF;color:#417DC9;font-size:14px;line-height:35px;border-radius: 5px;padding:0 10px;z-index:100;}
.anxs-left-bom .suggestionForm{position:absolute;right:80px;height:370px;bottom: 0;}
.anxs-left-bom .phone-box{top:0px;right:60px;padding-right: 5px;}
.anxs-left-bom .phone a p{ color: #6BA439;height: 25px; line-height: 25px; font-size: 14px;}
.anxs-left-bom .circle{top:15px;}
.anxs-left-bom em{font-style:normal;}
.app-setcards-box{ position: fixed; right: 0; bottom: 480px;width:60px;height: 44px;cursor: pointer;}
.app-setcards{display: none;}
.app-setcards-content{width:444px;height: 454px;background: url(https://cdn.login.wanfangdata.com.cn/Content/images/appbg.png) center center no-repeat;position: relative;}
.app-setcards-content .app-setcards-close{display: inline-block;width:50px;height: 50px;position:absolute;right: 42px;top:9px;border-radius: 50%;cursor: pointer; -webkit-border-radius:50%; }
.app-setcards-bg .layui-layer-content{background: none;}
.layui-layer.app-setcards-bg{background: none;box-shadow: none;}
.anxs-left-bom-list.topic .topictext{color: #417DC9;height: 25px;line-height: 25px;font-weight: bold;}
.anxs-left-bom-list.topic:hover .topictext{color:#fff; }
.anxs-left-bom-list3{text-align: center;border-bottom: 1px solid #CEE4BB;height: 60px; border-top: 0;cursor: pointer;width: 60px; position: relative;}
.anxs-left-bom-list3 a{width: 60px;height: 40px;padding: 10px 0;display: inline-flex;flex-wrap: wrap;justify-content: center;align-items: center;}
.anxs-left-bom-list3:hover{background:#81B951; border-bottom: 1px solid #fff;}
.anxs-left-bom-list3 .left-mall{ color:#81B951;}
.anxs-left-bom-list3 > a p {font-size: 12px; font-family: 微软雅黑;text-align: center;line-height: 18px;}
.anxs-left-bom-list3 :hover .left-mall{ color:#fff;}
@media screen and (max-width:1200px){
.anxs-left-bom {width: 50px;bottom:161px;}
.anxs-left-bom-list{height: 50px;}
.anxs-left-bom-list a{padding: 11px 0 15px 0;height: 24px;width: 50px;}
.anxs-left-bom-list a em{line-height:26px;}
.anxs-left-bom-list:hover{color:#fff;}
.anxs-left-bom .circle{top:9px;}
.app-setcards-box{bottom: 485px;}
}
</style>
<div class="anxs-left-bom">
<div class="anxs-left-bom-list3">
<a href="https://mall.jd.com/index-779622.html" target="_blank">
<span class="left-mall">检测查重</span>
<span class="left-mall">官方店铺</span>
</a>
</div>
<div class="anxs-left-bom-list2 phone">
<a href="javascript:">
<p class="phone-p">手机版</p>
</a>
<div class="description2 phone-box">
<div class="message">
<div class="code-box border-line">
<img src="https://cdn.login.wanfangdata.com.cn/Content/src/img/code-img_03.png" class="code-img" />
<p class="code-info">
<span>万方数据知识服务平台</span>
<span class="code-span">扫码关注微信公众号</span>
</p>
</div>
<div class="code-box">
<a href="https://www.wanfangdata.com.cn/app/app.html" target="_blank">
<img src="https://cdn.login.wanfangdata.com.cn/Content/src/img/code-img_07.png" class="code-img" />
<p class="code-info">
<span>万方数据APP</span>
<span class="code-span2"> <img src="https://cdn.login.wanfangdata.com.cn/Content/src/img/code-img_09.png" class="code-img2" /> Android 版</span>
<span class="code-span2"> <img src="https://cdn.login.wanfangdata.com.cn/Content/src/img/code-img_13.png" class="code-img2" /> Ios 版</span>
</p>
</a>
</div>
</div>
<div class="arrow"></div>
</div>
</div>
<div class="anxs-left-bom-list" id="anxs-btn-suggestionNew">
<a href="javascript:void(0)">
<i class="anxs-bom-icon-service"></i>
<em style="line-height: 14px;"><span>客服</span><br />
<span>服务</span></em>
</a>
</div>
<div class="suggestionForm" id="suggestionForm" style="display: none"></div>
<div class="anxs-left-bom-list" id="anxs-top" style="display: none;">
<a href="javascript:void(0);">
<i class="anxs-bom-icon-top"></i>
<em style="line-height:14px;"><span>回到</span><br />
<span>顶部</span></em>
</a>
</div>
</div>
<script>
//侧边栏列表鼠标悬浮效果
$(".anxs-left-bom-list2").hover(function () {
$(".description2").show();
}, function () {
$(".description2").hide();
});
$(".anxs-left-bom-list").hover(function () {
$(this).find("em").css("display", "inline-block");
$(this).find("i").css("display", "none");
$(this).children(".description").css("display","block");
},
function () {
$(this).find("em").css("display", "none");
$(this).find("i").css("display", "inline-block");
$(this).children(".description").css("display","none");
}
);
/*点击客服服务*/
var showSuggestionNew = true
$('#anxs-btn-suggestionNew').click(function () {
var content = $('#suggestionForm').html()
if(content.length === 0 && showSuggestionNew) {
$.ajax({
url:"https://my.wanfangdata.com.cn/user/suggestion/suggestionForm",
beforeSend:function() {
showSuggestionNew = false
},
success:function(result){
$('#suggestionForm').html(result);
showSuggestionNew = true
},
error:function(data){
showSuggestionNew = true
}
});
}
$('#suggestionForm').toggle();
});
function GetPageScroll() {
var x, y; if (window.pageYOffset) { // all except IE
y = window.pageYOffset;
x = window.pageXOffset;
} else if (document.documentElement && document.documentElement.scrollTop) { // IE 6 Strict
y = document.documentElement.scrollTop;
x = document.documentElement.scrollLeft;
} else if (document.body) { // all other IE
y = document.body.scrollTop;
x = document.body.scrollLeft;
}
/*return {X:x, Y:y};*/
return y;
}
setInterval(function () {
var suggest_arrow = $('#suggestionForm .suggest-arrow');
var scroTop = GetPageScroll();
function mop(str) {
return eval(str);
}
if ( scroTop > 1400) {
$('#anxs-top').show();
suggest_arrow.attr("style","top:215px!important");
}else if(scroTop <1400){
$('#anxs-top').hide();
suggest_arrow.attr("style","top:295px!important")
}
}, 40);
/*点击返回顶部*/
$("#anxs-top").click(function(){
$('body,html').animate({scrollTop:0},500);
})
</script>
<style>
.anxs-new-online-tips{
background:url("https://cdn.wanfangdata.com.cn/page/images/index-tipsBG.png");
opacity: 1;
}
</style>
<!-- 分享html -->
<div id="jiathis_weixin_modal_test"></div>
<iframe id="login" style="display: none;margin-left: -10px;margin-top: -100px;" src="" height="750px;" width="710px;" scrolling="no" frameborder="0"></iframe>
<script type="text/javascript">
Echo.init({
offset: 0,
throttle: 0
});
function getParam(paramName) {
paramValue = "", isFound = !1;
if (this.location.search.indexOf("?") == 0 && this.location.search.indexOf("=") > 1) {
arrSource = unescape(this.location.search).substring(1, this.location.search.length).split("&"), i = 0;
while (i < arrSource.length && !isFound) arrSource[i].indexOf("=") > 0 && arrSource[i].split("=")[0].toLowerCase() == paramName.toLowerCase() && (paramValue = arrSource[i].split("=")[1], isFound = !0), i++
}
return paramValue == "" && (paramValue = null), paramValue
}
</script></body></html>
|