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

42 lines
1.2 KiB

  1. <!-- 称量 -->
  2. <template>
  3. <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'b_cl'" @resetRecord="resetRecord" :form-config="formConfig"
  4. :formData="formData" />
  5. </template>
  6. <script>
  7. import StepFormPackage from '@/components/Template/StepFormPackage.vue';
  8. import stepMixins from '@/components/Template/mixins/stepMixins.js';
  9. export default {
  10. mixins: [stepMixins],
  11. components: {
  12. StepFormPackage
  13. },
  14. computed: {
  15. formConfig() {
  16. return [{
  17. config: {
  18. text1: {
  19. label: "使用电子天平",
  20. type: "text",
  21. },
  22. yq: {
  23. type: "yq",
  24. fillType: "actFill",
  25. },
  26. text2: {
  27. label: "仪器,按上表进行称量。",
  28. type: "text",
  29. },
  30. remark: {
  31. type: "input",
  32. fillType: "actFill",
  33. },
  34. }
  35. }]
  36. }
  37. },
  38. }
  39. </script>
  40. <style lang="scss" scoped></style>