zj
2024-06-03 65c203bea3b5cd4052f25ca2150b1152679f69e6
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
/*
        微信接口的个股新闻
*/
import $ from "jquery";
import axios from "axios";
import urlObj from "./urlObj.js";
 
function JSNewsResource() {
  this.Domain = "https://cfebb09f.zealink.com"; //API域名
  this.CacheDomain = "https://cfebb09fcache.zealink.com"; //缓存域名
}
 
var g_JSNewsResource = new JSNewsResource();
 
//新闻类型
var NEWS_TYPE = {
  STOCK_NEWS: 1, //个股新闻
  ANNOUNCEMENT_ANALYSE: 2, //公告解读
  STOCK_INTERACT: 3, //互动易
  MARKET_SEARCH: 4, //调研
  STOCK_NEGATIVE: 5, //负面新闻
  STOCK_REPORT: 6, //公告
  NEW_STOCK_NEGATIVE: 7, //新的负面新闻接口 NewsAllByES
  OFFICIAL_WEBSITE_NEWS: 8, //官网新闻
  SENIOR_EXECUTIVE_NEWS: 9, //高管新闻
  VIEWPOINTS_BY_VIP: 10, //大V观点新闻
  TOP_MANAGERS_RISK_NEWS: 11, //高管风险新闻
  FAILURE_REGROUP_NEWS: 12, //重组失败
  TOP_MANAGERS_RISK_LIST: 13, //高管风险类型新闻
  SEARCH_NOTICE: 14 //公告搜索(uts/服务/公告)
};
 
//调研
function MarketSearch(symbol) {
  this.newMethod = INewsBase; //派生
  this.newMethod(symbol);
  delete this.newMethod;
 
  this.Data = {
    Search: [],
    Aggregate: []
  };
 
  var date = new Date();
  this.EndDate =
    date.getFullYear() * 10000 + (date.getMonth() + 1) * 100 + date.getDate(); //获取结束时间
  this.StartDate =
    (date.getFullYear() - 1) * 10000 +
    (date.getMonth() + 1) * 100 +
    date.getDate();
 
  this.ApiUrl = g_JSNewsResource.Domain + "/API/InvestorRelationsList";
  this.SearchKey = null;
 
  //获取第1页
  this.GetFirstPage = function() {
    var self = this;
    //清空数据
    this.Data = {
      Search: [],
      Aggregate: []
    };
    this.Count = 0;
    this.CacheCount = 0;
 
    if (typeof this.Symbol == "string") {
      var data = {
        symbol: [this.Symbol],
        filed: [
          "name",
          "symbol",
          "releasedate",
          "title",
          "id",
          "researchdate",
          "level",
          "type",
          "researcher"
        ],
        querydate: {
          StartDate: this.StartDate,
          EndDate: this.EndDate
        },
        calccount: 1,
        start: 0,
        end: this.PageSize,
        userid: "qiuyh"
      };
    } else {
      var data = {
        symbol: this.Symbol,
        filed: [
          "name",
          "symbol",
          "releasedate",
          "title",
          "id",
          "researchdate",
          "level",
          "type",
          "researcher"
        ],
        querydate: {
          StartDate: this.StartDate,
          EndDate: this.EndDate
        },
        search: this.SearchKey,
        calccount: 1,
        start: 0,
        end: this.PageSize,
        userid: "qiuyh",
        aggregate: this.Aggregate
      };
    }
    $.ajax({
      url: this.ApiUrl,
      data: data,
      method: "POST",
      dataType: "json",
      success: function(data) {
        self.RecvData(data);
      },
      fail: function(request) {
        self.RecvError(request);
      }
    });
  };
 
  this.RecvData = function(recvData) {
    // console.log("调研", recvData)
    var data = recvData;
    if (this.Count <= 0) this.Count = data.count;
 
    var info = {};
    info.Start = this.Data.length;
    info.End = this.Data.length;
 
    if (data.aggregate) {
      for (var i in data.aggregate) {
        this.Data.Aggregate.push({
          Name: data.aggregate[i].value2,
          Symbol: data.aggregate[i].value,
          Count: data.aggregate[i].count
        });
      }
      // this.Data.Aggregate = data.aggregate;
    }
 
    for (var i in data.list) {
      var item = data.list[i];
      this.Data.Search.push({
        ID: item.id,
        Name: item.name,
        Symbol: item.symbol,
        Releasedate: item.releasedate,
        Researchdate: item.researchdate,
        Title: item.title,
        Type: item.type,
        Researcher: item.researcher,
        Level: item.level
      });
      if (i > 0) ++info.End;
    }
 
    this.CacheCount = this.Data.Search.length;
    this.InvokeCallback(info); //通知页面
  };
 
  this.RecvError = function(request) {
    console.log("[StockInteract::RecvError] ", request);
  };
 
  this.InvokeCallback = function() {
    if (typeof this.Callback != "function") return;
 
    var info = {};
    this.Callback(info, this);
  };
 
  //下拉获取下一页
  this.GetNextPage = function() {
    var self = this;
 
    var start = this.Data.Search.length;
    var end = start + this.PageSize;
 
    var data = {
      symbol: [this.Symbol],
      filed: [
        "name",
        "symbol",
        "releasedate",
        "title",
        "id",
        "researchdate",
        "level",
        "type",
        "researcher"
      ],
      querydate: {
        StartDate: this.StartDate,
        EndDate: this.EndDate
      },
      calccount: 1,
      start: start,
      end: end,
      userid: "qiuyh"
    };
 
    var start = this.Data.Search.length;
    var end = start + this.PageSize;
 
    if (typeof this.Symbol == "string") {
      var data = {
        symbol: [this.Symbol],
        filed: [
          "name",
          "symbol",
          "releasedate",
          "title",
          "id",
          "researchdate",
          "level",
          "type",
          "researcher"
        ],
        querydate: {
          StartDate: this.StartDate,
          EndDate: this.EndDate
        },
        calccount: 1,
        start: start,
        end: end,
        userid: "qiuyh"
      };
    } else {
      var data = {
        symbol: this.Symbol,
        filed: [
          "name",
          "symbol",
          "releasedate",
          "title",
          "id",
          "researchdate",
          "level",
          "type",
          "researcher"
        ],
        querydate: {
          StartDate: this.StartDate,
          EndDate: this.EndDate
        },
        search: this.SearchKey,
        calccount: 1,
        start: start,
        end: end,
        userid: "qiuyh",
        aggregate: this.Aggregate
      };
    }
    if (this.Data.Search.length < this.Count) {
      $.ajax({
        url: this.ApiUrl,
        data: data,
        method: "POST",
        dataType: "json",
        success: function(data) {
          self.RecvData(data);
        },
        error: function(request) {
          this.RecvError(request);
        }
      });
    } else {
    }
  };
}
 
