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

39 lines
966 B

  1. <!-- 结束 -->
  2. <template>
  3. <StepFormPackage :fieldItemLabel = "fieldItemLabel" ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'jcb_js_jcb'" @resetRecord = "resetRecord" :form-config="formConfig" :formData="localFormData" />
  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: 'js_jcb',
  14. },
  15. },
  16. components: {
  17. StepFormPackage
  18. },
  19. mounted() {
  20. this.commonHandleJcbUpdate();
  21. },
  22. computed: {
  23. formConfig() {
  24. let config = [{
  25. config: {
  26. jcb:{
  27. type:"dcjcb",
  28. buttonName:"结束"
  29. }
  30. }
  31. }]
  32. return config
  33. }
  34. },
  35. }
  36. </script>
  37. <style lang="scss" scoped></style>