save
This commit is contained in:
parent
2915136e88
commit
3775614a35
|
@ -8,11 +8,11 @@ import { faClock, faFire, faTimeline, faTimesCircle, faTimesRectangle, faVolumeT
|
|||
import { useAtom } from "jotai";
|
||||
import { linkTypeAtom } from "../_lib/atom";
|
||||
import Image from "next/image";
|
||||
|
||||
const PICTURE_PREFIX = 'https://newuitab.oss-cn-hangzhou.aliyuncs.com/ai_upload/downloads/'
|
||||
const LinkBlock = ({ val }: { val: _Link }) => {
|
||||
return <Link className="flex gap-x-2 bg-white rounded-lg py-4 pl-2 cursor-pointer duration-150 hover:-translate-y-1 shadow-sm"
|
||||
href={val.articleId ? `/article/${val.articleId}` : val.link || ''} target="_blank">
|
||||
<img src={val.logoLink} className="w-[40px] h-[40px]"></img>
|
||||
<img src={val.logoLink.startsWith('http') ? val.logoLink : (PICTURE_PREFIX + val.logoLink)} className="w-[40px] h-[40px]"></img>
|
||||
<div className="flex-1 w-0 flex flex-col justify-between">
|
||||
<span className=" font-bold text-ellipsis overflow-hidden whitespace-nowrap">{val.name}</span>
|
||||
<span className=" text-ellipsis overflow-hidden whitespace-nowrap text-[#666] text-xs" title={val.description}>{val.description}</span>
|
||||
|
|
|
@ -49,13 +49,13 @@ export default function Search() {
|
|||
}
|
||||
}, [selectKey])
|
||||
return (
|
||||
<div className="w-full flex justify-center flex-col items-center py-10 h-[500px]">
|
||||
<div className="w-full flex justify-center flex-col items-center py-10 h-[400px]">
|
||||
|
||||
<div className="w-[200px]">
|
||||
<Logo></Logo>
|
||||
</div>
|
||||
<div className="w-full lg:w-[800px] flex flex-col gap-y-2">
|
||||
<div className="flex w-full justify-center gap-x-5 text-[#666666]">
|
||||
<div className="flex w-full justify-center gap-x-5 text-[#666666] h-[50px] items-center">
|
||||
{
|
||||
searchTypeList.map(item => (
|
||||
<div key={item._id}
|
||||
|
@ -83,10 +83,10 @@ export default function Search() {
|
|||
setInputStr(e.target.value)
|
||||
|
||||
}}
|
||||
placeholder={`${activeSearch?.label}搜索`} className="w-full bg-[#C4C2C6] px-4 h-[50px] rounded-3xl outline-none" />
|
||||
placeholder={activeSearch?.label ? `${activeSearch?.label}搜索` : ''} className="w-full bg-[#C4C2C6] px-4 h-[50px] rounded-3xl outline-none" />
|
||||
<FontAwesomeIcon className="text-white absolute top-1/2 -translate-y-1/2 right-6 text-xl" icon={faSearch}></FontAwesomeIcon>
|
||||
</div>
|
||||
<div className="w-full flex justify-center gap-x-4 ">
|
||||
<div className="w-full flex justify-center gap-x-4 h-[50px] text-[#666666]">
|
||||
{
|
||||
filterSeachList.map(item => (
|
||||
<div key={item._id} onClick={() => {
|
||||
|
|
|
@ -13,10 +13,10 @@ export default function SiderNav({ linkList }: { linkList: LinkType[] }) {
|
|||
const [, setSelectType] = useAtom(linkTypeAtom)
|
||||
return (
|
||||
<div className="w-[220px] flex flex-col gap-y-2 fixed left-0 top-0 h-[100vh] bg-[#F9F9F9]">
|
||||
<div className="bg-white shadow-sm">
|
||||
<div className="bg-white ">
|
||||
<Logo />
|
||||
</div>
|
||||
<nav className="flex flex-col py-1">
|
||||
<nav className="flex flex-col py-1 pl-2">
|
||||
{
|
||||
linkList.map((item) => {
|
||||
return (
|
||||
|
|
Loading…
Reference in New Issue