index3.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <script setup>
  2. import { ref, onMounted, watch } from 'vue';
  3. import { NButton, NSpace, NDrawer, NDrawerContent, NCard } from 'naive-ui';
  4. import { ChatAsk, ChatAnswer } from '@/components/Chat';
  5. import allBookData from "./all_book3.json";
  6. const dataSource = ref([]);
  7. const errIds = ref([]);
  8. const visible = ref(false);
  9. const pageNum = ref(0);
  10. const pageSize = 10;
  11. const scrollRef = ref(null);
  12. const totalPages = Math.ceil(allBookData.length / pageSize);
  13. watch(pageNum, (num) => {
  14. dataSource.value = allBookData.slice((num - 1) * pageSize, num * pageSize).map(item => ({
  15. ...item,
  16. isDisable: errIds.value.includes(item.id),
  17. history: [
  18. ...item.history,
  19. [item.instruction, item.output]
  20. ]
  21. }))
  22. })
  23. const changeVisible = () => {
  24. visible.value = !visible.value;
  25. }
  26. const handlePrePage = () => {
  27. if ( pageNum.value === 1 ) {
  28. return alert("已经是第一页了");
  29. }
  30. pageNum.value -= 1;
  31. scroolToTop();
  32. localStorage.setItem('pageNum', pageNum.value);
  33. }
  34. const handleNextPage = () => {
  35. if ( pageNum.value === totalPages ) return alert("已经是最后一页了");
  36. pageNum.value += 1;
  37. scroolToTop();
  38. localStorage.setItem('pageNum', pageNum.value);
  39. }
  40. const handleError = item => {
  41. item.isDisable = !item.isDisable;
  42. item.isDisable ? (errIds.value.push(item.id)) : (errIds.value = errIds.value.filter(id => item.id !== id));
  43. localStorage.setItem('errIds', JSON.stringify( errIds.value ));
  44. // console.log(errIds.value);
  45. }
  46. // 返回顶部
  47. const scroolToTop = () => {
  48. scrollRef.value?.scrollTo({ top: 0, behavior: 'smooth' });
  49. }
  50. onMounted(() => {
  51. const localIds = localStorage.getItem('errIds');
  52. const localNum = localStorage.getItem('pageNum');
  53. const ids = localIds ? JSON.parse(localIds) : [];
  54. const num = localNum ? Number(localNum) : 1;
  55. errIds.value = ids;
  56. pageNum.value = num;
  57. })
  58. </script>
  59. <template>
  60. <section class="page-container">
  61. <header class="header flex items-center">
  62. <NSpace>
  63. <n-button @click="handlePrePage">上一页</n-button>
  64. <n-button @click="handleNextPage">下一页</n-button>
  65. <n-button @click="changeVisible">显示错误id</n-button>
  66. </NSpace>
  67. <p class="ml-[30px] space-x-[10px]">
  68. <span>{{ pageNum }}</span>
  69. <span> / </span>
  70. <span>{{ totalPages }}</span>
  71. </p>
  72. </header>
  73. <div class="main" ref="scrollRef">
  74. <NCard :title="item.id" v-for="item in dataSource" :key="item.id" class="mb-[20px]">
  75. <div v-for="arr, i in item.history" :key="i + item.id" class="pt-[40px]">
  76. <ChatAsk :content="arr[0]"></ChatAsk>
  77. <ChatAnswer :content="arr[1]" :toggleVisibleIcons="false"></ChatAnswer>
  78. <hr>
  79. </div>
  80. <div class="answer-btns pt-[20px]">
  81. <NSpace>
  82. <!-- :disabled="item.isDisable" -->
  83. <NButton :type="item.isDisable? '' : 'error'" @click="handleError(item)">
  84. {{ item.isDisable ? '已审核' : '错' }}
  85. </NButton>
  86. </NSpace>
  87. </div>
  88. </NCard>
  89. </div>
  90. </section>
  91. <NDrawer placement="right" v-model:show="visible" width="800" title="错误ID">
  92. <n-drawer-content :title="'错误ID列表 -- ' + errIds.length + ' 个'">
  93. <!-- <div class="py-[30px]">{{ errIds.join(',') }}</div> -->
  94. <!-- <hr> -->
  95. <ul class="grid grid-cols-5">
  96. <li v-for="item in errIds" :key="item">{{ item }}</li>
  97. </ul>
  98. </n-drawer-content>
  99. </NDrawer>
  100. </template>
  101. <style lang="scss" scoped>
  102. .page-container {
  103. width: 100vw;
  104. height: 100vh;
  105. background: #edf7fc;
  106. .header {
  107. display: flex;
  108. justify-content: center;
  109. padding: 20px 0;
  110. background: #fff;
  111. }
  112. .main {
  113. width: 1000px;
  114. height: calc(100% - 74px);
  115. margin: 0 auto;
  116. overflow-y: scroll;
  117. .answer-block {
  118. border-bottom: 1px solid #000000;
  119. padding-bottom: 20px;
  120. }
  121. .answer-btns {
  122. display: flex;
  123. justify-content: flex-end;
  124. }
  125. }
  126. }
  127. </style>