16 lines
393 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 = {
dataList: common_vendor.ref([]),
currentTabs: common_vendor.ref(0),
meta: common_vendor.ref({}),
2025-10-29 13:53:05 +08:00
showEvaluate: common_vendor.ref(false),
evaluateParams: common_vendor.ref({}),
2025-08-29 09:51:02 +08:00
formData: common_vendor.ref({
page: 1,
2025-10-29 13:53:05 +08:00
status: "",
type: "Repair"
2025-08-29 09:51:02 +08:00
})
};
exports.useModel = useModel;