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

116 lines
4.0 KiB

  1. <!-- 研磨 -->
  2. <template>
  3. <StepFormPackage ref = "stepFormPackageRef" @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. components: {
  11. StepFormPackage
  12. },
  13. computed: {
  14. formConfig() {
  15. return [{
  16. config:{
  17. text1:{
  18. label:"使用",
  19. type:"text",
  20. },
  21. ymj:{
  22. type:"input",
  23. fillType:"preFill",
  24. },
  25. text2:{
  26. label:"同时使用",
  27. type:"text",
  28. },
  29. ymj2:{
  30. type:"input",
  31. fillType:"preFill",
  32. },
  33. yq:{
  34. type:"instrument",
  35. fillType:"actFill",
  36. },
  37. text3:{
  38. label:"仪器,吸取",
  39. type:"text",
  40. },
  41. ry1:{
  42. type:"input",
  43. fillType:"preFill",
  44. },
  45. sj:{
  46. type:"regent",
  47. fillType:"actFill",
  48. },
  49. text4:{
  50. label:"溶媒,加入预计体积为",
  51. type:"text",
  52. },
  53. ry2:{
  54. type:"input",
  55. fillType:"preFill",
  56. },
  57. rytj:{
  58. type:"select",
  59. options: this.getDictOptions("business_tjdw"),
  60. selectTo: "sjrytjdw",
  61. fillType: "preFill",
  62. },
  63. text5:{
  64. label:",实际体积为",
  65. type:"text",
  66. },
  67. ry3:{
  68. type:"input",
  69. fillType:"actFill",
  70. compareTo:"ry2",
  71. copyFrom:"ry2"
  72. },
  73. sjrytjdw:{
  74. type:"select",
  75. options: this.getDictOptions("business_tjdw"),
  76. fillType: "preFill",
  77. },
  78. text6:{
  79. label:"至研钵中,研磨至",
  80. type:"text",
  81. },
  82. klzt:{
  83. type:"input",
  84. fillType:"preFill",
  85. },
  86. text7:{
  87. label:"。研磨",
  88. type:"text",
  89. },
  90. button1:{
  91. type:"button",
  92. buttonName:"开始"
  93. },
  94. text8:{
  95. label:"研磨",
  96. type:"text",
  97. },
  98. button2:{
  99. type:"button",
  100. buttonName:"结束"
  101. },
  102. text9:{
  103. label:"。",
  104. type:"text",
  105. }
  106. }
  107. }]
  108. }
  109. },
  110. }
  111. </script>
  112. <style lang="scss" scoped>
  113. </style>