//新闻资讯基类
function INewsBase(symbol) {
  this.Symbol = symbol; //股票代码
  this.Name; //股票名称
  this.Callback; //回调 function(info,news) info: {Start:请求的新闻起始位置 , End:新闻的结束位置 } , news 对应的 新闻类
 
  this.Data = new Array(); //新闻数据  { Date:日期, Title:标题 , Source:来源, ID:新闻ID}
  this.Count; //一共的新闻个数
  this.CacheCount; //已下载的新闻个数
  this.PageSize = 10; //每页的新闻个数
  this.ApiUrl; //数据请求地址
 
  this.StartDate; //开始时间
  this.EndDate; //结束时间
 
  this.Aggregate = 10; //统计排名
 
  //设置默认的查询区间
  this.SetDefautQueryDate = function() {
    // 取最近1年的数据
    let date = new Date();
    this.StartDate =
      (date.getFullYear() - 1) * 10000 +
      (date.getMonth() + 1) * 100 +
      date.getDate();
    this.EndDate =
      date.getFullYear() * 10000 + (date.getMonth() + 1) * 100 + date.getDate();
  };
 
  //把查询的股票统一转化为数组
  this.GetQuerySymbol = function() {
    let arySymbol = new Array();
    if (typeof this.Symbol == "string") arySymbol.push(this.Symbol);
    //单个股票
    else arySymbol = this.Symbol.slice(0);
 
    return arySymbol;
  };
 
  //是否是最后一页
  this.IsEndPage = function() {
    if (this.Count == null || this.Count <= 0) return true;
 
    return this.CacheCount >= this.Count;
  };
 
  //获取第1页
  this.GetFirstPage = function() {};
 
  //下拉获取下一页
  this.GetNextPage = function() {};
}
 
//新闻详情基类
function INewsContent(id) {
  this.ID = id; //新闻id
  this.Symbol; //股票代码
  this.Name; //股票名称
  this.ApiUrl;
  this.Callback; //回调 function(this)
  this.Data; //数据 { Symbol:代码, Name:名称, Title:标题, Content:内容, Date:日期 .....}
  this.Error; //如果调用失败 把错误信息写这里
 
  this.GetContent = function() {};
}
 
var RECV_DATA_TYPE = {
  NEWS_DATA: 1 //个股新闻数据
};
 
