options.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. export const test = [
  2. {
  3. text: 'ccc',
  4. value: 1,
  5. },
  6. {
  7. text: 'ddd',
  8. value: 2,
  9. },
  10. ]
  11. /**
  12. * 01:入仓验收;02:出仓检验;03:3 月末普检;04:9 月末普检;05:入仓初检;06:月度检查;07:3 月末库内普查;08:9 月末库内普查;09:定检
  13. */
  14. export const OPT1 = [
  15. {
  16. text: '入仓验收',
  17. value: '01',
  18. },
  19. {
  20. text: '出仓检验',
  21. value: '02',
  22. },
  23. {
  24. text: '3 月末普检',
  25. value: '03',
  26. },
  27. {
  28. text: '9 月末普检',
  29. value: '04',
  30. },
  31. {
  32. text: '入仓初检',
  33. value: '05',
  34. },
  35. {
  36. text: '月度检查',
  37. value: '06',
  38. },
  39. {
  40. text: '3 月末库内普查',
  41. value: '07',
  42. },
  43. {
  44. text: '9 月末库内普查',
  45. value: '08',
  46. },
  47. {
  48. text: '定检',
  49. value: '09',
  50. },
  51. ]
  52. export const OPT2 = [
  53. {
  54. text: '否',
  55. value: 0,
  56. },
  57. {
  58. text: '是',
  59. value: 1,
  60. },
  61. ]
  62. export const JYYJ = [
  63. { value: '1', text: '国标'},
  64. { value: '0', text: '其他'},
  65. ]
  66. export const OPT3 = [
  67. {
  68. text: '不合格',
  69. value: 0,
  70. },
  71. {
  72. text: '合格',
  73. value: 1,
  74. }
  75. ]
  76. export const OPT4 = [
  77. {
  78. text: '符合',
  79. value: 1,
  80. },
  81. {
  82. text: '不符合',
  83. value: 0,
  84. }
  85. ]
  86. export const OPT5 = [
  87. {
  88. text: '省级',
  89. value: 1,
  90. },
  91. {
  92. text: '市级',
  93. value: 2,
  94. },
  95. {
  96. text: '县级',
  97. value: 3,
  98. },
  99. ]