{
console.log("radio change", e.target.value);
if (divSetting.current) {
divSetting.current.style.display = "none";
}
if (divDict.current) {
divDict.current.style.display = "none";
}
if (divTerm.current) {
divTerm.current.style.display = "none";
}
if (divCart.current) {
divCart.current.style.display = "none";
}
switch (e.target.value) {
case "setting":
if (divSetting.current) {
divSetting.current.style.display = "block";
}
openPanel();
break;
case "dict":
if (divDict.current) {
divDict.current.style.display = "block";
}
openPanel();
break;
case "term":
if (divTerm.current) {
divTerm.current.style.display = "block";
}
openPanel();
break;
case "cart":
if (divCart.current) {
divCart.current.style.display = "block";
}
openPanel();
break;
default:
break;
}
setValue2(e.target.value);
}}
>
{
if (value2 === "setting") {
setValue2("close");
closeAll();
}
}}
>
{
if (value2 === "dict") {
setValue2("close");
closeAll();
}
}}
>
{
if (value2 === "term") {
setValue2("close");
closeAll();
}
}}
>
{
if (value2 === "cart") {
setValue2("close");
closeAll();
}
}}
>
);
};
export default ProTabsWidget;