wujingjing
2025-04-07 457cc6cf166d3b6c22be4f78c1db8802a7fbb4c7
src/views/project/ch/home/component/waterRight/center.vue
@@ -6,103 +6,91 @@
            <span class="split"></span>
            <span class="change cursor-pointer" @click="advanceExampleClick">高级示例 ></span>
         </div>
         <div class="cursor-pointer">
         <div class="cursor-pointer" @click="batchChange">
            <span class="mr-1 changeBatch">换一批</span>
            <i class="iconfont icon-shuaxin"></i>
            <i class="myiconfont icon-shuaxin"></i>
         </div>
      </div>
      <div class="main">
         <div
            class="main_item flex items-center cursor-pointer"
            v-for="(item, index) in state.exampleContent"
            :key="item.ID"
            :class="{ main_item_active: item.ID === state.exampleIndex }"
            @click="changeExample(item)"
         >
            <div class="left flex items-center justify-center" :class="['color' + index]">
               <img :src="item.Icon" alt="" />
            </div>
            <div class="right">
               <h4>{{ item.Title }}</h4>
               <p>{{ item.Content }}</p>
            </div>
         </div>
      </div>
      <el-drawer v-model="state.isShowAdvanceExample" direction="rtl" size="30%">
         <div class="box-border w100 bg-[#e0e7fb] relative flex items-center justify-center" style="padding: 30px 20px 26px">
            <!-- <el-tabs v-model="state.activeName" type="card" @tab-click="handleClick" class="set-tabs">
               <el-tab-pane label="提问示例" name="questionExample">提问示例</el-tab-pane>
               <el-tab-pane label="指令模板" name="instructionTemplate">指令模板</el-tab-pane>
            </el-tabs> -->
            <div
               class="box-border flex w-[203px] h-[32px] rounded-md items-center justify-between cursor-pointer relative border border-solid border-[#2c2d33]"
            >
               <!-- <div class="w-[108px] h100 rounded-[5px] bg-transparent absolute left-0 transition-all"></div> -->
         <el-carousel height="80" :interval="6000" indicator-position="none">
            <el-carousel-item v-for="(group, index) in state.m_groupArr" :key="index" class="set-carousel-item">
               <div
                  class="tabbar-item"
                  :class="state.activeName === item.ID ? 'set-tabbar-active' : ''"
                  @click="handleTabClick(item)"
                  v-for="item in state.tabNameList"
                  :key="item.ID"
                  class="main_item flex items-center cursor-pointer"
                  v-for="(item, index) in group"
                  :key="index"
                  :class="{ main_item_active: item.sample_id === activeSampleId }"
                  @click="changeExample(item)"
               >
                  {{ item.Name }}
                  <div class="left flex items-center justify-center" :class="['color' + index]">
                     <img :src="item.Icon" alt="" />
                  </div>
                  <div class="right">
                     <h4>{{ item.sample_title }}</h4>
                     <p>{{ item.sample_question }}</p>
                  </div>
               </div>
            </div>
         </div>
      </el-drawer>
            </el-carousel-item>
         </el-carousel>
      </div>
   </div>
