|
|
@@ -27,7 +27,7 @@
|
|
|
content-style="display:flex;flex-direction:column;border-radius:30px; background-color:rgba(0,0,0,0.8); backdrop-filter: blur(5px)"
|
|
|
>
|
|
|
<NConfigProvider :theme="darkTheme">
|
|
|
- <div class="flex p-6 max-w-[546px] m-auto" @keyup.enter="searchReference">
|
|
|
+ <div class="flex p-6 max-w-[546px] m-auto relative" @keyup.enter="searchReference">
|
|
|
<n-input
|
|
|
size="large"
|
|
|
class="flex-1 !rounded-none !rounded-l-lg"
|
|
|
@@ -42,16 +42,32 @@
|
|
|
</n-input>
|
|
|
<n-button
|
|
|
size="large"
|
|
|
- class="!rounded-none !rounded-r-lg alimamaShuHeiTi"
|
|
|
+ class="!rounded-none alimamaShuHeiTi"
|
|
|
type="primary"
|
|
|
@click="searchReference"
|
|
|
:loading="searchingReference"
|
|
|
>
|
|
|
搜索一下
|
|
|
</n-button>
|
|
|
+ <n-button
|
|
|
+ size="large"
|
|
|
+ tertiary
|
|
|
+ class="!rounded-none !rounded-r-lg alimamaShuHeiTi"
|
|
|
+ type="primary"
|
|
|
+ @click="showGptModal = true"
|
|
|
+ >
|
|
|
+ 更多服务
|
|
|
+ </n-button>
|
|
|
+ <!-- <img
|
|
|
+ class="absolute right-[-25px] top-[30px] w-[32px] cursor-pointer"
|
|
|
+ @click.stop="showGptModal = true"
|
|
|
+ src="@/assets/vip1.png"
|
|
|
+ alt=""
|
|
|
+ /> -->
|
|
|
<!-- <NButton class="!ml-4" type="primary" ghost @click="copyReference">复制</NButton> -->
|
|
|
</div>
|
|
|
- <div class="flex-1 overflow-auto py-4 px-8">
|
|
|
+
|
|
|
+ <div class="flex-1 overflow-auto py-4 px-8 text-white">
|
|
|
<div v-for="(item, i) in referenceData.zh" :key="i">[{{ i + 1 }}]{{ item.ref[0] }}</div>
|
|
|
<div v-for="(item, i) in referenceData.en" :key="i">
|
|
|
[{{ referenceData.zh.length + i + 1 }}]{{ item.ref[0] }}
|
|
|
@@ -86,7 +102,7 @@
|
|
|
<NCard class="!max-w-xl !rounded-xl">
|
|
|
<div class="text-center">
|
|
|
<div class="text-base font-bold">非会员每天免费搜一次</div>
|
|
|
- <div class="text-xs text-slate-500">今日免费次数已用完,明天再来吧</div>
|
|
|
+ <!-- <div class="text-xs text-slate-500">今日免费次数已用完,明天再来吧</div> -->
|
|
|
</div>
|
|
|
<div class="flex justify-around items-start py-9">
|
|
|
<div class="flex flex-col items-center justify-center cursor-pointer" @click="goGpt">
|