Files
quinn-accounts/pages/bill/edit/index.js
2023-02-07 20:19:02 +08:00

12 lines
217 B
JavaScript

Page({
data: {
sid: null,
billType: null
},
onLoad: function (options) {
let sid = options.id
let billType = options.billType
this.setData({sid,billType})
}
});