From e86e19e5e5909f46e09adec1df430e0214a81590 Mon Sep 17 00:00:00 2001 From: 无故事王国 <841720330@qq.com> Date: 星期三, 18 十月 2023 18:34:19 +0800 Subject: [PATCH] 修复BUG --- WanPai/Root/Games/GamesVC.swift | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/WanPai/Root/Games/GamesVC.swift b/WanPai/Root/Games/GamesVC.swift index 251bf8f..b809990 100644 --- a/WanPai/Root/Games/GamesVC.swift +++ b/WanPai/Root/Games/GamesVC.swift @@ -91,5 +91,18 @@ let vc = GamesDataSourceVC() push(vc: vc) } + + @IBAction func introAction(_ sender: UIButton) { + Services.game_intro().subscribe(onNext: {data in + let vc = CommonWebVC(type: .other, content: data.data) + vc.title = "步骤说明" + self.push(vc: vc) + + }) { error in + + }.disposed(by: disposeBag) + + } + } -- Gitblit v1.7.1