123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /**
- * Created by JianJia.Zhou<jianjia.zhou> on 2022/5/26.
- */
- export function copyText(text, tips) {
- uni.setClipboardData({
- data: text,
- success: function() {
- uni.hideLoading()
- uni.showToast({
- title: tips || '复制成功',
- icon: 'none'
- })
- }
- })
- }
- export function checkOS() {
- if (uni.getSystemInfoSync().platform === 'ios') {
- uni.showModal({
- title: '提示',
- content: '由于相关规范,iOS功能暂不可用',
- showCancel: false,
- success: function(res) {
- // res.confirm res.cancel
- }
- })
- return false
- }
- return true
- }
- const shareMessage = user => {
- return {
- path: '/pages/index/index',
- params: {
- user_id: user.id
- },
- title: '张四爷剧场',
- desc: '张四爷剧场'
- // imageUrl: ''
- }
- }
- export default {
- copyText,
- checkOS,
- shareMessage
- }
|