const files = [ 'https://huoran.oss-cn-shenzhen.aliyuncs.com/用户服务协议.docx', // 用户服务协议 'https://huoran.oss-cn-shenzhen.aliyuncs.com/用户隐私协议.docx', // 用户隐私协议 'https://huoran.oss-cn-shenzhen.aliyuncs.com/1709798668435.docx', // 人工智能 'https://huoran.oss-cn-shenzhen.aliyuncs.com/1709798621083.docx', // 大数据 'https://huoran.oss-cn-shenzhen.aliyuncs.com/1709798646462.docx', // 金融科技 ] const exts = { video: 'mp4,3gp,mov,m4v,avi,dat,mkv,flv,vob,rmvb,rm,qlv', audio: 'mp3,aac,ape,flac,wav,wma,amr,mid', img: 'jpg,jpeg,png,gif,svg,psd', doc: 'doc,docx,txt,xls,xlsx,csv,xml,ppt,pptx' } export default { exts, // 路由跳转 to(url) { uni.navigateTo({ url }) }, // 成功提示 sucMsg(title, duration = 1500) { uni.showToast({ title, duration }) }, // 错误提示 errMsg(title, duration = 1500) { uni.showToast({ title, icon: 'none', duration }) }, // 如果非数字,则返回0 handleNaN(val) { return isNaN(val) || val == 0 ? '' : val }, // 小于10,返回0+传入值 preZero(val) { return val < 10 ? '0' + val : val }, //返回格式化时间,传参例如:"yyyy-MM-dd hh:mm:ss" formatDate(date, fmt = 'yyyy-MM-dd hh:mm:ss') { var date = date ? date : new Date() var o = { "M+" : date.getMonth()+1, //月份 "d+" : date.getDate(), //日 "h+" : date.getHours(), //小时 "m+" : date.getMinutes(), //分 "s+" : date.getSeconds(), //秒 "q+" : Math.floor((date.getMonth()+3)/3), //季度 "S" : date.getMilliseconds() //毫秒 } if(/(y+)/.test(fmt)) { fmt=fmt.replace(RegExp.$1, (date.getFullYear()+"").substr(4 - RegExp.$1.length)) } for(var k in o) { if(new RegExp("("+ k +")").test(fmt)){ fmt = fmt.replace(RegExp.$1, (RegExp.$1.length==1) ? (o[k]) : (("00"+ o[k]).substr((""+ o[k]).length))) } } return fmt }, // 预览文档 openFile(id) { uni.showLoading({ title: '加载中', mask: true }) // 下载文件资源到本地 uni.downloadFile({ url: files[id], success: function(res) { console.log(11, res) uni.hideLoading(); uni.showLoading({ title: '正在打开', mask: true }) // 新开页面打开文档,支持格式:doc, xls, ppt, pdf, docx, xlsx, pptx。 uni.openDocument({ filePath: res.tempFilePath, fileType: 'pdf', // 文件类型,指定文件类型打开文件,有效值 doc, xls, ppt, pdf, docx, xlsx, pptx showMenu: true, // 允许出现分享功能 success: res => { uni.hideLoading() }, fail: openError => { uni.hideLoading() } }) }, fail: function(err) { uni.hideLoading() } }) }, // 去掉html标签 removeTag(str) { return str.replace(/(<[^>]+>)|(( )+)/g , '') }, // 传入文件名获取文件后缀 getFileExt(fileName) { return fileName.substring(fileName.lastIndexOf(".") + 1); }, }