微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

微信小程序 实例应用记账详解

微信小程序-记账小应用

github地址:

rush:js;"> var util = require("../../utils/util.js"); //获取应用实例 var app = getApp(); Page({ data: { userInfo: {},buttonLoading: false,accountData:[],accountTotal:0 },onLoad: function () { console.log('onLoad') var that = this;

// 获取记录
var tempAccountData = wx.getStorageSync("accountData") || [];
this.caculatetotal(tempAccountData);
this.setData({
accountData: tempAccountData
});

},// 计算总额
caculatetotal:function(data){
var tempTotal = 0;
for(var x in data){
tempTotal += parseFloat(data[x].amount);
}
this.setData({
accountTotal: tempTotal
});
},//表单提交
formSubmit:function(e){
this.setData({
buttonLoading: true
});

var that = this;
setTimeout(function(){
var inDetail = e.detail.value.inputdetail;
var inAmount = e.detail.value.inputamount;
if(inDetail.toString().length <= 0 || inAmount.toString().length <= 0){
console.log("can not empty");
that.setData({
buttonLoading: false
});
return false;
}

 //新增记录
 var tempAccountData = wx.getStorageSync("accountData") || [];
 tempAccountData.unshift({detail:inDetail,amount:inAmount});
 wx.setStorageSync("accountData",tempAccountData);
 that.ca<a href="https://www.jb51.cc/tag/cula/" target="_blank" class="keywords">cula</a>t<a href="https://www.jb51.cc/tag/eto/" target="_blank" class="keywords">eto</a>tal(tempAccountData);
 that.setData({
   accountData: tempAccountData,buttonLoading: false
 });

},1000);
},//删除
deleteRow: function(e){
var that = this;
var index = e.target.dataset.indexKey;
var tempAccountData = wx.getStorageSync("accountData") || [];
tempAccountData.splice(index,1);
wx.setStorageSync("accountData",tempAccountData);
that.caculatetotal(tempAccountData);
that.setData({
accountData: tempAccountData,});
}
})

通过此文,希望大家对微信小程序了解,并应用,谢谢大家对本站的支持

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。