bottomForm.vue 969 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view>
  3. <bottom1 v-if="bottomType == '默认黑色预约报名样式'" :ownertable="ownertable" :ownerid="ownerid" :type="type" :typemx="typemx"
  4. :extrajson="extrajson" />
  5. <bottom2 v-else-if="bottomType == '装修预算'" />
  6. </view>
  7. </template>
  8. <script>
  9. import bottom1 from "./bottomModules/bottom1.vue"
  10. import bottom2 from "./bottomModules/bottom2.vue"
  11. export default {
  12. components: {
  13. bottom1,
  14. bottom2
  15. },
  16. props: {
  17. bottomType: {
  18. type: String,
  19. default: "默认黑色预约报名样式"
  20. },
  21. ownertable: {
  22. type: String
  23. },
  24. ownerid: {
  25. type: [String, Number]
  26. },
  27. type: {
  28. type: String
  29. },
  30. typemx: {
  31. type: String
  32. },
  33. extrajson: {
  34. type: Object
  35. }
  36. },
  37. data() {
  38. return {
  39. }
  40. },
  41. }
  42. </script>
  43. <style></style>