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

78 lines
2.5 KiB

  1. <!-- 转移分层 -->
  2. <template>
  3. <StepFormPackage ref="stepFormPackageRef" prefixKey="swypfx_zyfc" @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. ytyq: {
  22. fillType: "preFill",
  23. type: "input",
  24. },
  25. sjrqcz: {
  26. fillType: "actFill",
  27. type: "yq",
  28. },
  29. text2: {
  30. label: "转移",
  31. type: "text",
  32. },
  33. shang:{
  34. fillType: "preFill",
  35. type: "input",
  36. },
  37. text3: {
  38. label: "层清液,预计转移",
  39. type: "text",
  40. },
  41. ytsr1:{
  42. fillType: "preFill",
  43. type: "inputNumber",
  44. },
  45. tjxz:{
  46. fillType: "preFill",
  47. type: "select",
  48. selectTo: "sjsrdw2",
  49. options:this.getDictOptions('business_tjdw'),
  50. },
  51. text4:{
  52. label: ",实际转移",
  53. type: "text",
  54. },
  55. sjsr2:{
  56. fillType: "actFill",
  57. type: "inputNumber",
  58. compareTo:"ytsr1",
  59. copyFrom:"ytsr1"
  60. },
  61. sjsrdw2:{
  62. fillType: "preFill",
  63. type: "select",
  64. options: this.getDictOptions('business_tjdw'),
  65. },
  66. text5:{
  67. label: "至容器中。",
  68. type: "text",
  69. }
  70. }
  71. }]
  72. }
  73. },
  74. }
  75. </script>
  76. <style lang="scss" scoped></style>