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

43 lines
1.3 KiB

  1. <!-- 选择容器 -->
  2. <template>
  3. <StepFormPackage ref="stepFormPackageRef" @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. ytrqcz: {
  22. fillType: "preFill",
  23. type: "select",
  24. options: this.getDictOptions('business_rqcz'),
  25. },
  26. sjrqcz: {
  27. fillType: "actFill",
  28. type: "select",
  29. options: this.getDictOptions('business_rqcz'),
  30. },
  31. text2: {
  32. label: "作为容器",
  33. type: "text",
  34. },
  35. }
  36. }]
  37. }
  38. },
  39. }
  40. </script>
  41. <style lang="scss" scoped></style>