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

63 lines
2.0 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. ddsys: {
  22. type: "input",
  23. fillType: "preFill",
  24. },
  25. yq: {
  26. type: "instrument",
  27. fillType: "actFill",
  28. },
  29. text2: {
  30. label: "环境下,操作下预计在",
  31. type: "text",
  32. },
  33. ytczhj: {
  34. fillType: "preFill",
  35. type: "select",
  36. options: this.getDictOptions('business_czhj'),
  37. otherCode: "ytczhjOther"
  38. },
  39. text3: {
  40. label: "实际在",
  41. type: "text",
  42. },
  43. sjczhj: {
  44. fillType: "actFill",
  45. type: "select",
  46. options: this.getDictOptions('business_czhj'),
  47. otherCode: "sjczhjOther",
  48. compareTo:"ytczhj",
  49. copyFrom:"ytczhj"
  50. },
  51. text4: {
  52. label: "条件下操作下述步骤。",
  53. type: "text",
  54. },
  55. }
  56. }]
  57. }
  58. },
  59. }
  60. </script>
  61. <style lang="scss" scoped></style>