feat: 重新发布 & 编辑球局跳转更改、订单显示问题修复

This commit is contained in:
2025-09-18 17:16:24 +08:00
parent e117197737
commit 28272d7936
4 changed files with 16 additions and 11 deletions

View File

@@ -123,12 +123,17 @@ export default forwardRef(function GameManagePopup(props, ref) {
function handleEditGame() {
Taro.navigateTo({
url: `/publish_pages/publishBall/index?gameId=${detail.id}`,
url: `/publish_pages/publishBall/index?gameId=${detail.id}&republish=0`,
});
onClose();
}
const handleRepubGame = handleEditGame;
function handleRepubGame () {
Taro.navigateTo({
url: `/publish_pages/publishBall/index?gameId=${detail.id}&republish=1`,
});
onClose();
}
async function handleCancelGame() {
cancelRef.current.show(async (result) => {