From cba0a08f8139e5eedb4d83564acbb7c18b084f33 Mon Sep 17 00:00:00 2001 From: yulixing Date: Mon, 16 Sep 2019 19:55:31 +0800 Subject: [PATCH] fix adpos coor --- src/views/games/details/adPos.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/games/details/adPos.vue b/src/views/games/details/adPos.vue index d3a89a9..fec7c89 100644 --- a/src/views/games/details/adPos.vue +++ b/src/views/games/details/adPos.vue @@ -582,7 +582,7 @@ export default { mode: parseInt(posInfo.mode), type: parseInt(posInfo.type), x: parseInt(posInfo.x), - y: parseInt(posInfo.x), + y: parseInt(posInfo.y), x_offset: parseInt(posInfo.x_offset), y_offset: parseInt(posInfo.y_offset), }) @@ -616,7 +616,7 @@ export default { mode: parseInt(posInfo.mode), type: parseInt(posInfo.type), x: parseInt(posInfo.x), - y: parseInt(posInfo.x), + y: parseInt(posInfo.y), x_offset: parseInt(posInfo.x_offset), y_offset: parseInt(posInfo.y_offset), })