摘要: npm i decimal.js import { Decimal } from 'decimal.js';//引入 let num1 = 351921.8; let num2 = 354231.9; let endNum:number // 加法 endNum:number = new Decim 阅读全文
posted @ 2021-12-24 11:28 赵永强 阅读(4121) 评论(0) 推荐(0) 编辑
摘要: 如图修改vite.config.ts/js 文件 把base 改为 './' 阅读全文
posted @ 2021-12-15 09:46 赵永强 阅读(5979) 评论(0) 推荐(0) 编辑
摘要: 打开manifest.json的源码视图 "app-plus" -> "distribute" -> "splashscreen" 节点里新增 "androidTranslucent": true 可以解决此问题,云打包后生效 阅读全文
posted @ 2021-11-05 08:59 赵永强 阅读(538) 评论(0) 推荐(0) 编辑
摘要: <keep-alive include="Home"> //include等于组件名 如需缓存多个组件,:include="['News','Home']" <router-view /> </keep-alive> 缓存路由组件,让不显示的组件保持挂载,不被销毁 路由组件独特的生命周期函数 act 阅读全文
posted @ 2021-11-01 22:08 赵永强 阅读(67) 评论(0) 推荐(0) 编辑
摘要: uni-app npm update 更新项目后报错 throw err:Cannot find module '@dcloudio/uni-cli-i18n'; 解决方法:npm i @dcloudio/uni-cli-i18n 阅读全文
posted @ 2021-11-01 09:45 赵永强 阅读(513) 评论(0) 推荐(1) 编辑
摘要: 很多联想电脑自带的联想模拟器,所以不需要再去下载其他安卓模拟器,联想模拟器端口为11509,配置好端口就可以调试uniapp项目了 阅读全文
posted @ 2021-11-01 09:33 赵永强 阅读(910) 评论(0) 推荐(0) 编辑
摘要: 解决方法如下,点击设置,搜索vetur 然后把Validate js/ts in <script>这一项的✔号去掉 阅读全文
posted @ 2021-10-15 17:18 赵永强 阅读(11794) 评论(0) 推荐(2) 编辑
摘要: 第一步:新建文件夹service 第二步:新建文件request.ts export class req { /* 服务器接口地址 */ baseURL:string = 'https://xxxx' /* 本地调试接口地址 */ // baseURL:string='http://192.168. 阅读全文
posted @ 2021-10-15 15:32 赵永强 阅读(561) 评论(0) 推荐(0) 编辑
摘要: ... 扩展运算符能将数组转换为逗号分隔的参数序列 常用方式 数组的合并 const book1 = ['西游记','水浒传'] const book2 = ['三国演义','红楼梦'] //es5写法 const sidabook = book1.concat(book2) console.log 阅读全文
posted @ 2021-10-14 22:15 赵永强 阅读(120) 评论(0) 推荐(0) 编辑
摘要: function fn(...args){ console.log(...args) //输出[1,2,3] fn(1,2,3) rest参数要放在最后,输出都是数组 function fn(a,b,...args){ console.log(a) //输出 1 console.log(b) //输 阅读全文
posted @ 2021-10-14 21:58 赵永强 阅读(236) 评论(0) 推荐(0) 编辑