dashboard
repositories
filestore
activity
search
login
zhba
/
zhba_app_ys
智慧保安APP验收版本
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
首次提交
shuishen
2021-12-02
56ee0734fc0cbca40f992823a636ec8feebd1f80
[zhba/zhba_app_ys.git]
/
uview-ui
/
libs
/
function
/
randomArray.js
1
2
3
4
5
6
7
// 打乱数组
function randomArray(array = []) {
// 原理是sort排序,Math.random()产生0<= x < 1之间的数,会导致x-0.05大于或者小于0
return array.sort(() => Math.random() - 0.5);
}
export default randomArray