//个股新闻
function StockNews(symbol) {
  this.newMethod = INewsBase; //派生
  this.newMethod(symbol);
  delete this.newMethod;
 
  var date = new Date();
  this.EndDate =
    date.getFullYear() * 10000 + (date.getMonth() + 1) * 100 + date.getDate(); //获取结束时间
  this.StartDate =
    (date.getFullYear() - 1) * 10000 +
    (date.getMonth() + 1) * 100 +
    date.getDate();
 
  this.ApiUrl = g_JSNewsResource.Domain + "/API/NewsStockList";
 
  var self = this;
 
  //获取第1页
  this.GetFirstPage = function() {
    //清空数据
    this.Data = [];
    this.Count = 0;
    this.CacheCount = 0;
 
    $.ajax({
      url: this.ApiUrl,
      data: {
        symbol: [this.Symbol],
        filed: ["name", "symbol", "releasedate", "title", "id", "source"],
        querydate: { StartDate: this.StartDate, EndDate: this.EndDate },
        search: null,
        calccount: -1,
        start: 0,
        end: 10,
        userid: null
      },
      method: "POST",
      dataType: "json",
      success: function(data) {
        self.RecvData(data);
      },
      error: function(request) {
        this.RecvError(request);
      }
    });
  };
 
  this.RecvData = function(data) {
    if (this.Count <= 0) this.Count = data.count;
 
    var info = {};
    info.Start = this.Data.length;
    info.End = this.Data.length;
 
    var list = data.list;
    for (var i in list) {
      var item = list[i];
      this.Data.push({
        ID: item.id,
        Name: item.name,
        Releasedate: item.releasedate,
        Source: item.source,
        Symbol: item.symbol,
        Title: item.title
      });
      if (i > 0) ++info.End;
    }
 
    this.CacheCount = this.Data.length;
    this.InvokeCallback(info); //通知页面
  };
 
  this.RecvError = function(request) {
    console.log("[StockInteract::RecvError] ", request);
  };
 
  this.InvokeCallback = function() {
    if (typeof this.Callback != "function") return;
 
    var info = {};
    this.Callback(info, this);
  };
 
  //下拉获取下一页
  this.GetNextPage = function() {
    var self = this;
 
    var start = this.Data.length;
    var end = start + this.PageSize;
 
    if (start <= this.Count) {
      $.ajax({
        url: this.ApiUrl,
        data: {
          symbol: [this.Symbol],
          filed: ["name", "symbol", "releasedate", "title", "id", "source"],
          querydate: { StartDate: this.StartDate, EndDate: this.EndDate },
          search: null,
          calccount: -1,
          start: start,
          end: end,
          userid: null
        },
        method: "POST",
        dataType: "json",
        success: function(data) {
          self.RecvData(data);
        },
        error: function(request) {
          self.RecvError(request);
        }
      });
    } else {
      alert("数据已全部加载!");
    }
  };
}
 
//公告新闻
function StockReport(symbol) {
  this.newMethod = INewsBase; //派生
  this.newMethod(symbol);
  delete this.newMethod;
 
  this.ApiUrl = g_JSNewsResource.Domain + "/API/ReportListByES"; //走公司内网查询接口
  this.ReportType = []; //公告类型数组
 
  //获取第1页
  this.GetFirstPage = function() {
    //清空数据
    this.Data = [];
    this.Count = 0;
    this.CacheCount = 0;
 
    var self = this;
    let arySymbol = this.GetQuerySymbol();
    if (!this.StartDate || !this.EndDate) this.SetDefautQueryDate();
    let reportType = null;
    if (this.ReportType && this.ReportType.length > 0)
      reportType = this.ReportType[0]; //暂时只支持1个类型
 
    $.ajax({
      url: this.ApiUrl,
      data: {
        symbol: arySymbol,
        filed: ["symbol", "name", "releasedate", "title", "id", "source"],
        querydate: { startDate: this.StartDate, endDate: this.EndDate },
        search: null,
        calccount: 1, //返回一共的数据个数
        start: 0,
        end: this.PageSize,
        userid: null,
        type: reportType
      },
      method: "POST",
      dataType: "json",
      success: function(data) {
        self.RecvData(data);
      },
      error: function(request) {
        self.RecvError(request);
      }
    });
  };
 
  this.RecvData = function(recvData) {
    var data = recvData;
    if (this.Count <= 0) this.Count = data.count; //一共的新闻个数
 
    var info = {};
    info.Start = this.Data.length;
    info.End = this.Data.length;
 
    for (let i in data.report) {
      let item = data.report[i];
      this.Data.push({
        Name: item.name,
        Symbol: item.symbol,
        ID: item.id,
        Data:
          item.releasedate.substring(0, 4) +
          "-" +
          item.releasedate.substring(4, 6) +
          "-" +
          item.releasedate.substring(6, 8),
        Title: item.title,
        Source: item.source,
        Type: item.type,
        Showurl: item.showurl
      });
 
      if (i > 0) ++info.End;
    }
 
    this.CacheCount = this.Data.length;
    // this.InvokeCallback(info);
    this.InvokeCallback(this.Data);
  };
 
  this.RecvError = function(request) {
    console.log("[StockReport::RecvError] ", request);
  };
 
  this.InvokeCallback = function(info) {
    if (typeof this.Callback != "function") return;
 
    this.Callback(info, this);
  };
 
  //下拉获取下一页
  this.GetNextPage = function() {
    var self = this;
    let arySymbol = this.GetQuerySymbol();
    if (!this.StartDate || !this.EndDate) this.SetDefautQueryDate();
 
    var start = this.Data.length;
    var end = start + this.PageSize;
    $.ajax({
      url: this.ApiUrl,
      data: {
        symbol: arySymbol,
        filed: ["symbol", "name", "releasedate", "title", "id", "source"],
        querydate: { startDate: self.StartDate, endDate: self.EndDate },
        search: null,
        calccount: 0, //下页页不需要统计个数了
        start: start,
        end: end,
        userid: null
      },
      method: "POST",
      dataType: "json",
      success: function(data) {
        self.RecvData(data);
      },
      error: function(request) {
        self.RecvError(request);
      }
    });
  };
}
 
