2025-10-29 13:53:05 +08:00

15 lines
371 B
JavaScript

"use strict";
const common_vendor = require("../../../common/vendor.js");
const useModel = {
billsLength: common_vendor.ref(0),
items: common_vendor.ref([]),
currentTabs: common_vendor.ref(0),
total_amount: common_vendor.ref(0),
formData: common_vendor.ref({
year: "2025",
page: 1,
bill_status: "PendingPayment"
})
};
exports.useModel = useModel;