华西海圻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.

90 lines
2.8 KiB

  1. <!-- 复苏 -->
  2. <template>
  3. <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'ry_fs'" @resetRecord="resetRecord" :form-config="formConfig"
  4. :formData="formData" />
  5. </template>
  6. <script>
  7. import StepFormPackage from '@/components/Template/StepFormPackage.vue';
  8. import stepMixins from '@/components/Template/mixins/stepMixins.js';
  9. export default {
  10. mixins: [stepMixins],
  11. components: {
  12. StepFormPackage
  13. },
  14. computed: {
  15. formConfig() {
  16. return [{
  17. config: {
  18. text1: {
  19. label: "使用恒温水浴锅",
  20. type: "text",
  21. },
  22. yq: {
  23. type: "yq",
  24. fillType: "actFill",
  25. },
  26. text2: {
  27. label: ",设置预计温度",
  28. type: "text",
  29. },
  30. yjwd: {
  31. type: "input",
  32. fillType: "preFill",
  33. },
  34. text3: {
  35. label: "°C,实际温度",
  36. type: "text",
  37. },
  38. sjwd: {
  39. type: "input",
  40. fillType: "actFill",
  41. compareTo: "yjwd",
  42. copyFrom: "yjwd",
  43. },
  44. text4: {
  45. label: "°C,进行复苏,复苏",
  46. type: "text",
  47. },
  48. fssj: {
  49. type: "input",
  50. fillType: "preFill",
  51. },
  52. text4: {
  53. label: "复苏",
  54. type: "text",
  55. },
  56. startDate: {
  57. type: "input",
  58. fillType: "actFill",
  59. disabled: true,
  60. },
  61. button1: {
  62. type: "button",
  63. buttonName: "开始",
  64. },
  65. text7: {
  66. label: ",复苏",
  67. type: "text",
  68. },
  69. endDate: {
  70. type: "input",
  71. fillType: "actFill",
  72. disabled: true,
  73. },
  74. button2: {
  75. type: "button",
  76. buttonName: "结束",
  77. },
  78. text9: {
  79. type: "text",
  80. label: "。",
  81. },
  82. }
  83. }]
  84. }
  85. },
  86. }
  87. </script>
  88. <style lang="scss" scoped></style>