12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- // 种羊来源 类型
- const seedSheedSource = [
- { label: "本场出生", value: 1 },
- { label: "它场转入", value: 2 }
- ]
- // 种羊等级
- const seedSheedLevel = [
- { label: "甲", value: 1 },
- { label: "乙", value: 2 },
- { label: "丙", value: 3 },
- { label: "丁", value: 4 }
- ]
- // 种羊状态
- const seedSheedStatus = [
- { label: "后备", value: 1 },
- { label: "采精", value: 2 },
- { label: "查情", value: 3 },
- { label: "配种", value: 4 },
- { label: "妊检", value: 5 },
- { label: "分娩", value: 6 },
- { label: "断奶", value: 7 },
- { label: "淘汰", value: 8 }
- ]
- // 精液色泽
- const seedColor = [
- { label: "正常", value: 1 },
- { label: "异常", value: 0 }
- ]
- // 精液密度
- const seedDensity = [
- { label: "密", value: 1 },
- { label: "中", value: 2 },
- { label: "稀", value: 3 }
- ]
- // 怀孕状态
- const fetationStatus = [
- { label: "正常", value: 1 },
- { label: "空怀", value: 2 },
- { label: "流产", value: 3 },
- { label: "死胎", value: 4 }
- ]
- // 发情状态
- const estrusStatus = [
- { label: "未发情", value: 0 },
- { label: "发情", value: 1 }
- ]
- // 免疫类型
- const vaccineStyle = [
- { label: "普免", value: 1 },
- { label: "防疫", value: 2 }
- ]
- // 羊类型
- const sheepType = [
- { label: "商品羊", value: 4 },
- { label: "种母羊", value: 2 },
- { label: "种公羊", value: 1 }
- ]
- /* workerList 员工列表 动态获取了 在home.vue中获取了 */
- /* areaList 栋舍信息 动态获取了 在home.vue中获取了 */
- export default { seedSheedSource, seedSheedLevel, seedSheedStatus, seedColor, seedDensity, fetationStatus, estrusStatus, vaccineStyle, sheepType }
|