</template>
<script setup lang="ts">
import { reactive } from 'vue';
import { activeRoomId, activeSampleId, exampleSceneList, setRoomConfig } from '/@/stores/chatRoom';
let state = reactive({
   exampleContent: [
      {
         ID: 1,
         Icon: '/static/images/wave/ChatImg.png',
         Title: '解读李四的反应',
         Content: '张三打了李四一巴掌,李四对张三说:"你是不是没吃饭",李四说这句话含义是?',
      },
      {
         ID: 2,
         Icon: '/static/images/wave/ChatImg.png',
         Title: '解释努力与内卷的区别',
         Content: '怎么解释努力和内卷的区别?',
      },
      {
         ID: 3,
         Icon: '/static/images/wave/ChatImg.png',
         Title: '其他问题',
         Content: '请搜索你想知道的问题',
      },
      {
         ID: 4,
         Icon: '/static/images/wave/ChatImg.png',
         Title: '给宝宝取有文化内涵的名字',
         Content: '请以诗经中的典故给男宝宝取名,姓顾,名字要求3个字,给5个名字供我选择。',
      },
   ],
   tabNameList: [
      { ID: 1, Name: '提问示例' },
      { ID: 2, Name: '指令模板' },
   ],
   exampleIndex: 0,
   isShowAdvanceExample: false,
   activeName: 1,
   exampleContent: [],
   isShowExample: false,
   m_groupArr: [],
});
const emits = defineEmits<{
   (event: 'advanceExampleClick', data): void;
   (event: 'updateChatInput', val): void;
}>();
const initGroupedArr = () => {
   const groups = [];
   let i = 0;
   while (state.exampleContent.length > i) {
      groups.push(state.exampleContent.slice(i, (i += 4)));
   }
   state.m_groupArr = groups;
};
const changeExample = (item) => {
   state.exampleIndex = item.ID;
   emits('updateChatInput', item.sample_question);
   setRoomConfig(activeRoomId.value, 'isAnswerByLLM', false);
   activeSampleId.value = item.sample_id;
};
//高级示例
//换一批
const batchChange = () => {
   let groups = state.m_groupArr;
   // 打乱批次顺序
   for (let i = groups.length - 1; i > 0; i--) {
      const j = Math.floor(Math.random() * (i + 1));
      [groups[i], groups[j]] = [groups[j], groups[i]];
   }
   state.m_groupArr = groups;
};
//打开高级示例
const advanceExampleClick = () => {
   state.isShowAdvanceExample = true;
   emits('advanceExampleClick', true);
};
const handleTabClick = (item) => {
   console.log(item.ID);
   state.activeName = item.ID;
const tagListClick = (tagList) => {
   let result = [];
   tagList.forEach((tag) => {
      exampleSceneList.value.forEach((sample) => {
         if (tag == sample.group_id) {
            result.push(sample);
         }
      });
   });
   state.exampleContent = result;
   initGroupedArr();
};
defineExpose({
   tagListClick,
});
</script>
<style scoped lang="scss">
.pc-prompts {
@@ -145,6 +133,7 @@
         width: calc(50% - 16px);
         margin: 8px;
         padding: 12px;
         height: 84px;
         border: 1px solid #d9dbde;
         border-radius: 5px;
         background-color: transparent;
@@ -179,6 +168,9 @@
               font-weight: 500;
               height: 16px;
               transition: background-color 0.2s;
               overflow: hidden;
               text-overflow: ellipsis;
               white-space: nowrap;
            }
            p {
               font-size: 12px;
@@ -203,30 +195,33 @@
            }
         }
      }
      .set-carousel-item {
         display: flex;
         flex-wrap: wrap;
      }
   }
}
.tabbar-item {
   width: 108px;
   height: 30px;
   font-size: 13px;
   font-weight: 400;
   line-height: 30px;
   text-align: center;
   cursor: pointer;
   // position: absolute;
   -o-transition: color 0.2s;
   transition: color 0.2s;
   &:nth-child(3) {
      top: 0;
      left: 0;
   }
:deep(.el-drawer__header) {
   padding: 30px 20px 26px !important;
   box-sizing: border-box;
   width: 100%;
   background-color: #e0e7fb;
   position: relative;
   height: unset !important;
   margin-bottom: unset !important;
   border-bottom: unset !important;
}
.tabbar-item-active {
   color: #fff;
:deep(.el-drawer__body) {
   overflow-x: hidden;
}
.set-tabbar-active {
   left: 95px;
   color: #fff;
   background-color: #000;
:deep(.el-carousel--horizontal) {
   width: 100%;
}
:deep(.el-carousel__container) {
   width: 100%;
   height: 200px !important;
}
</style>