bhd-components 0.7.13 → 0.7.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -307,46 +307,79 @@ const CustomerService = (props)=>{
307
307
  } catch (error) {}
308
308
  }, 3000);
309
309
  };
310
- //AI窗口,type:1发送打招呼信息 2点赞消息 3踩消息 4没有AI客服权限,5,发送超过10万字消息 6, 没有AI客服权限,发送最热的问题
311
- const sendGreetingMessage = (type)=>{
312
- let questionsList = [];
313
- let obj = {};
314
- if (type == 1) {
315
- console.log(hotQuestionsList, newHotQuestionsList.current, '33322221111');
316
- if (newHotQuestionsList.current.length > 0) {
317
- questionsList = newHotQuestionsList.current.map((item, index)=>{
318
- if (index < 3) {
319
- return {
320
- key: "messageSource",
321
- value: item.id,
322
- question: item.question,
323
- answer: item.answer
324
- };
325
- } else {
326
- return null;
310
+ //发送欢迎语,视频页面
311
+ const sendWelcomMessage = ()=>{
312
+ if (config && config.type == 'video') {
313
+ let params = config.params;
314
+ let videoId = params.videoId;
315
+ let watchTime = params.videoProgress;
316
+ let courseId = getQuery('yc_id');
317
+ let sectionId = params.VideoBriefSummaryId;
318
+ // let courseId="20899",
319
+ // sectionId= "462347",
320
+ // videoId= "29715",
321
+ // watchTime= 677
322
+ if (videoId && courseId && sectionId) {
323
+ http.post(`${urllocation}/chat-service/public/v1.0/knowledge-base/questions:recommend`, {
324
+ "recommendedQuestions": [],
325
+ "contexts": [
326
+ {
327
+ "type": "VIDEO",
328
+ "courseId": courseId,
329
+ "sectionId": sectionId,
330
+ "videoId": videoId,
331
+ "watchTime": watchTime
332
+ }
333
+ ],
334
+ "maximum": 3
335
+ }).then((res)=>{
336
+ let data = res.data.questions;
337
+ let questionsList = null;
338
+ if (data.length > 0) {
339
+ questionsList = data.map((item, index)=>{
340
+ if (index < 3) {
341
+ return {
342
+ key: "messageSource",
343
+ value: item.id,
344
+ question: item.question,
345
+ answer: item.answer
346
+ };
347
+ } else {
348
+ return null;
349
+ }
350
+ });
327
351
  }
328
- });
329
- } else {
330
- questionsList = hotQuestionsList.map((item, index)=>{
331
- if (index < 3) {
332
- return {
333
- key: "messageSource",
334
- value: item.id,
335
- question: item.question,
336
- answer: item.answer
337
- };
338
- } else {
339
- return null;
352
+ let obj = {
353
+ roomId: roomId,
354
+ sender: "AI",
355
+ recevier: mid,
356
+ message: `Hi,我是智能学习助手,你遇到了什么问题?`,
357
+ extraInfos: questionsList.length > 0 ? questionsList : null
358
+ };
359
+ if (pageNumHistory <= 1) {
360
+ setHistoryMessageList((historyMessageList)=>{
361
+ let newHistoryMessageList = historyMessageList.filter((e)=>e.id != '123456_date');
362
+ newHistoryMessageList.push(_object_spread_props(_object_spread({}, obj), {
363
+ id: '123456_date',
364
+ upvoted: false,
365
+ downvoted: false,
366
+ quotedMessage: "",
367
+ createdAt: getDataTime(-1),
368
+ extraInfo: JSON.stringify(obj.extraInfos)
369
+ }));
370
+ return newHistoryMessageList;
371
+ });
372
+ scrollToBottom();
340
373
  }
341
- });
374
+ return;
375
+ }).catch(()=>{});
342
376
  }
343
- questionsList = questionsList.filter((i)=>i != null);
344
- obj = {
377
+ } else {
378
+ let obj = {
345
379
  roomId: roomId,
346
380
  sender: "AI",
347
381
  recevier: mid,
348
- message: `Hi,我是智能学习助手,你遇到了什么问题?`,
349
- extraInfos: questionsList
382
+ message: `Hi,我是智能学习助手,你遇到了什么问题?`
350
383
  };
351
384
  if (pageNumHistory <= 1) {
352
385
  setHistoryMessageList((historyMessageList)=>{
@@ -357,12 +390,84 @@ const CustomerService = (props)=>{
357
390
  downvoted: false,
358
391
  quotedMessage: "",
359
392
  createdAt: getDataTime(-1),
360
- extraInfo: JSON.stringify(obj.extraInfos)
393
+ // extraInfo: JSON.stringify(obj.extraInfos),
394
+ extraInfo: JSON.stringify([
395
+ {
396
+ key: "messageSource",
397
+ value: "knowledgebase"
398
+ }
399
+ ])
361
400
  }));
362
401
  return newHistoryMessageList;
363
402
  });
364
403
  scrollToBottom();
365
404
  }
405
+ }
406
+ };
407
+ //AI窗口,type:1发送打招呼信息 2点赞消息 3踩消息 4没有AI客服权限,5,发送超过10万字消息 6, 没有AI客服权限,发送最热的问题
408
+ const sendGreetingMessage = (type)=>{
409
+ let questionsList = [];
410
+ let obj = {};
411
+ if (type == 1) {
412
+ sendWelcomMessage();
413
+ // console.log(hotQuestionsList,newHotQuestionsList.current,'33322221111');
414
+ // if(newHotQuestionsList.current.length > 0){
415
+ // questionsList = newHotQuestionsList.current.map((item, index) => {
416
+ // if (index < 3) {
417
+ // return {
418
+ // key: "messageSource",
419
+ // value: item.id,
420
+ // question: item.question,
421
+ // answer: item.answer,
422
+ // };
423
+ // } else {
424
+ // return null;
425
+ // }
426
+ // });
427
+ // }else{
428
+ // questionsList = hotQuestionsList.map((item, index) => {
429
+ // if (index < 3) {
430
+ // return {
431
+ // key: "messageSource",
432
+ // value: item.id,
433
+ // question: item.question,
434
+ // answer: item.answer,
435
+ // };
436
+ // } else {
437
+ // return null;
438
+ // }
439
+ // });
440
+ // }
441
+ // questionsList = questionsList.filter((i) => i != null);
442
+ // obj = {
443
+ // roomId: roomId,
444
+ // sender: "AI",
445
+ // recevier: mid,
446
+ // message: `Hi,我是智能学习助手,你遇到了什么问题?`,
447
+ // extraInfos: questionsList,
448
+ // };
449
+ // if(pageNumHistory <= 1){
450
+ // setHistoryMessageList((historyMessageList) => {
451
+ // let newHistoryMessageList = historyMessageList.filter(e=>e.id!='123456_date');
452
+ // newHistoryMessageList.push({
453
+ // ...obj,
454
+ // id: '123456_date',
455
+ // upvoted: false,
456
+ // downvoted: false,
457
+ // quotedMessage: "",
458
+ // createdAt: getDataTime(-1),
459
+ // extraInfo: JSON.stringify(obj.extraInfos),
460
+ // // extraInfo: JSON.stringify([
461
+ // // {
462
+ // // key: "messageSource",
463
+ // // value: "knowledgebase",
464
+ // // },
465
+ // // ]),
466
+ // });
467
+ // return newHistoryMessageList;
468
+ // });
469
+ // scrollToBottom();
470
+ // }
366
471
  return;
367
472
  } else if (type == 2) {
368
473
  obj = {
@@ -965,7 +1070,7 @@ const CustomerService = (props)=>{
965
1070
  } else {
966
1071
  let newHistoryMessageList2 = list1.map((item)=>{
967
1072
  message = item.message + obj.message;
968
- let extraInfo = [];
1073
+ let extraInfo = null;
969
1074
  // message = '抱歉,我暂时无法回答这样的问题。'
970
1075
  if (message == '抱歉,我暂时无法回答这样的问题。') {
971
1076
  extraInfo = videoHotQuestionsList.current.map((str, index)=>{
@@ -1357,12 +1462,15 @@ const CustomerService = (props)=>{
1357
1462
  const videoPageQuestiionsList = (flag = 1)=>{
1358
1463
  console.log(flag, props, 3333333);
1359
1464
  if (config && config.type == 'video' && config.params) {
1360
- // let params = config.params;
1361
- // let videoId = params.videoId;
1362
- // let watchTime = params.videoProgress;
1363
- // let courseId = getQuery('yc_id');
1364
- // let sectionId = params.VideoBriefSummaryId;
1365
- let courseId = "20899", sectionId = "462347", videoId = "29715", watchTime = 677;
1465
+ let params = config.params;
1466
+ let videoId = params.videoId;
1467
+ let watchTime = params.videoProgress;
1468
+ let courseId = getQuery('yc_id');
1469
+ let sectionId = params.VideoBriefSummaryId;
1470
+ // let courseId="20899",
1471
+ // sectionId= "462347",
1472
+ // videoId= "29715",
1473
+ // watchTime= 677
1366
1474
  if (videoId && courseId && sectionId) {
1367
1475
  console.log(recommendeQuestionID.current, 'recommendeQuestionID.current');
1368
1476
  http.post(`${urllocation}/chat-service/public/v1.0/knowledge-base/questions:recommend`, {
@@ -1991,7 +2099,7 @@ const CustomerService = (props)=>{
1991
2099
  //是否在智能客服窗口
1992
2100
  isAiChatWindow = chatWindow.length > 0 && chatWindow[0].sender != undefined && chatWindow[0].sender == "AI" ? true : false;
1993
2101
  let header = 2; //代表是ai头像
1994
- if (isAiChatWindow && item.extraInfo != undefined && JSON.parse(item.extraInfo).length > 0 && JSON.parse(item.extraInfo)[0].key == "isVoteMessage") {
2102
+ if (isAiChatWindow && item.extraInfo && JSON.parse(item.extraInfo).length > 0 && JSON.parse(item.extraInfo)[0].key == "isVoteMessage") {
1995
2103
  //使用AI头像
1996
2104
  header = 1;
1997
2105
  }
@@ -2055,7 +2163,7 @@ const CustomerService = (props)=>{
2055
2163
  })
2056
2164
  ]
2057
2165
  }),
2058
- item.extraInfo != undefined && JSON.parse(item.extraInfo).length > 0 && JSON.parse(item.extraInfo)[0].key == "messageSource" && JSON.parse(item.extraInfo)[0].value != "knowledgebase" && /*#__PURE__*/ _jsxs("ul", {
2166
+ item.extraInfo && JSON.parse(item.extraInfo).length > 0 && JSON.parse(item.extraInfo)[0].key == "messageSource" && JSON.parse(item.extraInfo)[0].value != "knowledgebase" && /*#__PURE__*/ _jsxs("ul", {
2059
2167
  className: `${styles.association_problem} ${item.message == '抱歉,我暂时无法回答这样的问题。' ? styles.association_problem_flag : ''}`,
2060
2168
  children: [
2061
2169
  item.message == '抱歉,我暂时无法回答这样的问题。' && /*#__PURE__*/ _jsx("li", {
@@ -627,6 +627,44 @@
627
627
  }
628
628
 
629
629
 
630
+ .association_problem_flag{
631
+
632
+ li{
633
+ padding-left: 30px;
634
+ position: relative;
635
+ &::after{
636
+ content: '';
637
+ width: 6px;
638
+ height: 6px;
639
+ border-radius: 50%;
640
+ background-color: rgba(217, 217, 217, 1);
641
+ display: block;
642
+ position: absolute;
643
+ top: 26px;
644
+ left: 10px;
645
+ }
646
+ }
647
+
648
+ li:first-child{
649
+ padding-left:0;
650
+ &::after{
651
+ display: none;
652
+ }
653
+ }
654
+
655
+ .related_issues_flag{
656
+ span{
657
+ color: #000;
658
+ font-weight: 600;
659
+ border-bottom: 6px solid @color-background-primary-weak-hover;
660
+ display: inline-block;
661
+ height: 22px;
662
+ }
663
+
664
+ }
665
+ }
666
+
667
+
630
668
  .img_con{
631
669
  width: 100%;
632
670
  text-align: center;
@@ -754,33 +792,6 @@
754
792
  }
755
793
  }
756
794
 
757
- .association_problem_flag{
758
- padding-left: 30px;
759
-
760
- li{
761
- position: relative;
762
- &::after{
763
- content: '';
764
- width: 6px;
765
- height: 6px;
766
- border-radius: 50%;
767
- background-color: rgba(217, 217, 217, 1);
768
- display: block;
769
- position: absolute;
770
- top: 12px;
771
- left: 12px;
772
- }
773
- }
774
- .related_issues_flag{
775
- span{
776
- color: #000;
777
- font-weight: 600;
778
- border-bottom: 4px solid @color-background-primary-weak-hover;
779
- }
780
-
781
- }
782
- }
783
-
784
795
  .time {
785
796
  display: block;
786
797
  margin: 40px 0;
@@ -311,48 +311,81 @@ var CustomerService = function(props) {
311
311
  } catch (error) {}
312
312
  }, 3000);
313
313
  };
314
- //AI窗口,type:1发送打招呼信息 2点赞消息 3踩消息 4没有AI客服权限,5,发送超过10万字消息 6, 没有AI客服权限,发送最热的问题
315
- var sendGreetingMessage = function(type) {
316
- var questionsList = [];
317
- var obj = {};
318
- if (type == 1) {
319
- console.log(hotQuestionsList, newHotQuestionsList.current, "33322221111");
320
- if (newHotQuestionsList.current.length > 0) {
321
- questionsList = newHotQuestionsList.current.map(function(item, index) {
322
- if (index < 3) {
323
- return {
324
- key: "messageSource",
325
- value: item.id,
326
- question: item.question,
327
- answer: item.answer
328
- };
329
- } else {
330
- return null;
314
+ //发送欢迎语,视频页面
315
+ var sendWelcomMessage = function() {
316
+ if (config && config.type == "video") {
317
+ var params = config.params;
318
+ var videoId = params.videoId;
319
+ var watchTime = params.videoProgress;
320
+ var courseId = getQuery("yc_id");
321
+ var sectionId = params.VideoBriefSummaryId;
322
+ // let courseId="20899",
323
+ // sectionId= "462347",
324
+ // videoId= "29715",
325
+ // watchTime= 677
326
+ if (videoId && courseId && sectionId) {
327
+ http.post("".concat(urllocation, "/chat-service/public/v1.0/knowledge-base/questions:recommend"), {
328
+ "recommendedQuestions": [],
329
+ "contexts": [
330
+ {
331
+ "type": "VIDEO",
332
+ "courseId": courseId,
333
+ "sectionId": sectionId,
334
+ "videoId": videoId,
335
+ "watchTime": watchTime
336
+ }
337
+ ],
338
+ "maximum": 3
339
+ }).then(function(res) {
340
+ var data = res.data.questions;
341
+ var questionsList = null;
342
+ if (data.length > 0) {
343
+ questionsList = data.map(function(item, index) {
344
+ if (index < 3) {
345
+ return {
346
+ key: "messageSource",
347
+ value: item.id,
348
+ question: item.question,
349
+ answer: item.answer
350
+ };
351
+ } else {
352
+ return null;
353
+ }
354
+ });
331
355
  }
332
- });
333
- } else {
334
- questionsList = hotQuestionsList.map(function(item, index) {
335
- if (index < 3) {
336
- return {
337
- key: "messageSource",
338
- value: item.id,
339
- question: item.question,
340
- answer: item.answer
341
- };
342
- } else {
343
- return null;
356
+ var obj = {
357
+ roomId: roomId,
358
+ sender: "AI",
359
+ recevier: mid,
360
+ message: "Hi,我是智能学习助手,你遇到了什么问题?",
361
+ extraInfos: questionsList.length > 0 ? questionsList : null
362
+ };
363
+ if (pageNumHistory <= 1) {
364
+ setHistoryMessageList(function(historyMessageList) {
365
+ var newHistoryMessageList = historyMessageList.filter(function(e) {
366
+ return e.id != "123456_date";
367
+ });
368
+ newHistoryMessageList.push(_object_spread_props(_object_spread({}, obj), {
369
+ id: "123456_date",
370
+ upvoted: false,
371
+ downvoted: false,
372
+ quotedMessage: "",
373
+ createdAt: getDataTime(-1),
374
+ extraInfo: JSON.stringify(obj.extraInfos)
375
+ }));
376
+ return newHistoryMessageList;
377
+ });
378
+ scrollToBottom();
344
379
  }
345
- });
380
+ return;
381
+ }).catch(function() {});
346
382
  }
347
- questionsList = questionsList.filter(function(i) {
348
- return i != null;
349
- });
350
- obj = {
383
+ } else {
384
+ var obj = {
351
385
  roomId: roomId,
352
386
  sender: "AI",
353
387
  recevier: mid,
354
- message: "Hi,我是智能学习助手,你遇到了什么问题?",
355
- extraInfos: questionsList
388
+ message: "Hi,我是智能学习助手,你遇到了什么问题?"
356
389
  };
357
390
  if (pageNumHistory <= 1) {
358
391
  setHistoryMessageList(function(historyMessageList) {
@@ -365,12 +398,84 @@ var CustomerService = function(props) {
365
398
  downvoted: false,
366
399
  quotedMessage: "",
367
400
  createdAt: getDataTime(-1),
368
- extraInfo: JSON.stringify(obj.extraInfos)
401
+ // extraInfo: JSON.stringify(obj.extraInfos),
402
+ extraInfo: JSON.stringify([
403
+ {
404
+ key: "messageSource",
405
+ value: "knowledgebase"
406
+ }
407
+ ])
369
408
  }));
370
409
  return newHistoryMessageList;
371
410
  });
372
411
  scrollToBottom();
373
412
  }
413
+ }
414
+ };
415
+ //AI窗口,type:1发送打招呼信息 2点赞消息 3踩消息 4没有AI客服权限,5,发送超过10万字消息 6, 没有AI客服权限,发送最热的问题
416
+ var sendGreetingMessage = function(type) {
417
+ var questionsList = [];
418
+ var obj = {};
419
+ if (type == 1) {
420
+ sendWelcomMessage();
421
+ // console.log(hotQuestionsList,newHotQuestionsList.current,'33322221111');
422
+ // if(newHotQuestionsList.current.length > 0){
423
+ // questionsList = newHotQuestionsList.current.map((item, index) => {
424
+ // if (index < 3) {
425
+ // return {
426
+ // key: "messageSource",
427
+ // value: item.id,
428
+ // question: item.question,
429
+ // answer: item.answer,
430
+ // };
431
+ // } else {
432
+ // return null;
433
+ // }
434
+ // });
435
+ // }else{
436
+ // questionsList = hotQuestionsList.map((item, index) => {
437
+ // if (index < 3) {
438
+ // return {
439
+ // key: "messageSource",
440
+ // value: item.id,
441
+ // question: item.question,
442
+ // answer: item.answer,
443
+ // };
444
+ // } else {
445
+ // return null;
446
+ // }
447
+ // });
448
+ // }
449
+ // questionsList = questionsList.filter((i) => i != null);
450
+ // obj = {
451
+ // roomId: roomId,
452
+ // sender: "AI",
453
+ // recevier: mid,
454
+ // message: `Hi,我是智能学习助手,你遇到了什么问题?`,
455
+ // extraInfos: questionsList,
456
+ // };
457
+ // if(pageNumHistory <= 1){
458
+ // setHistoryMessageList((historyMessageList) => {
459
+ // let newHistoryMessageList = historyMessageList.filter(e=>e.id!='123456_date');
460
+ // newHistoryMessageList.push({
461
+ // ...obj,
462
+ // id: '123456_date',
463
+ // upvoted: false,
464
+ // downvoted: false,
465
+ // quotedMessage: "",
466
+ // createdAt: getDataTime(-1),
467
+ // extraInfo: JSON.stringify(obj.extraInfos),
468
+ // // extraInfo: JSON.stringify([
469
+ // // {
470
+ // // key: "messageSource",
471
+ // // value: "knowledgebase",
472
+ // // },
473
+ // // ]),
474
+ // });
475
+ // return newHistoryMessageList;
476
+ // });
477
+ // scrollToBottom();
478
+ // }
374
479
  return;
375
480
  } else if (type == 2) {
376
481
  obj = {
@@ -992,7 +1097,7 @@ var CustomerService = function(props) {
992
1097
  } else {
993
1098
  var newHistoryMessageList2 = list1.map(function(item) {
994
1099
  message = item.message + obj.message;
995
- var extraInfo = [];
1100
+ var extraInfo = null;
996
1101
  // message = '抱歉,我暂时无法回答这样的问题。'
997
1102
  if (message == "抱歉,我暂时无法回答这样的问题。") {
998
1103
  extraInfo = videoHotQuestionsList.current.map(function(str, index) {
@@ -1390,12 +1495,15 @@ var CustomerService = function(props) {
1390
1495
  var flag = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 1;
1391
1496
  console.log(flag, props, 3333333);
1392
1497
  if (config && config.type == "video" && config.params) {
1393
- // let params = config.params;
1394
- // let videoId = params.videoId;
1395
- // let watchTime = params.videoProgress;
1396
- // let courseId = getQuery('yc_id');
1397
- // let sectionId = params.VideoBriefSummaryId;
1398
- var courseId = "20899", sectionId = "462347", videoId = "29715", watchTime = 677;
1498
+ var params = config.params;
1499
+ var videoId = params.videoId;
1500
+ var watchTime = params.videoProgress;
1501
+ var courseId = getQuery("yc_id");
1502
+ var sectionId = params.VideoBriefSummaryId;
1503
+ // let courseId="20899",
1504
+ // sectionId= "462347",
1505
+ // videoId= "29715",
1506
+ // watchTime= 677
1399
1507
  if (videoId && courseId && sectionId) {
1400
1508
  console.log(recommendeQuestionID.current, "recommendeQuestionID.current");
1401
1509
  http.post("".concat(urllocation, "/chat-service/public/v1.0/knowledge-base/questions:recommend"), {
@@ -2015,7 +2123,7 @@ var CustomerService = function(props) {
2015
2123
  //是否在智能客服窗口
2016
2124
  isAiChatWindow = chatWindow.length > 0 && chatWindow[0].sender != undefined && chatWindow[0].sender == "AI" ? true : false;
2017
2125
  var header = 2; //代表是ai头像
2018
- if (isAiChatWindow && item.extraInfo != undefined && JSON.parse(item.extraInfo).length > 0 && JSON.parse(item.extraInfo)[0].key == "isVoteMessage") {
2126
+ if (isAiChatWindow && item.extraInfo && JSON.parse(item.extraInfo).length > 0 && JSON.parse(item.extraInfo)[0].key == "isVoteMessage") {
2019
2127
  //使用AI头像
2020
2128
  header = 1;
2021
2129
  }
@@ -2079,7 +2187,7 @@ var CustomerService = function(props) {
2079
2187
  })
2080
2188
  ]
2081
2189
  }),
2082
- item.extraInfo != undefined && JSON.parse(item.extraInfo).length > 0 && JSON.parse(item.extraInfo)[0].key == "messageSource" && JSON.parse(item.extraInfo)[0].value != "knowledgebase" && /*#__PURE__*/ _jsxs("ul", {
2190
+ item.extraInfo && JSON.parse(item.extraInfo).length > 0 && JSON.parse(item.extraInfo)[0].key == "messageSource" && JSON.parse(item.extraInfo)[0].value != "knowledgebase" && /*#__PURE__*/ _jsxs("ul", {
2083
2191
  className: "".concat(styles.association_problem, " ").concat(item.message == "抱歉,我暂时无法回答这样的问题。" ? styles.association_problem_flag : ""),
2084
2192
  children: [
2085
2193
  item.message == "抱歉,我暂时无法回答这样的问题。" && /*#__PURE__*/ _jsx("li", {
@@ -627,6 +627,44 @@
627
627
  }
628
628
 
629
629
 
630
+ .association_problem_flag{
631
+
632
+ li{
633
+ padding-left: 30px;
634
+ position: relative;
635
+ &::after{
636
+ content: '';
637
+ width: 6px;
638
+ height: 6px;
639
+ border-radius: 50%;
640
+ background-color: rgba(217, 217, 217, 1);
641
+ display: block;
642
+ position: absolute;
643
+ top: 26px;
644
+ left: 10px;
645
+ }
646
+ }
647
+
648
+ li:first-child{
649
+ padding-left:0;
650
+ &::after{
651
+ display: none;
652
+ }
653
+ }
654
+
655
+ .related_issues_flag{
656
+ span{
657
+ color: #000;
658
+ font-weight: 600;
659
+ border-bottom: 6px solid @color-background-primary-weak-hover;
660
+ display: inline-block;
661
+ height: 22px;
662
+ }
663
+
664
+ }
665
+ }
666
+
667
+
630
668
  .img_con{
631
669
  width: 100%;
632
670
  text-align: center;
@@ -754,33 +792,6 @@
754
792
  }
755
793
  }
756
794
 
757
- .association_problem_flag{
758
- padding-left: 30px;
759
-
760
- li{
761
- position: relative;
762
- &::after{
763
- content: '';
764
- width: 6px;
765
- height: 6px;
766
- border-radius: 50%;
767
- background-color: rgba(217, 217, 217, 1);
768
- display: block;
769
- position: absolute;
770
- top: 12px;
771
- left: 12px;
772
- }
773
- }
774
- .related_issues_flag{
775
- span{
776
- color: #000;
777
- font-weight: 600;
778
- border-bottom: 4px solid @color-background-primary-weak-hover;
779
- }
780
-
781
- }
782
- }
783
-
784
795
  .time {
785
796
  display: block;
786
797
  margin: 40px 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bhd-components",
3
- "version": "0.7.13",
3
+ "version": "0.7.15",
4
4
  "description": "组件功能描述",
5
5
  "files": [
6
6
  "esm",