uni.$co.Fun
QQ2052021114 方法uni.$co
全局方法 uni.$co.Fun
是resource目录下的 Fun
文件。
最常用的方法为 uni.$co.Fun.toPage
跳转页面,uni.$co.Fun.showToast
提示弹窗。
目前方法有:
方法名称 | 参数 | 说明 |
---|---|---|
shareAppMessage | Object | 公用页面分享 |
showLoading | title | loading |
hideLoading | - | 隐藏loading |
showToast | (title, Object) | 消息提示框 |
showModal | Object | 显示模态对话框 |
back | (num = 1) | 返回上一页,或者num |
toPage | (page, params) | 页面跳转 |
previewImage | ($allImgAttr, $index) | 图片预览 |
二开可以根据实际场景添加相应的方法。
# toPage
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
page | config.pages声明的页面名称name, 或者完整路径 | String | - |
params | 页面的参数 | Object | 其中参数pageType是跳转类型(navigateTo,redirectTo,reLaunch,switchTab) |
例如:关闭当前页面跳转到商品详情
uni.$co.Fun.toPage('goodsDetail', {pageType: 'redirectTo', id: 1})
同时也可以使用uni-read-pages (opens new window) 的路由方法。都是前提需要先安装 uni-read-pages
, uPlus (opens new window) 必须要安装uni-read-pages
。
# previewImage
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
allImgAttr | 预览图片的数组 | Array | - |
index | 当前预览的索引 | Number | - |
# showModal
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
title | 标题 | String | - |
showCancel | 是否显示取消按钮 | Boolean | false |
cancelColor | 取消按钮的颜色 | String | #000 |
cancelText | 取消按钮的文本 | String | 取消 |
confirmColor | 确认按钮的颜色 | String | #3cc51f |
confirmText | 确认按钮的文本 | String | 确定 |
content | 内容 | String | - |
confirm | 确认方法回调 | Funtion | - |
cancel | 取消方法回调 | Funtion | - |
如果有哪些方法不知道怎么使用的,就去看看相应方法的源码,就知道怎么使用了。