摘要: function price(a){ var num = Number(a); if(!num){//等于0 return num+'.00'; }else{//不等于0 num = Math.round((num)*100)/10000; num = num.toFixed(2); num+='' 阅读全文
posted @ 2020-03-04 18:10 自律·给我自由 阅读(2162) 评论(0) 推荐(0) 编辑
摘要: 1.使用数组方法splice this.arr = [{item1},{item2},{item3},{item4}] item1.a= 0 this.arr.splice(0, 1, item1) 注意: 由于 JavaScript 的限制,Vue 不能检测以下变动的数组: 1.当你利用索引直接设 阅读全文
posted @ 2020-03-04 11:50 自律·给我自由 阅读(6281) 评论(0) 推荐(0) 编辑