bottomForm.vue 980 B

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