//个股公告分析
function AnnouncementAnalyse(symbol) {
  this.newMethod = INewsBase; //派生
  this.newMethod(symbol);
  delete this.newMethod;
 
  this.ApiUrl = g_JSNewsResource.Domain + "/API/AnnualReportAllType";
  this.Error = null;
 
  this.GetFirstPage = function() {
    this.Error = null; //清空错误信息
    this.Data = [];
    this.Name = null;
 
    var self = this;
    var date = new Date();
 
    // 取最近3年的数据
    var start =
      (date.getFullYear() - 3) * 10000 +
      (date.getMonth() + 1) * 100 +
      date.getDate();
    var end =
      date.getFullYear() * 10000 + (date.getMonth() + 1) * 100 + date.getDate();
 
    $.ajax({
      url: this.ApiUrl,
      data: {
        symbol: this.Symbol,
        querydate: { StartDate: start, EndDate: end }
      },
      method: "POST",
      dataType: "json",
      success: function(data) {
        self.RecvData(data);
      },
      error: function(request) {
        self.RecvError(request);
      }
    });
  };
 
  this.RecvData = function(data) {
    if (data.list == null) return this.InvokeCallback();
 
    for (var i in data.list) {
      var item = data.list[i];
      if (item == null || item.info == null || item.info.length <= 0) continue;
 
      var analyseData = {
        Name: item.typename,
        Data: new Array()
      };
 
      for (var j in item.info) {
        var subItem = item.info[j];
        analyseData.Data.push({
          Date: subItem.date,
          Content: subItem.abstract
        });
 
        if (this.Name == null) this.Name = subItem.name;
      }
 
      this.Data.push(analyseData);
    }
 
    this.InvokeCallback(); //通知页面
  };
 
  this.RecvError = function(request) {
    console.log("[AnnouncementAnalyse:RecvError] ", "request");
    this.Error = "请求失败";
  };
 
  this.InvokeCallback = function() {
    if (typeof this.Callback != "function") return;
 
    var info = {};
    this.Callback(info, this);
  };
}
 
