摘要: /* 打开文档 * @param fileUrl: 文件地址 * @param filetype: 文件类型 */ openDocument(fileUrl, filetype) { wx.downloadFile({ url: fileUrl, success: res => { const filePath = res.temp... 阅读全文
posted @ 2019-11-09 09:37 顾非白 阅读(4742) 评论(0) 推荐(0) 编辑
摘要: http请求 删除数据 上传 阅读全文
posted @ 2019-11-09 09:33 顾非白 阅读(1912) 评论(0) 推荐(0) 编辑
摘要: 公司业务需要实现电子签名功能,当前我使用的是wepy框架。 html less ts 阅读全文
posted @ 2019-11-09 09:23 顾非白 阅读(3034) 评论(0) 推荐(1) 编辑
摘要: 1、数组按createTime排序 function sortByCreateTime(list: any[]) { return list.sort(function(a, b) { return new Date(a.createTime).getTime() - new Date(b.crea 阅读全文
posted @ 2019-11-09 09:07 顾非白 阅读(593) 评论(0) 推荐(0) 编辑