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

53 lines
1.5 KiB

  1. <!-- 颠倒混匀 -->
  2. <template>
  3. <StepFormPackage :fieldItemLabel = "fieldItemLabel" ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'pcr_ddhy_pcr'" @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: 'ddhy_pcr',
  14. },
  15. },
  16. components: {
  17. StepFormPackage
  18. },
  19. computed: {
  20. formConfig() {
  21. return [{
  22. config: {
  23. text1: {
  24. label: "将样品进行上下颠倒,预计颠倒",
  25. type: "text",
  26. },
  27. yjdd: {
  28. fillType: "preFill",
  29. type: "inputNumber",
  30. },
  31. text2: {
  32. label: "次,实际颠倒",
  33. type: "text",
  34. },
  35. sjdd: {
  36. fillType: "actFill",
  37. type: "inputNumber",
  38. compareTo:"yjdd",
  39. copyFrom:"yjdd"
  40. },
  41. text3: {
  42. label: "次。",
  43. type: "text",
  44. },
  45. }
  46. }]
  47. }
  48. },
  49. }
  50. </script>
  51. <style lang="scss" scoped></style>