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

29
pages/bill/index.js Normal file
View File

@@ -0,0 +1,29 @@
Page({
data: {
showDeleteConfirm: false,
title : "账单名称",
money : "2000"
},
onLoad: function (options) {
},
editBill() {
wx.navigateTo({
url: './edit/index'
})
},
deleteBill() {
this.setData({
showDeleteConfirm: true
})
},
onConfirm (e) {
wx.navigateBack();
this.closeDialog()
},
closeDialog() {
this.setData({
showDeleteConfirm: false
})
}
});