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

75 lines
2.2 KiB

  1. <!-- 补足样品 -->
  2. <template>
  3. <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'pcr_bzyp'" @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: 'bzyp',
  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. ytry: {
  40. fillType: "preFill",
  41. type: "input",
  42. },
  43. text3:{
  44. label: "按上表加入对应的",
  45. type: "text",
  46. },
  47. ytsr1:{
  48. fillType: "pre",
  49. type: "input",
  50. },
  51. text4:{
  52. label: "中,若样品不足,则用",
  53. type: "text",
  54. },
  55. srry: {
  56. fillType: "preFill",
  57. type: "input",
  58. },
  59. sjrq:{
  60. fillType: "actFill",
  61. type: "sj",
  62. },
  63. text5:{
  64. label: "溶液按上表进行补足。",
  65. type: "text",
  66. },
  67. }
  68. }]
  69. }
  70. },
  71. }
  72. </script>
  73. <style lang="scss" scoped></style>