//互动易
function StockInteract(symbol) {
  this.newMethod = INewsBase; //派生
  this.newMethod(symbol);
  delete this.newMethod;
 
  this.ApiUrl = g_JSNewsResource.Domain + "/API/NewsInteract";
  this.Data = {
    News: [],
    Aggregate: []
  };
  this.SearchKey = "";
  this.userid = null;
 
  //获取第1页
  this.GetFirstPage = function() {
    //清空数据
    this.Data = {
      News: [],
      Aggregate: []
    };
    this.Count = 0;
    this.CacheCount = 0;
 
    var self = this;
    // 取最近1年的数据
    // var date = new Date();
    // var startDate = (date.getFullYear()-1) * 10000 + (date.getMonth() + 1) * 100 + date.getDate();
    // var endDate = date.getFullYear() * 10000 + (date.getMonth() + 1) * 100 + date.getDate();
    if (typeof this.Symbol == "string") {
      var data = {
        symbol: [this.Symbol],
        filed: [
          "symbol",
          "questioner",
          "question",
          "questondate",
          "answerer",
          "answer",
          "answerdate",
          "id"
        ],
        // "querydate": {"StartDate": startDate, "EndDate": endDate},
        querydate: {
          StartDate: this.StartDate,
          EndDate: this.EndDate
        },
        search: this.SearchKey,
        calccount: 1, //返回一共的数据个数
        start: 0,
        end: this.PageSize,
        userid: this.userid
      };
    } else {
      var data = {
        symbol: this.Symbol,
        filed: [
          "symbol",
          "questioner",
          "question",
          "questondate",
          "answerer",
          "answer",
          "answerdate",
          "id"
        ],
        // "querydate": {"StartDate": startDate, "EndDate": endDate},
        querydate: {
          StartDate: this.StartDate,
          EndDate: this.EndDate
        },
        search: this.SearchKey,
        calccount: 1, //返回一共的数据个数
        start: 0,
        end: this.PageSize,
        userid: this.userid,
        aggregate: this.Aggregate
      };
    }
 
    $.ajax({
      url: this.ApiUrl,
      data: data,
      method: "POST",
      dataType: "json",
      success: function(data) {
        self.RecvData(data);
      },
      error: function(request) {
        self.RecvError(request);
      }
    });
  };
 
  this.RecvData = function(data) {
    console.log(data, "datadatadata:::::::");
    if (this.Count <= 0) this.Count = data.count; //一共的新闻个数
 
    var info = {};
    info.Start = this.Data.length;
    info.End = this.Data.length;
 
    if (data.aggregate) {
      for (var i in data.aggregate) {
        this.Data.Aggregate.push({
          Name: data.aggregate[i].value2,
          Symbol: data.aggregate[i].value,
          Count: data.aggregate[i].count
        });
      }
      // this.Data.Aggregate = data.aggregate;
    }
 
    for (var i in data.list) {
      var item = data.list[i];
      this.Data.News.push({
        ID: item.id,
        Data: item.questondate,
        Title: item.question,
        Author: item.questioner,
 
        Data2: item.answerdate,
        Author2: item.answerer,
        Content: item.answer,
        Symbol: item.symbol
      });
 
      if (i > 0) ++info.End;
    }
 
    this.CacheCount = this.Data.length;
    this.InvokeCallback(info);
  };
 
  this.RecvError = function(request) {
    console.log("[StockInteract::RecvError] ", request);
  };
 
  this.InvokeCallback = function(info) {
    if (typeof this.Callback != "function") return;
 
    this.Callback(info, this);
  };
 
  //下拉获取下一页
  this.GetNextPage = function() {
    var self = this;
 
    var start = this.Data.News.length;
    var end = start + this.PageSize;
    if (typeof this.Symbol == "string") {
      var data = {
        symbol: [this.Symbol],
        filed: [
          "symbol",
          "questioner",
          "question",
          "questondate",
          "answerer",
          "answer",
          "answerdate",
          "id"
        ],
        // "querydate": {"StartDate": startDate, "EndDate": endDate},
        querydate: {
          StartDate: this.StartDate,
          EndDate: this.EndDate
        },
        search: this.SearchKey,
        calccount: 1, //返回一共的数据个数
        start: start,
        end: end,
        userid: this.userid
      };
    } else {
      var data = {
        symbol: this.Symbol,
        filed: [
          "symbol",
          "questioner",
          "question",
          "questondate",
          "answerer",
          "answer",
          "answerdate",
          "id"
        ],
        // "querydate": {"StartDate": startDate, "EndDate": endDate},
        querydate: {
          StartDate: this.StartDate,
          EndDate: this.EndDate
        },
        search: this.SearchKey,
        calccount: 1, //返回一共的数据个数
        start: start,
        end: end,
        userid: this.userid,
        aggregate: this.Aggregate
      };
    }
    if (this.Count > this.Data.News.length) {
      $.ajax({
        url: this.ApiUrl,
        data: data,
        method: "POST",
        dataType: "json",
        success: function(data) {
          self.RecvData(data);
        },
        error: function(request) {
          self.RecvError(request);
        }
      });
    }
  };
 
  //模块搜索
  this.ModuleSearch = function(search) {
    var self = this;
 
    //清空数据
    this.Data = {
      News: [],
      Aggregate: []
    };
    this.Count = 0;
    this.CacheCount = 0;
    // // 取最近1年的数据
    // var date = new Date();
    // var startDate = (date.getFullYear()) * 10000 + (date.getMonth() - 2) * 100 + date.getDate();
    // var endDate = date.getFullYear() * 10000 + (date.getMonth() + 1) * 100 + date.getDate();
 
    if (this.Symbol == null) {
      var data = {
        symbol: [],
        filed: [
          "symbol",
          "questioner",
          "question",
          "questondate",
          "answerer",
          "answer",
          "answerdate",
          "id"
        ],
        // "querydate": {"StartDate": startDate, "EndDate": endDate},
        querydate: {
          StartDate: this.StartDate,
          EndDate: this.EndDate
        },
        search: search,
        calccount: 1, //返回一共的数据个数
        start: 0,
        end: this.PageSize,
        userid: this.userid,
        aggregate: this.Aggregate
      };
    } else {
      var data = {
        symbol: [this.Symbol],
        filed: [
          "symbol",
          "questioner",
          "question",
          "questondate",
          "answerer",
          "answer",
          "answerdate",
          "id"
        ],
        // "querydate": {"StartDate": startDate, "EndDate": endDate},
        querydate: {
          StartDate: this.StartDate,
          EndDate: this.EndDate
        },
        search: search,
        calccount: 1, //返回一共的数据个数
        start: 0,
        end: this.PageSize,
        userid: this.userid
      };
    }
 
    $.ajax({
      url: this.ApiUrl,
      data: data,
      method: "POST",
      dataType: "json",
      success: function(data) {
        self.RecvData(data);
      },
      error: function(request) {
        self.RecvError(request);
      }
    });
  };
 
  //模块搜索获取下一页
  this.ModuleGetNextPage = function(search) {
    var self = this;
    // 取最近1年的数据
    // var date = new Date();
    // var startDate = (date.getFullYear()) * 10000 + (date.getMonth() - 2) * 100 + date.getDate();
    // var endDate = date.getFullYear() * 10000 + (date.getMonth() + 1) * 100 + date.getDate();
 
    var start = this.Data.News.length;
    var end = start + this.PageSize;
 
    if (this.Symbol == null) {
      var data = {
        symbol: [],
        filed: [
          "symbol",
          "questioner",
          "question",
          "questondate",
          "answerer",
          "answer",
          "answerdate",
          "id"
        ],
        // "querydate": {"StartDate": startDate, "EndDate": endDate},
        querydate: {
          StartDate: this.StartDate,
          EndDate: this.EndDate
        },
        search: search,
        calccount: 1, //返回一共的数据个数
        start: start,
        end: end,
        userid: this.userid
      };
    } else {
      var data = {
        symbol: [this.Symbol],
        filed: [
          "symbol",
          "questioner",
          "question",
          "questondate",
          "answerer",
          "answer",
          "answerdate",
          "id"
        ],
        // "querydate": {"StartDate": startDate, "EndDate": endDate},
        querydate: {
          StartDate: this.StartDate,
          EndDate: this.EndDate
        },
        search: search,
        calccount: 1, //返回一共的数据个数
        start: start,
        end: end,
        userid: this.userid
      };
    }
 
    $.ajax({
      url: this.ApiUrl,
      data: data,
      method: "POST",
      dataType: "json",
      success: function(data) {
        self.RecvData(data);
      },
      error: function(request) {
        self.RecvError(request);
      }
    });
  };
}
 
