Commit 87e43860 by wangshuo

ios不显示按钮

parent acad799b
import React, { Component } from 'react' import React, { Component } from 'react'
import './index.scss' import './index.scss'
import { Tabs, Toast } from "antd-mobile" import { Tabs, Toast } from "antd-mobile"
import { getParam, http, SendMessageToApp } from "@/utils" import { getParam, http, SendMessageToApp, browser } from "@/utils"
import { Popup } from "@common/index" import { Popup } from "@common/index"
import QRCode from 'qrcode' import QRCode from 'qrcode'
import { uniqBy } from 'lodash' import { uniqBy } from 'lodash'
...@@ -115,7 +115,14 @@ class Live extends Component { ...@@ -115,7 +115,14 @@ class Live extends Component {
content: ( content: (
<> <>
<img id={'live-qr-code'} src={url} alt=""/> <img id={'live-qr-code'} src={url} alt=""/>
<button className={'save-image'} onClick={this.saveImage}>保存二维码</button> {
browser.isAndroidApp ? (
<button className={'save-image'} onClick={this.saveImage}>保存二维码</button>
) : (
null
)
}
</> </>
) )
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment