publicType.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. // 种羊来源 类型
  2. const seedSheedSource = [
  3. { label: "本场出生", value: 1 },
  4. { label: "它场转入", value: 2 }
  5. ]
  6. // 种羊等级
  7. const seedSheedLevel = [
  8. { label: "甲", value: 1 },
  9. { label: "乙", value: 2 },
  10. { label: "丙", value: 3 },
  11. { label: "丁", value: 4 }
  12. ]
  13. // 种羊状态
  14. const seedSheedStatus = [
  15. { label: "后备", value: 1 },
  16. { label: "采精", value: 2 },
  17. { label: "查情", value: 3 },
  18. { label: "配种", value: 4 },
  19. { label: "妊检", value: 5 },
  20. { label: "分娩", value: 6 },
  21. { label: "断奶", value: 7 },
  22. { label: "淘汰", value: 8 }
  23. ]
  24. // 精液色泽
  25. const seedColor = [
  26. { label: "正常", value: 1 },
  27. { label: "异常", value: 0 }
  28. ]
  29. // 精液密度
  30. const seedDensity = [
  31. { label: "密", value: 1 },
  32. { label: "中", value: 2 },
  33. { label: "稀", value: 3 }
  34. ]
  35. // 怀孕状态
  36. const fetationStatus = [
  37. { label: "正常", value: 1 },
  38. { label: "空怀", value: 2 },
  39. { label: "流产", value: 3 },
  40. { label: "死胎", value: 4 }
  41. ]
  42. // 发情状态
  43. const estrusStatus = [
  44. { label: "未发情", value: 0 },
  45. { label: "发情", value: 1 }
  46. ]
  47. // 免疫类型
  48. const vaccineStyle = [
  49. { label: "普免", value: 1 },
  50. { label: "防疫", value: 2 }
  51. ]
  52. // 羊类型
  53. const sheepType = [
  54. { label: "商品羊", value: 4 },
  55. { label: "种母羊", value: 2 },
  56. { label: "种公羊", value: 1 }
  57. ]
  58. /* workerList 员工列表 动态获取了 在home.vue中获取了 */
  59. /* areaList 栋舍信息 动态获取了 在home.vue中获取了 */
  60. export default { seedSheedSource, seedSheedLevel, seedSheedStatus, seedColor, seedDensity, fetationStatus, estrusStatus, vaccineStyle, sheepType }