14 lines
366 B
JavaScript
14 lines
366 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({
|
|
page: 1,
|
|
bill_status: ["PendingPayment", "Overdue"]
|
|
})
|
|
};
|
|
exports.useModel = useModel;
|