Sweetalert 2 JS在小型设备中无法正常运行

时间:2019-02-16 13:47:35

标签: javascript sweetalert sweetalert2

我有一个SweetAlert2警报弹出窗口,在桌面版本上运行正常,但在移动/小型设备中无法正常工作

    Swal.fire({
                type: 'success',
                title:  response.data.body.Data[0].status_text,
                timer: 3500
             }) 

台式机版本:

enter image description here

移动版本:

enter image description here

如何解决这个问题,我花了一天多的时间。

1 个答案:

答案 0 :(得分:0)

尝试更改为icon而不是type :)

 Swal.fire({
            icon: 'success',
            title:  response.data.body.Data[0].status_text,
            timer: 3500
 });