project init

This commit is contained in:
2023-01-28 14:37:45 +08:00
parent fa1176f658
commit 3a134326e7
83 changed files with 1482 additions and 140 deletions

View File

@@ -0,0 +1,19 @@
Page({
data: {
cashAccountList : [
{"name":"现金","money":"2000.00"},
{"name":"银行卡","money":"30500.03"}
],
oweAccountList : [
{"name":"信用卡","money":"-200.00"},
],
},
onLoad: function (options) {
},
handleClick() {
wx.navigateTo({
url : "../edit/index?isAccount=1&isIncome=0&isAdd=1"
})
}
});