8 lines
369 B
JavaScript
Raw Normal View History

2025-07-15 16:18:34 +08:00
"use strict";
2025-07-15 18:34:34 +08:00
const HouseRegistersIdentityTypeEnum = {
2025-07-15 16:18:34 +08:00
"Owner": { "text": "产权人", "color": "#2db7f5", "value": "Owner" },
2025-07-15 18:34:34 +08:00
"Tenant": { "text": "租客", "color": "#87d068", "value": "Tenant" },
"CoResident": { "text": "同住人(亲属)", "color": "#108ee9", "value": "CoResident" }
2025-07-15 16:18:34 +08:00
};
2025-07-15 18:34:34 +08:00
exports.HouseRegistersIdentityTypeEnum = HouseRegistersIdentityTypeEnum;