stepMixin.vue 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <div class=""></div>
  3. </template>
  4. <script>
  5. /* 仅用于本目录3个step表单组件的共享逻辑 */
  6. export default {
  7. name: 'StepMixin',
  8. components: {},
  9. props: {
  10. loading: { type: Boolean, default: false },
  11. priceData: {
  12. type: Object,
  13. default: function () {
  14. return { priceList: [], attributeList: {}, additionList: {} }
  15. },
  16. },
  17. detail: {
  18. type: Object,
  19. default: function () {
  20. return { info: { images: [] } }
  21. },
  22. },
  23. preData: {
  24. type: Object,
  25. default: function () {
  26. return {}
  27. },
  28. },
  29. },
  30. data() {
  31. return {}
  32. },
  33. computed: {},
  34. watch: {
  35. form: {
  36. deep: true,
  37. handler: function () {
  38. if (this.loaded) {
  39. this.$_emitFormData()
  40. }
  41. },
  42. },
  43. },
  44. mounted() {},
  45. methods: {
  46. // 将this.form 自动传递给父组件
  47. $_emitFormData() {
  48. this.$emit('update-form', JSON.parse(JSON.stringify(this.form)))
  49. },
  50. },
  51. }
  52. </script>
  53. <style lang="scss" scoped></style>