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

73 lines
2.4 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. sjsr:{
  22. type:"input",
  23. fillType:"preFill",
  24. },
  25. sj:{
  26. type:"regent",
  27. fillType:"actFill",
  28. },
  29. text2:{
  30. label:"放置于",
  31. type:"text",
  32. },
  33. wd:{
  34. type:"select",
  35. options: this.getDictOptions("business_wddw"),
  36. fillType:"actFill",
  37. otherCode:"wdOther"
  38. },
  39. text3:{
  40. label:",条件下静置,静置",
  41. type:"text",
  42. },
  43. jzsj:{
  44. type:"input",
  45. fillType:"preFill",
  46. },
  47. text4:{
  48. type:"text",
  49. label:"静置",
  50. },
  51. button1:{
  52. type:"button",
  53. buttonName:"开始",
  54. },
  55. text5:{
  56. type:"text",
  57. label:",静置",
  58. },
  59. button2:{
  60. type:"button",
  61. buttonName:"结束",
  62. },
  63. }
  64. }]
  65. }
  66. },
  67. }
  68. </script>
  69. <style lang="scss" scoped>
  70. </style>