// 公告搜索
function SearchNotice(symbol) {
  this.newMethod = INewsBase; //派生
  this.newMethod(symbol);
  delete this.newMethod;
 
  this.ApiUrl = g_JSNewsResource.Domain + "/API/reportStockList"; // g_JSNewsResource.Domain + '/API/reportStockList' ;   'http://web7.umydata.com/API/reportStockList'
  this.PageIndex = 0;
  this.SearchKey = "";
  this.userid = "";
  this.Aggregate = [];
  this.GetFirstPage = function() {
    //清空数据
    this.Data = [];
    this.Count = 0;
    this.CacheCount = 0;
 
    var self = this;
    if (!this.StartDate || !this.EndDate) this.SetDefautQueryDate();
 
    $.ajax({
      url: this.ApiUrl,
      data: {
        symbol: this.symbol,
        filed: ["name", "symbol", "releasedate", "title", "id"],
        querydate: {
          StartDate: this.StartDate,
          EndDate: this.EndDate
        },
        calccount: 1,
        start: this.PageSize * this.PageIndex,
        end: this.PageSize * (this.PageIndex + 1),
        search: this.SearchKey,
        userid: this.userid,
        aggregate: 10
      },
      method: "POST",
      dataType: "json",
      success: function(data) {
        self.RecvData(data);
      },
      error: function(request) {
        self.RecvError(request);
      }
    });
  };
 
  this.RecvData = function(recvData) {
    // console.log(recvData.data.list,"前");
    let data = recvData,
      aggregate = data.aggregate,
      formatData = data.report.map(e =>
        Object.assign(e, {
          showurl: e.showurl
            ? e.showurl.replace(
                "http://rpt.zealink.com",
                "https://reporth5.zealink.com"
              )
            : "",
          releasedate:
            e.releasedate.substring(0, 4) +
            "-" +
            e.releasedate.substring(4, 6) +
            "-" +
            e.releasedate.substring(6, 8)
        })
      );
    // console.log(formatData, "后");
    if (this.Count <= 0) this.Count = data.count; //一共的新闻个数
 
    if (aggregate) {
      for (let i in aggregate) {
        this.Aggregate.push({
          Name: aggregate[i].value2,
          Symbol: aggregate[i].value,
          Count: aggregate[i].count
        });
      }
    }
 
    this.Data = this.Data.concat(formatData);
    this.CacheCount = this.Data.length;
    if (this.Callback) this.Callback(this);
  };
 
  this.RecvError = function(request) {
    console.log("[StockReport::RecvError] ", request);
  };
 
  this.GetNextPage = function() {
    this.PageIndex++;
    var self = this;
    if (!this.StartDate || !this.EndDate) this.SetDefautQueryDate();
 
    var pages = this.Count / this.PageSize,
      totalPages =
        this.Count % this.PageSize > 0
          ? Math.floor(pages) + 1
          : Math.floor(pages);
    if (this.PageIndex <= totalPages) {
      $.ajax({
        url: this.ApiUrl,
        data: {
          symbol: this.symbol,
          filed: ["name", "symbol", "releasedate", "title", "id"],
          querydate: {
            StartDate: this.StartDate,
            EndDate: this.EndDate
          },
          calccount: 1,
          start: this.PageSize * this.PageIndex,
          end: this.PageSize * (this.PageIndex + 1),
          search: this.SearchKey,
          userid: this.userid,
          aggregate: 10
        },
        method: "POST",
        dataType: "json",
        success: function(data) {
          self.RecvData(data);
        },
        error: function(request) {
          self.RecvError(request);
        }
      });
    } else {
    }
  };
}
 
