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

23 lines
757 B

  1. export default {
  2. dicts:["business_tjdw","business_czhj","business_rqcz","business_zldw","business_yqscdw","business_zsdw","business_wddw","business_ccwz","business_ggdw"],
  3. props: {
  4. formData: {
  5. type: Object,
  6. default: () => ({})
  7. }
  8. },
  9. methods: {
  10. async getFormData() {
  11. return await this.$refs.stepFormPackageRef.getFormData();
  12. },
  13. getFilledFormData() {
  14. return this.$refs.stepFormPackageRef?.getFilledFormData();
  15. },
  16. //试验配制条件options
  17. getDictOptions(dictType) {
  18. return this.dict.type[dictType] || []
  19. },
  20. resetRecord() {
  21. this.$refs.stepFormPackageRef.resetRecord();
  22. }
  23. },
  24. }