feat: detail suspend

This commit is contained in:
2025-08-24 15:51:41 +08:00
parent fc3d7cf6cb
commit d84a67726f
5 changed files with 34 additions and 0 deletions

View File

View File

@@ -0,0 +1,24 @@
import React, { useState } from 'react'
import { Popup } from "@nutui/nutui-react-taro";
import './index.scss'
export default function UploadCover(props) {
const { value = [], onChange = () => {} } = props
const [visible, setVisible] = useState(false)
return (
<>
<Popup
visible={visible}
onClose={() => setVisible(false)}
round
closeable
>
<div className="upload-cover-popup" onClick={}>
<div className="upload-cover-popup-title"></div>
</div>
</>
);
};