//新闻详情
function StockNewsContent(id) {
  this.newMethod = INewsContent; //派生
  this.newMethod(id);
  delete this.newMethod;
 
  this.ApiUrl = g_JSNewsResource.Domain + "/API/NewsStockDetail2";
 
  this.GetContent = function() {
    var self = this;
    //清空数据
    this.Name = null;
    this.Error = null;
    this.Data = null;
 
    $.ajax({
      url: this.ApiUrl,
      data: {
        userid: null,
        id: this.ID,
        symbol: this.Symbol,
        filed: [
          "name",
          "symbol",
          "releasedate",
          "title",
          "id",
          "content",
          "link",
          "source"
        ]
      },
      method: "POST",
      dataType: "json",
      success: function(data) {
        self.RecvData(data);
      },
      error: function(request) {
        self.RecvError(request);
      }
    });
  };
 
  this.RecvData = function(data) {
    var detail = data.detail;
    if (detail == null) return this.InvokeCallback();
 
    //把API数据格式 转换成自己的对外的统一格式,
    this.Data = {};
    this.Data.Date = detail.releasedate;
    this.Data.Content = detail.content;
    this.Data.Title = detail.title;
    this.Data.Source = detail.source;
 
    //新闻关联的其他股票列表
    var relation = new Array();
    for (var i in data.stocklist) {
      var item = data.stocklist[i];
      relation.push({ Symbol: item.symbol, Name: item.name });
    }
    this.Data.Relation = relation;
 
    this.Name = detail.name;
 
    this.InvokeCallback();
  };
 
  this.RecvError = function(reqeust) {
    this.Error = "请求失败";
    this.InvokeCallback();
  };
 
  this.InvokeCallback = function() {
    if (typeof this.Callback != "function") return;
 
    this.Callback(this);
  };
}
 
//调研详情
function marketSearchInfo(id) {
  this.newMethod = INewsContent; //派生
  this.newMethod(id);
  delete this.newMethod;
 
  this.ApiUrl = g_JSNewsResource.Domain + "/API/InvestorRelationsDetail";
 
  this.GetContent = function() {
    var self = this;
    //清空数据
    this.Name = null;
    this.Error = null;
    this.Data = null;
 
    $.ajax({
      url: this.ApiUrl,
      data: {
        userid: null,
        id: this.ID,
        filed: [
          "name",
          "symbol",
          "releasedate",
          "id",
          "content",
          "level",
          "researchdate",
          "type",
          "researcher"
        ]
      },
      method: "POST",
      dataType: "json",
      success: function(data) {
        self.RecvData(data);
      },
      error: function(request) {
        self.RecvError(request);
      }
    });
  };
 
  this.RecvData = function(recvData) {
    // console.log("[StockNewsContent::RecvData] ",recvData);
    // var data = recvData.data;
    var detail = recvData.list[0];
    if (detail == null) return this.InvokeCallback();
    //把API数据格式 转换成自己的对外的统一格式,
    this.Data = {};
    this.Data.Releasedate = detail.releasedate;
    this.Data.Researchdate = detail.researchdate;
    this.Data.Content = detail.content;
    this.Data.Name = detail.name;
    this.Data.Symbol = detail.symbol;
    this.Data.Type = detail.type;
    this.Data.Level = detail.level;
    this.Data.Id = detail.id;
    this.Data.Researcher = detail.researcher;
 
    this.InvokeCallback();
  };
 
  this.RecvError = function(reqeust) {
    this.Error = "请求失败";
    this.InvokeCallback();
  };
 
  this.InvokeCallback = function() {
    if (typeof this.Callback != "function") return;
 
    this.Callback(this);
  };
}
 
