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

67 lines
2.2 KiB

  1. <!-- 暂存 -->
  2. <template>
  3. <StepFormPackage ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'zzqx_zc'" @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. props: {
  11. sn: {
  12. type: String,
  13. default: 'zc',
  14. },
  15. },
  16. components: {
  17. StepFormPackage
  18. },
  19. computed: {
  20. formConfig() {
  21. let config = [{
  22. config:{
  23. text1:{
  24. label:"预计在",
  25. type:"text",
  26. },
  27. yjzc:{
  28. type:"select",
  29. options:this.getDictOptions("business_zzzc"),
  30. fillType:"preFill",
  31. otherCode: "yjzcOther",
  32. },
  33. text3:{
  34. label:"条件下暂存,实际在",
  35. type:"text",
  36. },
  37. sjzc:{
  38. type:"select",
  39. options:this.getDictOptions("business_zzzc"),
  40. fillType:"actFill",
  41. otherCode: "sjzcOther",
  42. compareTo: "yjzc",
  43. },
  44. text3:{
  45. label:"条件下暂存,暂存至放入",
  46. type:"text",
  47. },
  48. yq:{
  49. type:"input",
  50. fillType:"preFill",
  51. },
  52. text4:{
  53. label:"。",
  54. type:"text",
  55. },
  56. }
  57. }]
  58. return config
  59. }
  60. },
  61. }
  62. </script>
  63. <style lang="scss" scoped>
  64. </style>