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

85 lines
2.9 KiB

  1. <!-- 标定(体积) -->
  2. <template>
  3. <StepFormPackage :fieldItemLabel = "fieldItemLabel" ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'ry_bdtj'" @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. ddsys:{
  22. type:"input",
  23. fillType:"preFill",
  24. },
  25. yq:{
  26. type:"yq",
  27. fillType:"actFill",
  28. },
  29. text2:{
  30. label:"仪器,使用标定物",
  31. type:"text",
  32. },
  33. rm:{
  34. type:"input",
  35. fillType:"preFill",
  36. },
  37. sj:{
  38. type:"reagent",
  39. fillType:"actFill",
  40. },
  41. text3:{
  42. label:",预计标定体积为",
  43. type:"text",
  44. },
  45. bdtj:{
  46. type:"inputNumber",
  47. fillType:"preFill",
  48. },
  49. bdtjdw:{
  50. type:"select",
  51. options:this.getDictOptions("business_tjdw"),
  52. selectTo:"sjbdtjdw",
  53. fillType:"preFill",
  54. },
  55. text4:{
  56. label:",实际体积为",
  57. type:"text",
  58. },
  59. sjbdtj:{
  60. type:"inputNumber",
  61. fillType:"actFill",
  62. compareTo:"bdtj",
  63. copyFrom:"bdtj"
  64. },
  65. sjbdtjdw:{
  66. type:"select",
  67. options:this.getDictOptions("business_tjdw"),
  68. fillType:"preFill",
  69. },
  70. hx:{
  71. type:"input",
  72. fillType:"preFill",
  73. },
  74. }
  75. }]
  76. }
  77. },
  78. }
  79. </script>
  80. <style lang="scss" scoped>
  81. </style>