|
@@ -134,12 +134,14 @@ const AutoShowDialog = () => {
|
|
|
break;
|
|
|
case 3:
|
|
|
// 轮盘特殊处理 dialogManage.showDialog('WheelSection')
|
|
|
- console.log(wheelState.status);
|
|
|
- if (
|
|
|
- curData?.action_params?.includes("WheelSection") &&
|
|
|
- wheelState.status === 2
|
|
|
- ) {
|
|
|
- break;
|
|
|
+
|
|
|
+ if (curData?.action_params?.includes("WheelSection")) {
|
|
|
+ console.log(wheelState.status);
|
|
|
+ await wheelState.setWheel();
|
|
|
+ console.log(wheelState.status);
|
|
|
+ if (wheelState.status != 1) {
|
|
|
+ break;
|
|
|
+ }
|
|
|
}
|
|
|
if (curData.action_type === 5) {
|
|
|
curData?.action_params ? await eval(curData?.action_params || "") : "";
|