| 12345678910111213141516171819202122232425262728293031323334 |
- // 打卡任务常量
- /**
- * 选项
- */
- export const statusRange = [
- {
- "value": 1,
- "text": "启用"
- },
- {
- "value": 0,
- "text": "关闭"
- }
- ];
- /**
- * 打卡类型
- */
- export const categoryRange = [
- { value: 0, text: "单次打卡" },
- { value: 1, text: "计数" },
- { value: 2, text: "计时" },
- ];
-
- /**
- * 比较规则
- */
- export const ruleRange = [
- { value: 0, text: "大于等于" },
- { value: 1, text: "小于等于" },
- { value: 2, text: "大于" },
- { value: 3, text: "小于" },
- ];
|