修改主播专属下载页logo为头像
This commit is contained in:
parent
73f1a7d023
commit
758f419167
|
@ -14,7 +14,6 @@ import qrcode from "@/public/images/qrcode.png";
|
|||
import baseRequest from "@/utils/baseRequest";
|
||||
import { generateSignature } from "@/utils/crypto";
|
||||
import { Toast } from "antd-mobile";
|
||||
import icon_border from "@/public/images/icon_border.png";
|
||||
import copy from "@/utils/copy";
|
||||
|
||||
export default function Download({ params }) {
|
||||
|
@ -182,7 +181,13 @@ export default function Download({ params }) {
|
|||
)}
|
||||
</div>
|
||||
<div className="flex flex-row items-center bg-[#13121F] w-full fixed bottom-0 left-0 rounded-t-2xl p-4">
|
||||
<Image src={icon_border} alt="" className="w-12 h-12" />
|
||||
<div className="w-12 h-12 rounded-full overflow-hidden">
|
||||
<img
|
||||
src={data?.cover?.images[0].urls[0]}
|
||||
alt=""
|
||||
className="w-full h-full object-cover"
|
||||
/>
|
||||
</div>
|
||||
<div className="flex flex-col flex-1 ml-4">
|
||||
<p className="text-white text-base font-medium flex items-center">
|
||||
{data?.name}
|
||||
|
|
Loading…
Reference in New Issue