docking-vue/src/assets/js/constant.js

12 lines
238 B
JavaScript
Raw Normal View History

2025-06-10 09:31:15 +08:00
// 将常用的值储存成常量,防止重复使用写错
2025-06-27 14:01:42 +08:00
export const WHETHER_LIST = [
2025-07-21 11:32:02 +08:00
{ id: 0, name: "否" },
{ id: 1, name: "是" },
];
export const STATUS_LIST = [
{ name: "正常", id: 1 },
{ name: "关停", id: 2 },
2025-06-10 09:31:15 +08:00
];