//负面新闻
function StockNegative(symbol) {
  this.newMethod = INewsBase; //派生
  this.newMethod(symbol);
  delete this.newMethod;
 
  this.ApiUrl = g_JSNewsResource.Domain + "/API/NewsNegative";
 
  //获取第1页
  this.GetFirstPage = function() {
    //清空数据
    this.Data = [];
    this.Count = 0;
    this.CacheCount = 0;
 
    var self = this;
    let arySymbol = this.GetQuerySymbol();
    if (!this.StartDate || !this.EndDate) this.SetDefautQueryDate();
 
    $.ajax({
      url: this.ApiUrl,
      data: {
        symbol: arySymbol,
        filed: ["symbol", "name", "releasedate", "title", "id", "source"],
        querydate: { StartDate: this.StartDate, EndDate: this.EndDate },
        search: null,
        calccount: 1, //返回一共的数据个数
        start: 0,
        end: this.PageSize,
        userid: null
      },
      method: "POST",
      dataType: "json",
      success: function(data) {
        self.RecvData(data);
      },
      error: function(request) {
        self.RecvError(request);
      }
    });
  };
 
  this.RecvData = function(data) {
    if (this.Count <= 0) this.Count = data.count; //一共的新闻个数
 
    var info = {};
    info.Start = this.Data.length;
    info.End = this.Data.length;
 
    for (var i in data.list) {
      var item = data.list[i];
      this.Data.push({
        ID: item.id,
        Data: item.releasedate,
        Title: item.title,
        Source: item.source
      });
 
      if (i > 0) ++info.End;
    }
 
    this.CacheCount = this.Data.length;
    this.InvokeCallback(info);
  };
 
  this.RecvError = function(request) {
    console.log("[StockInteract::RecvError] ", request);
  };
 
  this.InvokeCallback = function(info) {
    if (typeof this.Callback != "function") return;
 
    this.Callback(info, this);
  };
 
  //下拉获取下一页
  this.GetNextPage = function() {
    var self = this;
 
    let arySymbol = this.GetQuerySymbol();
    if (!this.StartDate || !this.EndDate) this.SetDefautQueryDate();
 
    var start = this.Data.length;
    var end = start + this.PageSize;
    $.ajax({
      url: this.ApiUrl,
      data: {
        symbol: arySymbol,
        filed: ["symbol", "name", "releasedate", "title", "id", "source"],
        querydate: { StartDate: startDate, EndDate: endDate },
        search: null,
        calccount: 0, //下页页不需要统计个数了
        start: start,
        end: end,
        userid: null
      },
      method: "POST",
      dataType: "json",
      success: function(data) {
        self.RecvData(data);
      },
      error: function(request) {
        self.RecvError(request);
      }
    });
  };
}
 
function JSNews() {}
 
JSNews.SetDomain = function(domain, cacheDomain) {
  if (domain) g_JSNewsResource.Domain = domain;
  if (cacheDomain) g_JSNewsResource.CacheDomain = cacheDomain;
};
 
//获取新闻列表
JSNews.GetNews = function(symbol, newsType) {
  switch (newsType) {
    case NEWS_TYPE.STOCK_NEWS:
      return new StockNews(symbol);
    case NEWS_TYPE.ANNOUNCEMENT_ANALYSE:
      return new AnnouncementAnalyse(symbol);
    case NEWS_TYPE.STOCK_INTERACT:
      return new StockInteract(symbol);
    case NEWS_TYPE.STOCK_NEGATIVE:
      return new StockNegative(symbol);
    case NEWS_TYPE.STOCK_REPORT:
      return new StockReport(symbol);
    case NEWS_TYPE.MARKET_SEARCH:
      return new MarketSearch(symbol);
    // case NEWS_TYPE.NEW_STOCK_NEGATIVE:
    //     return new newStockReport(symbol);
    // case NEWS_TYPE.OFFICIAL_WEBSITE_NEWS:
    //     return new OfficialWebsiteNews(symbol);
    // case NEWS_TYPE.SENIOR_EXECUTIVE_NEWS:
    //     return new SeniorExecutiveNews(symbol);
    // case NEWS_TYPE.VIEWPOINTS_BY_VIP:
    //     return new ViewpointsByVIP(symbol);
    // case NEWS_TYPE.TOP_MANAGERS_RISK_NEWS:
    //     return new TopManagersRiskNews(symbol);
    // case NEWS_TYPE.FAILURE_REGROUP_NEWS:
    //     return new FailureRegroupNews(symbol);
    // case NEWS_TYPE.TOP_MANAGERS_RISK_LIST:
    //     return new TopManagersRiskList(symbol);
    case NEWS_TYPE.SEARCH_NOTICE:
      return new SearchNotice(symbol);
  }
};
//获取新闻内容
JSNews.GetContent = function(id, newsType) {
  switch (newsType) {
    case NEWS_TYPE.STOCK_NEWS:
      return new StockNewsContent(id);
    case NEWS_TYPE.MARKET_SEARCH:
      return new marketSearchInfo(id);
      break;
  }
};
 
//请求财务数据
function GetFinanceData() {
  this.symbol = "600000.sh";
  // var JsonURL = g_JSNewsResource.CacheDomain + "/cache/analyze/latestfinance/shsz/"+ symbol +".json";
  this.getApiJson = function() {
    var self = this;
    $.ajax({
      url:
        g_JSNewsResource.CacheDomain +
        "/cache/analyze/latestfinance/shsz/" +
        this.symbol +
        ".json",
      method: "GET",
      dataType: "json",
      success: function(data) {
        // console.log(data, "请求财务数据:::")
        self.RecvData(data);
      },
      fail: function(request) {
        self.RecvError(request);
      }
    });
  };
 
  this.RecvData = function(recvData) {
    // console.log(recvData,"recvData::::::::")
    if (recvData.stock.length != 0) {
      this.Data = recvData.stock[0];
    }
 
    if (this.Callback) this.Callback(this);
  };
  this.RecvError = function(recvError) {
    console.log(recvError, "recvError");
  };
}
 
GetFinanceData.init = function() {
  var news = new GetFinanceData();
  return news;
};
 
export default {
  JSNews: JSNews,
  NEWS_TYPE: NEWS_TYPE,
  GetFinanceData: GetFinanceData.init
};