dashboard
repositories
filestore
activity
search
login
main
/
Inspection-uniapp
巡检系统app
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
巡检任务跳转到上报事件时传递任务id,事件上报添加标题
guoshilong
2022-10-10
1cf2b3a08559db63d94c0fdc4e9520e13da76610
[Inspection-uniapp.git]
/
uview-ui
/
libs
/
function
/
toast.js
1
2
3
4
5
6
7
8
9
function toast(title, duration = 1500) {
uni.showToast({
title: title,
icon: 'none',
duration: duration
})
}
export default toast