|
@@ -67,7 +67,7 @@ const SlotSection = () => {
|
|
|
/**
|
|
|
* 轮盘
|
|
|
*/
|
|
|
-const WheelSection = () => {
|
|
|
+const WheelSection = ({ onDestory }: any) => {
|
|
|
const wheelModalRef = useRef<WheelModalProps | null>(null);
|
|
|
const { wheelStatus, wheelCurrent, setWheel } = useWheelStore((state) => ({
|
|
|
wheelStatus: state.status,
|
|
@@ -358,6 +358,7 @@ const SignInSection: FC = () => {
|
|
|
|
|
|
const ServiceWidget: FC<Props> = (props) => {
|
|
|
const { services } = props;
|
|
|
+ // const [isShowSign, setIsShowSign] = useState(false);
|
|
|
|
|
|
const { eventView } = useEventPoint();
|
|
|
const newServices = services?.filter((item) => item.status === 1) || [];
|
|
@@ -378,6 +379,10 @@ const ServiceWidget: FC<Props> = (props) => {
|
|
|
|
|
|
const t = useTranslations("HomePage");
|
|
|
|
|
|
+ // const wheelDestory = () => {
|
|
|
+ // setIsShowSign(true);
|
|
|
+ // };
|
|
|
+
|
|
|
return (
|
|
|
<>
|
|
|
<div
|