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

69 lines
2.3 KiB

  1. <!-- 标定(质量) -->
  2. <template>
  3. <StepFormPackage ref = "stepFormPackageRef" prefixKey="ry_bdzl" @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. yq:{
  22. type:"yq",
  23. fillType:"actFill",
  24. },
  25. text2:{
  26. label:"仪器,称取水,其预计标定质量为",
  27. type:"text",
  28. },
  29. rm:{
  30. type:"inputNumber",
  31. fillType:"preFill",
  32. },
  33. bdtjdw:{
  34. type:"select",
  35. options:this.getDictOptions("business_zldw"),
  36. selectTo:"sjbdtjdw",
  37. fillType:"preFill",
  38. },
  39. text4:{
  40. label:",实际质量为",
  41. type:"text",
  42. },
  43. sjbdtj:{
  44. type:"inputNumber",
  45. fillType:"actFill",
  46. compareTo:"rm",
  47. copyFrom:"rm"
  48. },
  49. button1:{
  50. type:"button",
  51. buttonName:"获取值",
  52. },
  53. text5:{
  54. label:",划线。",
  55. type:"text",
  56. },
  57. }
  58. }]
  59. }
  60. },
  61. }
  62. </script>
  63. <style lang="scss" scoped>
  64. </style>