14 lines
366 B
JavaScript
Raw Permalink Normal View History

2025-08-29 09:51:02 +08:00
"use strict";
const common_vendor = require("../../../common/vendor.js");
const useModel = {
2025-12-15 18:19:04 +08:00
billsLength: common_vendor.ref(0),
2025-08-29 09:51:02 +08:00
items: common_vendor.ref([]),
currentTabs: common_vendor.ref(0),
total_amount: common_vendor.ref(0),
formData: common_vendor.ref({
page: 1,
2026-01-30 09:54:26 +08:00
bill_status: ["PendingPayment", "Overdue"]
2025-08-29 09:51:02 +08:00
})
};
exports.useModel = useModel;