1234567891011121314151617181920212223 |
- const dictionary = {
- observationPurpose: {
- 1: "航线监视",
- 2: "密集观测",
- 3: "区域普查",
- 4: "持续跟踪",
- 5: "应急详查"
- },
- taskStatus: {
- 0: "未提交",
- 1: "已提交"
- },
- targetType: {
- 0: "点目标",
- 1: "移动目标",
- 2: "区域目标",
- 3: "线目标",
- 4: "点群目标",
- "-1": "未知"
- }
- }
- export default dictionary;
|