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

50 lines
1.6 KiB

  1. <!-- 参比荧光选择 -->
  2. <template>
  3. <StepFormPackage :fieldItemLabel = "fieldItemLabel" ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'pcrfxyp_cbygxz'" @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. yj:{
  22. fillType: "preFill",
  23. type: "select",
  24. options:this.getDictOptions('business_step_pcrfxyp'),
  25. otherCode: "yjOther",
  26. },
  27. text2: {
  28. label: "实际选择",
  29. type: "text",
  30. },
  31. sj:{
  32. fillType: "actFill",
  33. type: "select",
  34. options:this.getDictOptions('business_step_pcrfxyp'),
  35. otherCode: "sjOther",
  36. compareTo:'yj'
  37. },
  38. text3: {
  39. label: "。",
  40. type: "text",
  41. },
  42. }
  43. }]
  44. }
  45. },
  46. }
  47. </script>
  48. <style lang="scss" scoped></style>