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

84 lines
2.6 KiB

  1. <!-- 加入样品 -->
  2. <template>
  3. <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'pcrfxyp_jryp_pcrfxyp'" @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: 'jryp_pcrfxyp',
  14. },
  15. },
  16. components: {
  17. StepFormPackage
  18. },
  19. computed: {
  20. formConfig() {
  21. return [{
  22. config: {
  23. text1: {
  24. label: "使用",
  25. type: "text",
  26. },
  27. ytrq: {
  28. fillType: "preFill",
  29. type: "input",
  30. },
  31. sjrqcz: {
  32. fillType: "actFill",
  33. type: "yq",
  34. },
  35. text2: {
  36. label: "仪器,将",
  37. type: "text",
  38. },
  39. srry: {
  40. fillType: "preFill",
  41. type: "input",
  42. },
  43. text3:{
  44. label: "按照样品排列示意图加入对应的96孔板种,每孔预计加入",
  45. type: "text",
  46. },
  47. ytsr1:{
  48. fillType: "preFill",
  49. type: "inputNumber",
  50. },
  51. tjxz:{
  52. fillType: "preFill",
  53. type: "select",
  54. selectTo: "sjsrdw2",
  55. options:this.getDictOptions('business_tjdw'),
  56. },
  57. text4:{
  58. label: "每孔实际加入",
  59. type: "text",
  60. },
  61. sjsr2:{
  62. fillType: "actFill",
  63. type: "inputNumber",
  64. compareTo:"ytsr1",
  65. copyFrom:"ytsr1"
  66. },
  67. sjsrdw2:{
  68. fillType: "preFill",
  69. type: "select",
  70. options: this.getDictOptions('business_tjdw'),
  71. },
  72. text5:{
  73. label: "。",
  74. type: "text",
  75. },
  76. }
  77. }]
  78. }
  79. },
  80. }
  81. </script>
  82. <style lang="scss" scoped></style>