华西海圻ELN前端工程
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
3.3 KiB

  1. <!-- 静置 -->
  2. <template>
  3. <StepFormPackage ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'jz_spyjzzb'" @resetRecord = "resetRecord" :form-config="formConfig" :formData = "formData" />
  4. </template>
  5. <script>
  6. import StepFormPackage from '@/components/Template/StepFormPackage.vue';
  7. import stepMixins from '@/components/Template/mixins/stepMixins.js';
  8. export default {
  9. mixins: [stepMixins],
  10. props: {
  11. sn: {
  12. type: String,
  13. default: 'jz_spyjzzb',
  14. },
  15. },
  16. components: {
  17. StepFormPackage
  18. },
  19. computed: {
  20. formConfig() {
  21. let config = [{
  22. config:{
  23. text1:{
  24. label:"将上述溶液预计放置于",
  25. type:"text",
  26. },
  27. yjwd:{
  28. type:"select",
  29. options: this.getDictOptions("business_wddw"),
  30. fillType:"preFill",
  31. otherCode:"yjwdOther"
  32. },
  33. text2:{
  34. label:"实际放置于",
  35. type:"text",
  36. },
  37. sjwd:{
  38. type:"select",
  39. options: this.getDictOptions("business_wddw"),
  40. fillType:"actFill",
  41. otherCode:"sjwdOther",
  42. compareTo: "yjwd",
  43. },
  44. text3:{
  45. label:",条件下静置,静置",
  46. type:"text",
  47. },
  48. jzsj:{
  49. type:"input",
  50. fillType:"preFill",
  51. },
  52. text4:{
  53. type:"text",
  54. label:"静置",
  55. },
  56. startDate: {
  57. type: "input",
  58. fillType: "actFill",
  59. disabled: true,
  60. },
  61. button1:{
  62. type:"button",
  63. buttonName:"开始",
  64. },
  65. text5:{
  66. type:"text",
  67. label:",静置",
  68. },
  69. endDate: {
  70. type: "input",
  71. fillType: "actFill",
  72. disabled: true,
  73. },
  74. button2:{
  75. type:"button",
  76. buttonName:"结束",
  77. },
  78. text6: {
  79. type: "text",
  80. label: "。",
  81. },
  82. bz:{
  83. type: "input",
  84. fillType: "actFill",
  85. },
  86. }
  87. }]
  88. return config
  89. }
  90. },
  91. }
  92. </script>
  93. <style lang="scss" scoped>
  94. </style>